glob: Fix C++ compilation.
[gnulib.git] / ChangeLog
1 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
2
3         glob: Fix C++ compilation.
4         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
5         C++.
6
7 2010-01-07  Bruno Haible  <bruno@clisp.org>
8
9         Fix indentation of wctype.in.h, broken since 2007-01-06.
10         * lib/wctype.in.h: Fix indentation of preprocessor directives.
11
12 2010-01-07  Bruno Haible  <bruno@clisp.org>
13
14         mbslen: Avoid collision with system function.
15         * lib/string.in.h [MirBSD]: Include <wchar.h>.
16         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
17         * m4/mbslen.m4: New file.
18         * modules/mbslen (Files): Add it.
19         (configure.ac): Invoke gl_MBSLEN.
20         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
21         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
22         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
23         via Ian Beckwith <ianb@erislabs.net>.
24
25 2010-01-07  Bruno Haible  <bruno@clisp.org>
26
27         dirent: Document the last fix.
28         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
29
30 2010-01-07  Bruno Haible  <bruno@clisp.org>
31
32         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
33         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
34         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
35         va_list are defined.
36         * doc/posix-headers/stdio.texi: Document the bug of missing types.
37         Reported by Eric Blake.
38
39 2010-01-07  Bruno Haible  <bruno@clisp.org>
40
41         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
42         * modules/xlist (Depends-on): Add 'list',
43         * modules/xoset (Depends-on): Add 'oset'.
44         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
45
46 2010-01-07  Bruno Haible  <bruno@clisp.org>
47
48         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
49         * doc/posix-functions/strncasecmp.texi: Likewise.
50
51 2010-01-07  Bruno Haible  <bruno@clisp.org>
52
53         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
54
55 2010-01-07  John W. Eaton  <jwe@octave.org>
56
57         wctype: allow C++ use
58         * lib/wctype.in.h: Add extern "C" block for C++.
59
60 2010-01-06  Eric Blake  <ebb9@byu.net>
61
62         maint.mk: detect incorrect GFDL usage
63         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
64
65 2010-01-06  Jim Meyering  <meyering@redhat.com>
66         and Eric Blake  <ebb9@byu.net>
67
68         maint.mk: ignore multi-line copyright in NEWS
69         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
70
71 2010-01-06  Eric Blake  <ebb9@byu.net>
72
73         select: add missing dependency
74         * modules/select-tests (Depends-on): Move sockets dependency...
75         * modules/select (Depends-on): ...here.
76         Reported by Ian Beckwith.
77
78         doc: regenerate INSTALL
79         * doc/INSTALL: Reflect recent autoconf update.
80         * doc/INSTALL.ISO: Likewise.
81         * doc/INSTALL.UTF-8: Likewise.
82
83         pread: fix compilation on glibc
84         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
85         Reported by Ralf Wildenhues.
86
87         dirent: fix test failure
88         * lib/dirent.in.h (includes): Guarantee ino_t.
89         Reported by Ralf Wildenhues.
90
91 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
92
93         linkat, renameat: avoid bad free
94         * lib/at-func2.c (at_func2): Fix typo.
95         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
96
97 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
98
99         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
100         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
101         to avoid failure of symlink test later.
102
103 2010-01-06  Eric Blake  <ebb9@byu.net>
104
105         stdio, unistd: guarantee ssize_t
106         * lib/unistd.in.h (includes): Ensure that types required by POSIX
107         2008 are exposed when needed.
108         * lib/stdio.in.h (includes): Likewise.
109         Reported by Ralf Wildenhues.
110
111 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
112
113         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
114         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
115         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
116
117 2010-01-06  Jim Meyering  <meyering@redhat.com>
118
119         readtokens: this module *does* require xalloc.h
120         It uses only functions that were omitted by the old syntax-check rule.
121         * lib/readtokens.c: Include "xalloc.h" once again.
122         * modules/readtokens (Depends-on): Add xalloc.
123         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
124
125 2010-01-05  Eric Blake  <ebb9@byu.net>
126
127         maint: support 'make announcement' from a VPATH build
128         * top/maint.mk (announcement): Look for correct NEWS file.
129
130 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
131
132         utimens (fdutimens): ignore a negative FD, per contract
133         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
134         when we have a valid file descriptor.  Otherwise, using a brand
135         new glibc (with just-patched futimens that now fails with EBADF)
136         would cause this function to fail with ENOSYS.
137         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
138         See also http://bugzilla.redhat.com/552320.
139
140 2010-01-05  Eric Blake  <ebb9@byu.net>
141
142         strcase: document what it provides
143         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
144         gnulib module.
145         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
146         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
147
148 2010-01-05  Jim Meyering  <meyering@redhat.com>
149
150         maint: remove useless inclusions of "xalloc.h"
151         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
152         * lib/readtokens.c: Likewise.
153         * lib/same.c: Likewise.
154         * modules/getloadavg (Depends-on): Remove xalloc.
155         * modules/readtokens: Likewise.
156         * modules/same: Likewise.
157
158         maint.mk: include 4 more function names in alloca.h-checking regexp
159         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
160         regexp.  Before, we would give a false-positive (saying alloca.h
161         is included unnecessarily) when the only uses involved omitted symbols.
162
163         xalloc.h: use consistent formatting
164         * lib/xalloc.h: Move declarations to start in the first column.
165
166 2010-01-05  Eric Blake  <ebb9@byu.net>
167
168         mkdir: avoid xalloc
169         * lib/mkdir.c (includes): Drop unused header.
170         Reported by John W. Eaton.
171
172 2010-01-04  Jim Meyering  <meyering@redhat.com>
173
174         nl_langinfo: avoid configure-time syntax error
175         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
176         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
177         the empty string.  Don't let that provoke a shell syntax error.
178
179         regcomp, regexec, fnmatch: avoid array bounds read error
180         * lib/regcomp.c (build_equiv_class): From glibc:
181         Use only the low 24 bits of a findidx return value as an index
182         into the weights array.  Patch by Ulrich Drepper:
183         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
184         * lib/regexec.c (check_node_accept_bytes): Likewise.
185         * lib/fnmatch_loop.c (FCT): Likewise.
186
187         regcomp: skip collseq lookup when there are no rules
188         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
189         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
190
191         regcomp: recognize ill-formed { } expressions
192         * lib/regcomp.c (parse_dup_op): From glibc:
193         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
194
195         regcomp: fix typo in comment
196         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
197         s/satisfy/satisfies/.
198
199         regcomp: sync from glibc: remove dead store
200         * lib/regcomp.c (duplicate_node_closure): Remove useless
201         search_duplicated_node call and dead store.
202
203         regcomp: sync from glibc; always use nl_langinfo
204         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
205         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
206         * modules/regex (Depends-on): Add nl_langinfo.
207
208 2010-01-04  Eric Blake  <ebb9@byu.net>
209
210         fdopendir: fix configure test
211         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
212
213 2010-01-01  Bruno Haible  <bruno@clisp.org>
214
215         wchar: Remove unused configure check.
216         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
217
218 2010-01-01  Eric Blake  <ebb9@byu.net>
219
220         headers: make check of system header explicit
221         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
222         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
223         ourselves.
224         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
225         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
226         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
227         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
228         internals.
229         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
230         missing.
231         Suggested by Bruno Haible.
232
233 2010-01-01  Jim Meyering  <meyering@redhat.com>
234
235         ChangeLog: tweak to eliminate unnecessary copyright line
236         * ChangeLog: Remove a copyright line that was mistakenly updated
237         by today's update-copyright run.  Reported by Eric Blake.
238
239         test-update-copyright: don't let envvar setting cause test failure
240         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
241
242 2010-01-01  Bruno Haible  <bruno@clisp.org>
243
244         localename: Avoid gcc warning.
245         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
246         function if it is not used.
247
248 2010-01-01  Jim Meyering  <meyering@redhat.com>
249
250         update nearly all FSF copyright year lists to include 2010
251         Use the same procedure as for 2009, outlined in
252         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
253
254         version-etc: set COPYRIGHT_YEAR to 2010
255         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
256
257 2009-12-31  Eric Blake  <ebb9@byu.net>
258
259         doc: correct availability of cygwin 1.5.x getopt
260         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
261         variables.
262         * doc/posix-functions/opterr.texi (opterr): Likewise.
263         * doc/posix-functions/optind.texi (optind): Likewise.
264         * doc/posix-functions/optopt.texi (optopt): Likewise.
265         * doc/posix-functions/tzname.texi (tzname): Likewise.
266
267         openat: update maintainer
268         * modules/openat (Maintainer): Add myself.
269
270         utimens: avoid shadowing warning
271         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
272         buffers into one, to avoid shadowing, as well as avoiding a
273         redundant stat.
274         Reported by Jim Meyering.
275
276         test-dup2: avoid compiler warning
277         * tests/test-dup2.c (is_inheritable): Only define if used.
278
279 2010-01-01  Bruno Haible  <bruno@clisp.org>
280
281         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
282         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
283         defined, use wctomb instead of wcrtomb.
284
285 2010-01-01  Bruno Haible  <bruno@clisp.org>
286
287         iconv: Reject native Solaris iconv.
288         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
289         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
290
291 2009-12-31  Bruno Haible  <bruno@clisp.org>
292
293         * tests/test-signal.c (main): Remove test of 'SIG'.
294
295 2009-12-31  Bruno Haible  <bruno@clisp.org>
296
297         spawn: Fix incomplete fix.
298         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
299         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
300         warnings for GNULIB_POSIXCHECK again.
301         Reported by Eric Blake.
302
303 2009-12-31  Bruno Haible  <bruno@clisp.org>
304
305         Avoid namespace pollution on glibc systems.
306         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
307         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
308         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
309         glibc systems.
310
311 2009-12-31  Bruno Haible  <bruno@clisp.org>
312
313         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
314         (gl_REPLACE_WCHAR_H): Turn into a no-op.
315         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
316         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
317         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
318         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
319         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
320
321 2009-12-31  Bruno Haible  <bruno@clisp.org>
322
323         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
324         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
325         afterwards.
326
327 2009-12-31  Bruno Haible  <bruno@clisp.org>
328
329         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
330         SYS_UTSNAME_H.
331
332 2009-12-31  Bruno Haible  <bruno@clisp.org>
333
334         spawn: Fix misapplied patch.
335         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
336         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
337         warnings for GNULIB_POSIXCHECK.
338
339 2009-12-31  Bruno Haible  <bruno@clisp.org>
340
341         times: Update after sys_times changed.
342         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
343         * modules/times (Files): Add it.
344         (configure.ac): Invoke gl_FUNC_TIMES.
345
346 2009-12-31  Bruno Haible  <bruno@clisp.org>
347
348         Use AC_C_INLINE where necessary.
349         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
350         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
351         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
352         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
353         * m4/mbfile.m4 (gl_MBFILE): Likewise.
354         * m4/mbiter.m4 (gl_MBITER): Likewise.
355         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
356         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
357         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
358         * modules/u64 (configure.ac): Likewise.
359
360 2009-12-31  Bruno Haible  <bruno@clisp.org>
361
362         Use AC_C_INLINE instead of module 'inline' where possible.
363         * modules/inline (Description): Clarify purpose.
364         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
365         * modules/count-one-bits (Depends-on): Remove inline.
366         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
367         * modules/openat (Depends-on): Remove inline.
368         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
369         instead of depending on module 'inline'.
370         * modules/filevercmp (Depends-on, configure.ac): Likewise.
371         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
372         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
373         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
374         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
375         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
376         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
377         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
378         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
379         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
380         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
381         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
382         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
383         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
384         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
385         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
386         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
387         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
388         Likewise.
389         * modules/unictype/property-ascii-hex-digit (Depends-on,
390         configure.ac): Likewise.
391         * modules/unictype/property-bidi-arabic-digit (Depends-on,
392         configure.ac): Likewise.
393         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
394         configure.ac): Likewise.
395         * modules/unictype/property-bidi-block-separator (Depends-on,
396         configure.ac): Likewise.
397         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
398         configure.ac): Likewise.
399         * modules/unictype/property-bidi-common-separator (Depends-on,
400         configure.ac): Likewise.
401         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
402         Likewise.
403         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
404         configure.ac): Likewise.
405         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
406         configure.ac): Likewise.
407         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
408         configure.ac): Likewise.
409         * modules/unictype/property-bidi-european-digit (Depends-on,
410         configure.ac): Likewise.
411         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
412         configure.ac): Likewise.
413         * modules/unictype/property-bidi-left-to-right (Depends-on,
414         configure.ac): Likewise.
415         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
416         configure.ac): Likewise.
417         * modules/unictype/property-bidi-other-neutral (Depends-on,
418         configure.ac): Likewise.
419         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
420         Likewise.
421         * modules/unictype/property-bidi-segment-separator (Depends-on,
422         configure.ac): Likewise.
423         * modules/unictype/property-bidi-whitespace (Depends-on,
424         configure.ac): Likewise.
425         * modules/unictype/property-combining (Depends-on, configure.ac):
426         Likewise.
427         * modules/unictype/property-composite (Depends-on, configure.ac):
428         Likewise.
429         * modules/unictype/property-currency-symbol (Depends-on,
430         configure.ac): Likewise.
431         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
432         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
433         Likewise.
434         * modules/unictype/property-default-ignorable-code-point (Depends-on,
435         configure.ac): Likewise.
436         * modules/unictype/property-deprecated (Depends-on, configure.ac):
437         Likewise.
438         * modules/unictype/property-diacritic (Depends-on, configure.ac):
439         Likewise.
440         * modules/unictype/property-extender (Depends-on, configure.ac):
441         Likewise.
442         * modules/unictype/property-format-control (Depends-on, configure.ac):
443         Likewise.
444         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
445         Likewise.
446         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
447         Likewise.
448         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
449         Likewise.
450         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
451         Likewise.
452         * modules/unictype/property-hyphen (Depends-on, configure.ac):
453         Likewise.
454         * modules/unictype/property-id-continue (Depends-on, configure.ac):
455         Likewise.
456         * modules/unictype/property-id-start (Depends-on, configure.ac):
457         Likewise.
458         * modules/unictype/property-ideographic (Depends-on, configure.ac):
459         Likewise.
460         * modules/unictype/property-ids-binary-operator (Depends-on,
461         configure.ac): Likewise.
462         * modules/unictype/property-ids-trinary-operator (Depends-on,
463         configure.ac): Likewise.
464         * modules/unictype/property-ignorable-control (Depends-on,
465         configure.ac): Likewise.
466         * modules/unictype/property-iso-control (Depends-on, configure.ac):
467         Likewise.
468         * modules/unictype/property-join-control (Depends-on, configure.ac):
469         Likewise.
470         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
471         Likewise.
472         * modules/unictype/property-line-separator (Depends-on, configure.ac):
473         Likewise.
474         * modules/unictype/property-logical-order-exception (Depends-on,
475         configure.ac): Likewise.
476         * modules/unictype/property-lowercase (Depends-on, configure.ac):
477         Likewise.
478         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
479         * modules/unictype/property-non-break (Depends-on, configure.ac):
480         Likewise.
481         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
482         Likewise.
483         * modules/unictype/property-numeric (Depends-on, configure.ac):
484         Likewise.
485         * modules/unictype/property-other-alphabetic (Depends-on,
486         configure.ac): Likewise.
487         * modules/unictype/property-other-default-ignorable-code-point
488         (Depends-on, configure.ac): Likewise.
489         * modules/unictype/property-other-grapheme-extend (Depends-on,
490         configure.ac): Likewise.
491         * modules/unictype/property-other-id-continue (Depends-on,
492         configure.ac): Likewise.
493         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
494         Likewise.
495         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
496         Likewise.
497         * modules/unictype/property-other-math (Depends-on, configure.ac):
498         Likewise.
499         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
500         Likewise.
501         * modules/unictype/property-paired-punctuation (Depends-on,
502         configure.ac): Likewise.
503         * modules/unictype/property-paragraph-separator (Depends-on,
504         configure.ac): Likewise.
505         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
506         Likewise.
507         * modules/unictype/property-pattern-white-space (Depends-on,
508         configure.ac): Likewise.
509         * modules/unictype/property-private-use (Depends-on, configure.ac):
510         Likewise.
511         * modules/unictype/property-punctuation (Depends-on, configure.ac):
512         Likewise.
513         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
514         Likewise.
515         * modules/unictype/property-radical (Depends-on, configure.ac):
516         Likewise.
517         * modules/unictype/property-sentence-terminal (Depends-on,
518         configure.ac): Likewise.
519         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
520         Likewise.
521         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
522         * modules/unictype/property-terminal-punctuation (Depends-on,
523         configure.ac): Likewise.
524         * modules/unictype/property-titlecase (Depends-on, configure.ac):
525         Likewise.
526         * modules/unictype/property-unassigned-code-value (Depends-on,
527         configure.ac): Likewise.
528         * modules/unictype/property-unified-ideograph (Depends-on,
529         configure.ac): Likewise.
530         * modules/unictype/property-uppercase (Depends-on, configure.ac):
531         Likewise.
532         * modules/unictype/property-variation-selector (Depends-on,
533         configure.ac): Likewise.
534         * modules/unictype/property-white-space (Depends-on, configure.ac):
535         Likewise.
536         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
537         Likewise.
538         * modules/unictype/property-xid-start (Depends-on, configure.ac):
539         Likewise.
540         * modules/unictype/property-zero-width (Depends-on, configure.ac):
541         Likewise.
542         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
543         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
544         Likewise.
545
546 2009-12-31  Bruno Haible  <bruno@clisp.org>
547
548         Remove unnecessary AC_C_INLINE invocation.
549         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
550         since 2009-08-21.
551
552 2009-12-31  Jim Meyering  <meyering@redhat.com>
553
554         maint.mk: don't require explicit gpg_key_ID in cfg.mk
555         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
556         With this change, we can all remove the gpg_key_ID = ... definition
557         from our respective cfg.mk files.
558
559         maint.mk: create announcement template in ~/, not in /tmp
560         * top/maint.mk (emit_upload_commands): Adjust.
561         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
562         Remove temporary file, .ci-msg.
563
564 2009-12-31  Eric Blake  <ebb9@byu.net>
565
566         link-warning: always build headers with link warnings
567         * modules/arpa_inet (Makefile.am): Always build replacement
568         header.
569         * modules/ctype (Makefile.am): Likewise.
570         * modules/dirent (Makefile.am): Likewise.
571         * modules/inttypes (Makefile.am): Likewise.
572         * modules/langinfo (Makefile.am): Likewise.
573         * modules/locale (Makefile.am): Likewise.
574         * modules/spawn (Makefile.am): Likewise.
575         * modules/sys_file (Makefile.am): Likewise.
576         * modules/sys_ioctl (Makefile.am): Likewise.
577         * modules/sys_select (Makefile.am): Likewise.
578         * modules/sys_socket (Makefile.am): Likewise.
579         * modules/sys_times (Makefile.am): Likewise.
580         * modules/sys_utsname (Makefile.am): Likewise.
581         * modules/sys_wait (Makefile.am): Likewise.
582         * modules/wchar (Makefile.am): Likewise.
583         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
584         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
585         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
586         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
587         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
588         Likewise.
589         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
590         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
591         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
592         Likewise.
593         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
594         Likewise.
595         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
596         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
597         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
598         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
599         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
600         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
601         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
602         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
603         (gl_WCHAR_H_DEFAULTS): Likewise.
604
605 2009-12-31  Eric Blake  <ebb9@byu.net>
606
607         signal, spawn: use link warnings
608         * lib/signal.in.h (sigset_t): Make unconditional.
609         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
610         (sigpending, sigprocmask, sigaction): Add link warnings.
611         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
612         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
613         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
614         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
615         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
616         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
617         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
618         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
619         (posix_spawn_file_actions_destroy)
620         (posix_spawn_file_actions_addopen)
621         (posix_spawn_file_actions_addclose)
622         (posix_spawwn_file_actions_adddup2): Likewise.
623         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
624         * tests/test-signal.c (main): Enhance test.
625
626         spawn: improve wrapper support
627         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
628         (gl_SPAWN_H_DEFAULTS): New defaults.
629         * modules/spawn (Makefile.am): Substitute them.
630         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
631         Only declare if missing or broken.
632
633         sys_times, sys_utsname: use include_next
634         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
635         header.
636         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
637         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
638         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
639         * modules/sys_times (Depends-on): Add include_next.
640         (Makefile.am): Substitute additional values.
641         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
642         * lib/sys_times.in.h (includes): Include native header, if
643         available.
644         * lib/sys_utsname.in.h (includes): Likewise.
645         * tests/test-sys_times.c (main): Enhance test.
646
647         fdutimensat: revert prior patch
648         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
649         utimens.h.
650         Reported by Bruno Haible.
651
652 2009-12-30  Eric Blake  <ebb9@byu.net>
653
654         sys_wait: drop link-warning dependency
655         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
656         link-warning efforts.
657         * lib/sys_wait.in.h: Likewise.
658
659         fdutimensat: remove bogus dependency
660         * modules/fdutimensat (Depends-on): Drop inline.
661
662         unistd: fix typo
663         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
664
665 2009-12-30  Bruno Haible  <bruno@clisp.org>
666
667         Fix compilation error with Solaris cc.
668         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
669         * lib/unicase/u16-is-invariant.c: Likewise.
670         * lib/unicase/u32-is-invariant.c: Likewise.
671         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
672
673 2009-12-30  Bruno Haible  <bruno@clisp.org>
674
675         Fix test crash.
676         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
677         locales.
678         Reported by Simon Josefsson <simon@josefsson.org>.
679
680 2009-12-30  Bruno Haible  <bruno@clisp.org>
681
682         Fix compilation error on most platforms.
683         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
684         Reported by Simon Josefsson <simon@josefsson.org>
685         and Nelson H. F. Beebe <beebe@math.utah.edu>.
686
687 2009-12-30  Eric Blake  <ebb9@byu.net>
688
689         futimens, utimensat: work around ntfs-3g bug
690         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
691         a ctime bug is present, and expand workaround to cover ntfs-3g.
692         * lib/utimens.c (fdutimens, lutimens): Likewise.
693         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
694         (validate_timespec): Adjust return value.
695         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
696         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
697         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
698
699 2009-12-29  Eric Blake  <ebb9@byu.net>
700
701         link-warning: make usage consistent
702         * modules/ctype (Depends-on): Add link-warning.
703         (Makefile.am): Update rules accordingly.
704         * modules/langinfo (Depends-on, Makefile.am): Likewise.
705         * modules/locale (Depends-on, Makefile.am): Likewise.
706         * modules/sys_file (Makefile.am): Likewise.
707         * modules/getopt-posix (Makefile.am): Delete unused link warning
708         efforts.
709         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
710         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
711         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
712         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
713
714         stdio: remove unused variables
715         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
716         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
717         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
718
719         tests: test more substitute headers
720         * modules/ctype-tests: New file.
721         * modules/dirent-tests: Likewise.
722         * modules/spawn-tests: Likewise.
723         * modules/sys_file-tests: Likewise.
724         * modules/sys_ioctl-tests: Likewise.
725         * modules/sys_wait-tests: Likewise.
726         * tests/test-ctype.c: Likewise.
727         * tests/test-dirent.c: Likewise.
728         * tests/test-spawn.c: Likewise.
729         * tests/test-sys_file.c: Likewise.
730         * tests/test-sys_ioctl.c: Likewise.
731         * tests/test-sys_wait.c: Likewise.
732         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
733         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
734         whether or not flock is in use.
735
736         tests: remove License section from module
737         * modules/arpa_inet-tests: Remove unneeded section.
738         * modules/byteswap-tests: Likewise.
739         * modules/ceilf-tests: Likewise.
740         * modules/ceill-tests: Likewise.
741         * modules/crypto/des-tests: Likewise.
742         * modules/crypto/gc-arcfour-tests: Likewise.
743         * modules/crypto/gc-arctwo-tests: Likewise.
744         * modules/crypto/gc-des-tests: Likewise.
745         * modules/crypto/gc-hmac-md5-tests: Likewise.
746         * modules/crypto/gc-hmac-sha1-tests: Likewise.
747         * modules/crypto/gc-md2-tests: Likewise.
748         * modules/crypto/gc-md4-tests: Likewise.
749         * modules/crypto/gc-md5-tests: Likewise.
750         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
751         * modules/crypto/gc-rijndael-tests: Likewise.
752         * modules/crypto/gc-sha1-tests: Likewise.
753         * modules/crypto/gc-tests: Likewise.
754         * modules/crypto/md2-tests: Likewise.
755         * modules/crypto/md4-tests: Likewise.
756         * modules/fcntl-h-tests: Likewise.
757         * modules/floorf-tests: Likewise.
758         * modules/floorl-tests: Likewise.
759         * modules/frexp-nolibm-tests: Likewise.
760         * modules/frexp-tests: Likewise.
761         * modules/frexpl-nolibm-tests: Likewise.
762         * modules/frexpl-tests: Likewise.
763         * modules/getaddrinfo-tests: Likewise.
764         * modules/inttypes-tests: Likewise.
765         * modules/isfinite-tests: Likewise.
766         * modules/isinf-tests: Likewise.
767         * modules/ldexpl-tests: Likewise.
768         * modules/locale-tests: Likewise.
769         * modules/math-tests: Likewise.
770         * modules/netdb-tests: Likewise.
771         * modules/netinet_in-tests: Likewise.
772         * modules/printf-frexp-tests: Likewise.
773         * modules/printf-frexpl-tests: Likewise.
774         * modules/priv-set-tests: Likewise.
775         * modules/random_r-tests: Likewise.
776         * modules/round-tests: Likewise.
777         * modules/roundf-tests: Likewise.
778         * modules/roundl-tests: Likewise.
779         * modules/search-tests: Likewise.
780         * modules/select-tests: Likewise.
781         * modules/signal-tests: Likewise.
782         * modules/stdbool-tests: Likewise.
783         * modules/stddef-tests: Likewise.
784         * modules/stdint-tests: Likewise.
785         * modules/stdio-tests: Likewise.
786         * modules/stdlib-tests: Likewise.
787         * modules/string-tests: Likewise.
788         * modules/strings-tests: Likewise.
789         * modules/sys_select-tests: Likewise.
790         * modules/sys_socket-tests: Likewise.
791         * modules/sys_stat-tests: Likewise.
792         * modules/sys_time-tests: Likewise.
793         * modules/sys_utsname-tests: Likewise.
794         * modules/sysexits-tests: Likewise.
795         * modules/time-tests: Likewise.
796         * modules/trunc-tests: Likewise.
797         * modules/truncf-tests: Likewise.
798         * modules/truncl-tests: Likewise.
799         * modules/tsearch-tests: Likewise.
800         * modules/unistd-tests: Likewise.
801         * modules/wchar-tests: Likewise.
802         * modules/wctype-tests: Likewise.
803
804         tests: fix license on several tests
805         * tests/test-des.c: Update to GPLv3+.
806         * tests/test-flock.c: Likewise.
807         * tests/test-fsync.c: Likewise.
808         * tests/test-futimens.h: Likewise.
809         * tests/test-gc-arcfour.c: Likewise.
810         * tests/test-gc-arctwo.c: Likewise.
811         * tests/test-gc-des.c: Likewise.
812         * tests/test-gc-hmac-md5.c: Likewise.
813         * tests/test-gc-hmac-sha1.c: Likewise.
814         * tests/test-gc-md2.c: Likewise.
815         * tests/test-gc-md4.c: Likewise.
816         * tests/test-gc-md5.c: Likewise.
817         * tests/test-gc-pbkdf2-sha1.c: Likewise.
818         * tests/test-gc-rijndael.c: Likewise.
819         * tests/test-gc-sha1.c: Likewise.
820         * tests/test-gc.c: Likewise.
821         * tests/test-getcwd.c: Likewise.
822         * tests/test-link.c: Likewise.
823         * tests/test-link.h: Likewise.
824         * tests/test-lutimens.h: Likewise.
825         * tests/test-md2.c: Likewise.
826         * tests/test-md4.c: Likewise.
827         * tests/test-mkdir.h: Likewise.
828         * tests/test-rename.c: Likewise.
829         * tests/test-rename.h: Likewise.
830         * tests/test-safe-alloc.c: Likewise.
831         * tests/test-utimens-common.h: Likewise.
832         * tests/test-utimens.h: Likewise.
833
834         maint: sync license texts
835         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
836         * doc/gpl-3.0.texi: Revert copyright year update.
837         * doc/lgpl-3.0.texi: Likewise.
838
839 2009-12-29  Jim Meyering  <meyering@redhat.com>
840
841         update nearly all FSF copyright year lists to include 2009
842         The files named by the following are exempted:
843             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
844               test -f "$dst" && { echo "$dst"; continue; }
845               test -d "$dst" || continue
846               echo "$dst"/$(basename "$src")
847             done > exempt
848             git ls-files tests/unictype >> exempt
849         In the remaining files, convert to all-interval notation if
850         - there is already at least one year interval like 2000-2003
851         - the file is maintained by me
852         - the file is in lib/uni*/, where that style already prevails
853         Otherwise, use update-copyright's default.
854
855 2009-12-29  Simon Josefsson  <simon@josefsson.org>
856         and Eric Blake  <ebb9@byu.net>
857
858         tests: don't require debug system() to pass
859         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
860         * tests/test-rmdir.h (test_rmdir_func): Likewise.
861         * tests/test-unlink.h (test_unlink_func): Likewise.
862         * tests/test-fstatat.c (main): ...into callers.
863         * tests/test-lstat.c (main): Likewise.
864         * tests/test-rmdir.c (main): Likewise.
865         * tests/test-unlink.c (main): Likewise.
866         * tests/test-unlinkat.c (main): Likewise.
867         * tests/test-areadlink-with-size.c (main): Don't require a
868         debug-only system call to pass, aiding cross-testing to mingw.
869         * tests/test-areadlink.c (main): Likewise.
870         * tests/test-areadlinkat-with-size.c (main): Likewise.
871         * tests/test-areadlinkat.c (main): Likewise.
872         * tests/test-canonicalize-lgpl.c (main): Likewise.
873         * tests/test-canonicalize.c (main): Likewise.
874         * tests/test-chown.c (main): Likewise.
875         * tests/test-fchownat.c (main): Likewise.
876         * tests/test-lchown.c (main): Likewise.
877         * tests/test-fdutimensat.c (main): Likewise.
878         * tests/test-futimens.c (main): Likewise.
879         * tests/test-link.c (main): Likewise.
880         * tests/test-linkat.c (main): Likewise.
881         * tests/test-mkdir.c (main): Likewise.
882         * tests/test-mkdirat.c (main): Likewise.
883         * tests/test-mkfifo.c (main): Likewise.
884         * tests/test-mkfifoat.c (main): Likewise.
885         * tests/test-mknod.c (main): Likewise.
886         * tests/test-readlink.c (main): Likewise.
887         * tests/test-remove.c (main): Likewise.
888         * tests/test-rename.c (main): Likewise.
889         * tests/test-renameat.c (main): Likewise.
890         * tests/test-symlink.c (main): Likewise.
891         * tests/test-symlinkat.c (main): Likewise.
892         * tests/test-utimens.c (main): Likewise.
893         * tests/test-utimensat.c (main): Likewise.
894
895 2009-12-29  Simon Josefsson  <simon@josefsson.org>
896
897         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
898         on $(UNUSED_PARAMETER_H) to avoid build failure.
899
900 2009-12-28  Jim Meyering  <meyering@redhat.com>
901
902         update-copyright: you may specify a max. line length other than 72
903         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
904
905         maint: use consistent FSF copyright line syntax
906         * lib/posixtm.c: Add missing comma in FSF copyright line.
907         * lib/posixtm.h: Likewise.
908         * lib/getugroups.c: Add missing ", Inc.".
909
910         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
911         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
912         FSF copyright line.  Remove trailing blanks.
913
914 2009-12-28  Eric Blake  <ebb9@byu.net>
915
916         test-dup2: reduce dependencies
917         * modules/cloexec (Configure.ac): Set witness.
918         * modules/dup2-tests (Depends-on): Drop cloexec.
919         * tests/test-dup2.c (main): Skip portion of test if cloexec module
920         not present.
921         Suggested by Bruno Haible.
922
923 2009-12-26  Bruno Haible  <bruno@clisp.org>
924
925         Remove an unneeded dependency.
926         * modules/fseterr (Depends-on): Remove dup2.
927
928 2009-12-26  Eric Blake  <ebb9@byu.net>
929
930         tests: use macros.h in more places
931         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
932         (ASSERT_STREAM): Provide default of stderr.
933         * tests/test-dirent-safer.c: Include macros.h, using alternate
934         stream for assertions.
935         * tests/test-dup-safer.c: Likewise.
936         * tests/test-freopen-safer.c: Likewise.
937         * tests/test-getopt.c: Likewise.
938         * tests/test-openat-safer.c: Likewise.
939         * tests/test-pipe.c: Likewise.
940         * tests/test-popen-safer.c: Likewise.
941         * modules/dirent-safer-tests (Files): Include macros.h.
942         * modules/unistd-safer-tests (Files): Likewise.
943         * modules/freopen-safer-tests (Files): Likewise.
944         * modules/getopt-posix-tests (Files): Likewise.
945         * modules/openat-safer-tests (Files): Likewise.
946         * modules/pipe-tests (Files): Likewise.
947
948 2009-12-26  Bruno Haible  <bruno@clisp.org>
949
950         javacomp: Portability fix.
951         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
952         that it also works on Solaris.
953
954 2009-12-26  Bruno Haible  <bruno@clisp.org>
955
956         localename: Fix storage allocation of gl_locale_name_thread's result.
957         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
958         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
959         all platforms that have 'uselocale'.
960         (gl_locale_name_thread_unsafe): New function, extracted from
961         gl_locale_name_thread.
962         (gl_locale_name_thread): Call struniq on all platforms that have
963         'uselocale'.
964         * tests/test-localename.c (test_locale_name_thread): Check that the
965         resulting strings are permanently allocated.
966         * modules/localename-tests (Depends-on): Add strdup.
967
968 2009-12-26  Bruno Haible  <bruno@clisp.org>
969
970         * tests/test-localename.c (categories): Fill in the strings.
971
972 2009-12-26  Jim Meyering  <meyering@redhat.com>
973
974         isdir: complete the removal of m4/isdir.m4
975         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
976
977         isdir: clean up, since at least grep still uses it
978         * lib/isdir.c: Include "isdir.h".
979         (S_ISDIR): Remove now-unneeded definition.
980         * modules/isdir (Files): Add lib/isdir.h.
981         * lib/isdir.h: New file, with declaration.
982         * m4/isdir.m4: Remove file -- unneeded.
983
984 2009-12-25  Bruno Haible  <bruno@clisp.org>
985
986         selinux-h: Make generated .h files standalone.
987         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
988         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
989         * lib/se-selinux.in.h: Likewise.
990         * modules/selinux-h (Depends-on): Add unused-parameter.
991         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
992         selinux/selinux.h and selinux/context.h.
993         Suggested by Eric Blake.
994
995 2009-12-25  Bruno Haible  <bruno@clisp.org>
996
997         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
998         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
999         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
1000         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
1001         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
1002
1003 2009-12-24  Bruno Haible  <bruno@clisp.org>
1004
1005         openat: Fix warning.
1006         * lib/openat-proc.c: Include <unistd.h>.
1007
1008 2009-12-24  Bruno Haible  <bruno@clisp.org>
1009
1010         New module 'unused-parameter'.
1011         * build-aux/unused-parameter.h: New file, extracted from earlier
1012         gnulib-common.m4.
1013         * modules/unused-parameter: New file.
1014         * lib/unistr.h: Include unused-parameter.h.
1015         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
1016         _GL_UNUSED.
1017         * modules/unistr/base (Depends-on): Add unused-parameter.
1018
1019 2009-12-24  Bruno Haible  <bruno@clisp.org>
1020
1021         Add missing dependencies to 'extensions' module.
1022         * m4/extensions.m4: Add comment.
1023         * modules/accept4 (Depends-on): Add extensions.
1024         * modules/dup3 (Depends-on): Likewise.
1025         * modules/fcntl (Depends-on): Likewise.
1026         * modules/futimens (Depends-on): Likewise.
1027         * modules/mknod (Depends-on): Likewise.
1028         * modules/pipe2 (Depends-on): Likewise.
1029         * modules/stat-time (Depends-on): Likewise.
1030         * modules/strcasestr-simple (Depends-on): Likewise.
1031         * modules/strsignal (Depends-on): Likewise.
1032         * modules/utimensat (Depends-on): Likewise.
1033         * modules/localcharset (Depends-on): Likewise. Needed because of
1034         gl_FCNTL_O_FLAGS.
1035         * modules/wcrtomb (Depends-on): Likewise. Needed because of
1036         AC_TYPE_MBSTATE_T.
1037         * modules/wcsnrtombs (Depends-on): Likewise.
1038         * modules/wcsrtombs (Depends-on): Likewise.
1039
1040 2009-12-24  Bruno Haible  <bruno@clisp.org>
1041
1042         binary-io: Avoid gcc warning due to SET_BINARY.
1043         * lib/binary-io.h (SET_BINARY): Cast the result to void.
1044         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
1045
1046 2009-12-24  Bruno Haible  <bruno@clisp.org>
1047
1048         Avoid future namespace pollution on glibc systems.
1049         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
1050         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
1051         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
1052         glibc systems.
1053
1054 2009-12-24  Bruno Haible  <bruno@clisp.org>
1055
1056         Refactor common macros used in tests.
1057         * tests/macros.h: New file.
1058         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
1059         and/or <stdlib.h>, if appropriate.
1060         (ASSERT, SIZEOF): Remove macros.
1061         * tests/test-areadlink-with-size.c: Likewise.
1062         * tests/test-areadlinkat.c: Likewise.
1063         * tests/test-areadlinkat-with-size.c: Likewise.
1064         * tests/test-argmatch.c: Likewise.
1065         * tests/test-argv-iter.c: Likewise.
1066         * tests/test-array-mergesort.c: Likewise.
1067         * tests/test-array_list.c: Likewise.
1068         * tests/test-array_oset.c: Likewise.
1069         * tests/test-avltree_list.c: Likewise.
1070         * tests/test-avltree_oset.c: Likewise.
1071         * tests/test-avltreehash_list.c: Likewise.
1072         * tests/test-base64.c: Likewise.
1073         * tests/test-binary-io.c: Likewise.
1074         * tests/test-bitrotate.c: Likewise.
1075         * tests/test-btowc.c: Likewise.
1076         * tests/test-byteswap.c: Likewise.
1077         * tests/test-c-ctype.c: Likewise.
1078         * tests/test-c-stack.c: Likewise.
1079         * tests/test-c-strcasecmp.c: Likewise.
1080         * tests/test-c-strcasestr.c: Likewise.
1081         * tests/test-c-strncasecmp.c: Likewise.
1082         * tests/test-c-strstr.c: Likewise.
1083         * tests/test-canonicalize-lgpl.c: Likewise.
1084         * tests/test-canonicalize.c: Likewise.
1085         * tests/test-carray_list.c: Likewise.
1086         * tests/test-ceilf1.c: Likewise.
1087         * tests/test-ceilf2.c: Likewise.
1088         * tests/test-ceill.c: Likewise.
1089         * tests/test-chown.c: Likewise.
1090         * tests/test-cloexec.c: Likewise.
1091         * tests/test-copy-acl.c: Likewise.
1092         * tests/test-copy-file.c: Likewise.
1093         * tests/test-count-one-bits.c: Likewise.
1094         * tests/test-dprintf-posix.c: Likewise.
1095         * tests/test-dup2.c: Likewise.
1096         * tests/test-dup3.c: Likewise.
1097         * tests/test-duplocale.c: Likewise.
1098         * tests/test-fbufmode.c: Likewise.
1099         * tests/test-fchdir.c: Likewise.
1100         * tests/test-fchownat.c: Likewise.
1101         * tests/test-fcntl-safer.c: Likewise.
1102         * tests/test-fcntl.c: Likewise.
1103         * tests/test-fdopendir.c: Likewise.
1104         * tests/test-fdutimensat.c: Likewise.
1105         * tests/test-fflush2.c: Likewise.
1106         * tests/test-file-has-acl.c: Likewise.
1107         * tests/test-filevercmp.c: Likewise.
1108         * tests/test-flock.c: Likewise.
1109         * tests/test-floorf1.c: Likewise.
1110         * tests/test-floorf2.c: Likewise.
1111         * tests/test-floorl.c: Likewise.
1112         * tests/test-fnmatch.c: Likewise.
1113         * tests/test-fopen.h: Likewise.
1114         * tests/test-fpending.c: Likewise.
1115         * tests/test-fprintf-posix.c: Likewise.
1116         * tests/test-fpurge.c: Likewise.
1117         * tests/test-freadable.c: Likewise.
1118         * tests/test-freadahead.c: Likewise.
1119         * tests/test-freading.c: Likewise.
1120         * tests/test-freadptr.c: Likewise.
1121         * tests/test-freadptr2.c: Likewise.
1122         * tests/test-freadseek.c: Likewise.
1123         * tests/test-freopen.c: Likewise.
1124         * tests/test-frexp.c: Likewise.
1125         * tests/test-frexpl.c: Likewise.
1126         * tests/test-fseek.c: Likewise.
1127         * tests/test-fseeko.c: Likewise.
1128         * tests/test-fstatat.c: Likewise.
1129         * tests/test-fstrcmp.c: Likewise.
1130         * tests/test-fsync.c: Likewise.
1131         * tests/test-ftell.c: Likewise.
1132         * tests/test-ftello.c: Likewise.
1133         * tests/test-func.c: Likewise.
1134         * tests/test-futimens.c: Likewise.
1135         * tests/test-fwritable.c: Likewise.
1136         * tests/test-fwriting.c: Likewise.
1137         * tests/test-getcwd.c: Likewise.
1138         * tests/test-getdate.c: Likewise.
1139         * tests/test-getdelim.c: Likewise.
1140         * tests/test-getdtablesize.c: Likewise.
1141         * tests/test-getgroups.c: Likewise.
1142         * tests/test-getline.c: Likewise.
1143         * tests/test-getndelim2.c: Likewise.
1144         * tests/test-glob.c: Likewise.
1145         * tests/test-hash.c: Likewise.
1146         * tests/test-i-ring.c: Likewise.
1147         * tests/test-iconv-utf.c: Likewise.
1148         * tests/test-iconv.c: Likewise.
1149         * tests/test-idpriv-drop.c: Likewise.
1150         * tests/test-idpriv-droptemp.c: Likewise.
1151         * tests/test-inet_ntop.c: Likewise.
1152         * tests/test-inet_pton.c: Likewise.
1153         * tests/test-isblank.c: Likewise.
1154         * tests/test-isfinite.c: Likewise.
1155         * tests/test-isinf.c: Likewise.
1156         * tests/test-isnan.c: Likewise.
1157         * tests/test-isnand.h: Likewise.
1158         * tests/test-isnanf.h: Likewise.
1159         * tests/test-isnanl.h: Likewise.
1160         * tests/test-lchown.c: Likewise.
1161         * tests/test-ldexpl.c: Likewise.
1162         * tests/test-link.c: Likewise.
1163         * tests/test-linkat.c: Likewise.
1164         * tests/test-linked_list.c: Likewise.
1165         * tests/test-linkedhash_list.c: Likewise.
1166         * tests/test-localename.c: Likewise.
1167         * tests/test-lseek.c: Likewise.
1168         * tests/test-lstat.c: Likewise.
1169         * tests/test-mbmemcasecmp.c: Likewise.
1170         * tests/test-mbmemcasecoll.c: Likewise.
1171         * tests/test-mbrtowc.c: Likewise.
1172         * tests/test-mbscasecmp.c: Likewise.
1173         * tests/test-mbscasestr1.c: Likewise.
1174         * tests/test-mbscasestr2.c: Likewise.
1175         * tests/test-mbscasestr3.c: Likewise.
1176         * tests/test-mbscasestr4.c: Likewise.
1177         * tests/test-mbschr.c: Likewise.
1178         * tests/test-mbscspn.c: Likewise.
1179         * tests/test-mbsinit.c: Likewise.
1180         * tests/test-mbsncasecmp.c: Likewise.
1181         * tests/test-mbsnrtowcs.c: Likewise.
1182         * tests/test-mbspbrk.c: Likewise.
1183         * tests/test-mbspcasecmp.c: Likewise.
1184         * tests/test-mbsrchr.c: Likewise.
1185         * tests/test-mbsrtowcs.c: Likewise.
1186         * tests/test-mbsspn.c: Likewise.
1187         * tests/test-mbsstr1.c: Likewise.
1188         * tests/test-mbsstr2.c: Likewise.
1189         * tests/test-mbsstr3.c: Likewise.
1190         * tests/test-memchr.c: Likewise.
1191         * tests/test-memchr2.c: Likewise.
1192         * tests/test-memcmp.c: Likewise.
1193         * tests/test-memmem.c: Likewise.
1194         * tests/test-memrchr.c: Likewise.
1195         * tests/test-mkdir.c: Likewise.
1196         * tests/test-mkdirat.c: Likewise.
1197         * tests/test-mkfifo.c: Likewise.
1198         * tests/test-mkfifoat.c: Likewise.
1199         * tests/test-mknod.c: Likewise.
1200         * tests/test-nanosleep.c: Likewise.
1201         * tests/test-nl_langinfo.c: Likewise.
1202         * tests/test-obstack-printf.c: Likewise.
1203         * tests/test-open.c: Likewise.
1204         * tests/test-openat.c: Likewise.
1205         * tests/test-pipe-filter-gi1.c: Likewise.
1206         * tests/test-pipe-filter-gi2-main.c: Likewise.
1207         * tests/test-pipe-filter-ii1.c: Likewise.
1208         * tests/test-pipe-filter-ii2-main.c: Likewise.
1209         * tests/test-pipe2.c: Likewise.
1210         * tests/test-popen.h: Likewise.
1211         * tests/test-posixtm.c: Likewise.
1212         * tests/test-pread.c: Likewise.
1213         * tests/test-printf-frexp.c: Likewise.
1214         * tests/test-printf-frexpl.c: Likewise.
1215         * tests/test-printf-posix.c: Likewise.
1216         * tests/test-priv-set.c: Likewise.
1217         * tests/test-quotearg.c: Likewise.
1218         * tests/test-random_r.c: Likewise.
1219         * tests/test-rawmemchr.c: Likewise.
1220         * tests/test-rbtree_list.c: Likewise.
1221         * tests/test-rbtree_oset.c: Likewise.
1222         * tests/test-rbtreehash_list.c: Likewise.
1223         * tests/test-readlink.c: Likewise.
1224         * tests/test-remove.c: Likewise.
1225         * tests/test-rename.c: Likewise.
1226         * tests/test-renameat.c: Likewise.
1227         * tests/test-rmdir.c: Likewise.
1228         * tests/test-round1.c: Likewise.
1229         * tests/test-roundf1.c: Likewise.
1230         * tests/test-roundl.c: Likewise.
1231         * tests/test-safe-alloc.c: Likewise.
1232         * tests/test-sameacls.c: Likewise.
1233         * tests/test-set-mode-acl.c: Likewise.
1234         * tests/test-setenv.c: Likewise.
1235         * tests/test-sigaction.c: Likewise.
1236         * tests/test-signbit.c: Likewise.
1237         * tests/test-sleep.c: Likewise.
1238         * tests/test-snprintf-posix.c: Likewise.
1239         * tests/test-snprintf.c: Likewise.
1240         * tests/test-sprintf-posix.c: Likewise.
1241         * tests/test-stat-time.c: Likewise.
1242         * tests/test-stat.c: Likewise.
1243         * tests/test-strcasestr.c: Likewise.
1244         * tests/test-strchrnul.c: Likewise.
1245         * tests/test-strerror.c: Likewise.
1246         * tests/test-striconv.c: Likewise.
1247         * tests/test-striconveh.c: Likewise.
1248         * tests/test-striconveha.c: Likewise.
1249         * tests/test-strsignal.c: Likewise.
1250         * tests/test-strstr.c: Likewise.
1251         * tests/test-strtod.c: Likewise.
1252         * tests/test-strverscmp.c: Likewise.
1253         * tests/test-symlink.c: Likewise.
1254         * tests/test-symlinkat.c: Likewise.
1255         * tests/test-trunc1.c: Likewise.
1256         * tests/test-trunc2.c: Likewise.
1257         * tests/test-truncf1.c: Likewise.
1258         * tests/test-truncf2.c: Likewise.
1259         * tests/test-truncl.c: Likewise.
1260         * tests/test-uname.c: Likewise.
1261         * tests/test-unlink.c: Likewise.
1262         * tests/test-unlinkat.c: Likewise.
1263         * tests/test-unsetenv.c: Likewise.
1264         * tests/test-usleep.c: Likewise.
1265         * tests/test-utimens.c: Likewise.
1266         * tests/test-utimensat.c: Likewise.
1267         * tests/test-vasnprintf-posix.c: Likewise.
1268         * tests/test-vasnprintf-posix2.c: Likewise.
1269         * tests/test-vasnprintf.c: Likewise.
1270         * tests/test-vasprintf-posix.c: Likewise.
1271         * tests/test-vasprintf.c: Likewise.
1272         * tests/test-vdprintf-posix.c: Likewise.
1273         * tests/test-vfprintf-posix.c: Likewise.
1274         * tests/test-vprintf-posix.c: Likewise.
1275         * tests/test-vsnprintf-posix.c: Likewise.
1276         * tests/test-vsnprintf.c: Likewise.
1277         * tests/test-vsprintf-posix.c: Likewise.
1278         * tests/test-wcrtomb.c: Likewise.
1279         * tests/test-wcsnrtombs.c: Likewise.
1280         * tests/test-wcsrtombs.c: Likewise.
1281         * tests/test-wctype.c: Likewise.
1282         * tests/test-wcwidth.c: Likewise.
1283         * tests/test-xfprintf-posix.c: Likewise.
1284         * tests/test-xmemdup0.c: Likewise.
1285         * tests/test-xprintf-posix.c: Likewise.
1286         * tests/test-xvasprintf.c: Likewise.
1287         * tests/unicase/test-locale-language.c: Likewise.
1288         * tests/unicase/test-mapping-part1.h: Likewise.
1289         * tests/unicase/test-predicate-part1.h: Likewise.
1290         * tests/unicase/test-u8-casecmp.c: Likewise.
1291         * tests/unicase/test-u8-casecoll.c: Likewise.
1292         * tests/unicase/test-u8-casefold.c: Likewise.
1293         * tests/unicase/test-u8-is-cased.c: Likewise.
1294         * tests/unicase/test-u8-is-casefolded.c: Likewise.
1295         * tests/unicase/test-u8-is-lowercase.c: Likewise.
1296         * tests/unicase/test-u8-is-titlecase.c: Likewise.
1297         * tests/unicase/test-u8-is-uppercase.c: Likewise.
1298         * tests/unicase/test-u8-tolower.c: Likewise.
1299         * tests/unicase/test-u8-totitle.c: Likewise.
1300         * tests/unicase/test-u8-toupper.c: Likewise.
1301         * tests/unicase/test-u16-casecmp.c: Likewise.
1302         * tests/unicase/test-u16-casecoll.c: Likewise.
1303         * tests/unicase/test-u16-casefold.c: Likewise.
1304         * tests/unicase/test-u16-is-cased.c: Likewise.
1305         * tests/unicase/test-u16-is-casefolded.c: Likewise.
1306         * tests/unicase/test-u16-is-lowercase.c: Likewise.
1307         * tests/unicase/test-u16-is-titlecase.c: Likewise.
1308         * tests/unicase/test-u16-is-uppercase.c: Likewise.
1309         * tests/unicase/test-u16-tolower.c: Likewise.
1310         * tests/unicase/test-u16-totitle.c: Likewise.
1311         * tests/unicase/test-u16-toupper.c: Likewise.
1312         * tests/unicase/test-u32-casecmp.c: Likewise.
1313         * tests/unicase/test-u32-casecoll.c: Likewise.
1314         * tests/unicase/test-u32-casefold.c: Likewise.
1315         * tests/unicase/test-u32-is-cased.c: Likewise.
1316         * tests/unicase/test-u32-is-casefolded.c: Likewise.
1317         * tests/unicase/test-u32-is-lowercase.c: Likewise.
1318         * tests/unicase/test-u32-is-titlecase.c: Likewise.
1319         * tests/unicase/test-u32-is-uppercase.c: Likewise.
1320         * tests/unicase/test-u32-tolower.c: Likewise.
1321         * tests/unicase/test-u32-totitle.c: Likewise.
1322         * tests/unicase/test-u32-toupper.c: Likewise.
1323         * tests/unicase/test-ulc-casecmp.c: Likewise.
1324         * tests/unicase/test-ulc-casecoll.c: Likewise.
1325         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
1326         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
1327         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
1328         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
1329         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
1330         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
1331         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
1332         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
1333         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
1334         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
1335         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
1336         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
1337         * tests/unictype/test-bidi_byname.c: Likewise.
1338         * tests/unictype/test-bidi_name.c: Likewise.
1339         * tests/unictype/test-bidi_of.c: Likewise.
1340         * tests/unictype/test-bidi_test.c: Likewise.
1341         * tests/unictype/test-block_list.c: Likewise.
1342         * tests/unictype/test-block_of.c: Likewise.
1343         * tests/unictype/test-block_test.c: Likewise.
1344         * tests/unictype/test-categ_and.c: Likewise.
1345         * tests/unictype/test-categ_and_not.c: Likewise.
1346         * tests/unictype/test-categ_byname.c: Likewise.
1347         * tests/unictype/test-categ_name.c: Likewise.
1348         * tests/unictype/test-categ_none.c: Likewise.
1349         * tests/unictype/test-categ_of.c: Likewise.
1350         * tests/unictype/test-categ_or.c: Likewise.
1351         * tests/unictype/test-categ_test_withtable.c: Likewise.
1352         * tests/unictype/test-combining.c: Likewise.
1353         * tests/unictype/test-decdigit.c: Likewise.
1354         * tests/unictype/test-digit.c: Likewise.
1355         * tests/unictype/test-mirror.c: Likewise.
1356         * tests/unictype/test-numeric.c: Likewise.
1357         * tests/unictype/test-pr_byname.c: Likewise.
1358         * tests/unictype/test-pr_test.c: Likewise.
1359         * tests/unictype/test-predicate-part1.h: Likewise.
1360         * tests/unictype/test-scripts.c: Likewise.
1361         * tests/unictype/test-sy_c_ident.c: Likewise.
1362         * tests/unictype/test-sy_java_ident.c: Likewise.
1363         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
1364         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
1365         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
1366         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
1367         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
1368         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
1369         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
1370         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
1371         * tests/uninorm/test-canonical-decomposition.c: Likewise.
1372         * tests/uninorm/test-compat-decomposition.c: Likewise.
1373         * tests/uninorm/test-composition.c: Likewise.
1374         * tests/uninorm/test-decomposing-form.c: Likewise.
1375         * tests/uninorm/test-decomposition.c: Likewise.
1376         * tests/uninorm/test-u8-nfc.c: Likewise.
1377         * tests/uninorm/test-u8-nfd.c: Likewise.
1378         * tests/uninorm/test-u8-nfkc.c: Likewise.
1379         * tests/uninorm/test-u8-nfkd.c: Likewise.
1380         * tests/uninorm/test-u8-normcmp.c: Likewise.
1381         * tests/uninorm/test-u8-normcoll.c: Likewise.
1382         * tests/uninorm/test-u16-nfc.c: Likewise.
1383         * tests/uninorm/test-u16-nfd.c: Likewise.
1384         * tests/uninorm/test-u16-nfkc.c: Likewise.
1385         * tests/uninorm/test-u16-nfkd.c: Likewise.
1386         * tests/uninorm/test-u16-normcmp.c: Likewise.
1387         * tests/uninorm/test-u16-normcoll.c: Likewise.
1388         * tests/uninorm/test-u32-nfc.c: Likewise.
1389         * tests/uninorm/test-u32-nfd.c: Likewise.
1390         * tests/uninorm/test-u32-nfkc.c: Likewise.
1391         * tests/uninorm/test-u32-nfkd.c: Likewise.
1392         * tests/uninorm/test-u32-normalize-big.c: Likewise.
1393         * tests/uninorm/test-u32-normcmp.c: Likewise.
1394         * tests/uninorm/test-u32-normcoll.c: Likewise.
1395         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
1396         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
1397         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
1398         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
1399         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
1400         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
1401         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
1402         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
1403         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
1404         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
1405         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
1406         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
1407         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
1408         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
1409         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
1410         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
1411         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
1412         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
1413         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
1414         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
1415         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
1416         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
1417         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
1418         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
1419         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
1420         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
1421         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
1422         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
1423         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
1424         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
1425         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
1426         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
1427         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
1428         * tests/uniwidth/test-u8-strwidth.c: Likewise.
1429         * tests/uniwidth/test-u8-width.c: Likewise.
1430         * tests/uniwidth/test-u16-strwidth.c: Likewise.
1431         * tests/uniwidth/test-u16-width.c: Likewise.
1432         * tests/uniwidth/test-u32-strwidth.c: Likewise.
1433         * tests/uniwidth/test-u32-width.c: Likewise.
1434         * tests/uniwidth/test-uc_width.c: Likewise.
1435         * tests/uniwidth/test-uc_width2.c: Likewise.
1436         * modules/acl-tests (Files): Add tests/macros.h.
1437         * modules/areadlink-tests (Files): Likewise.
1438         * modules/areadlink-with-size-tests (Files): Likewise.
1439         * modules/areadlinkat-tests (Files): Likewise.
1440         * modules/areadlinkat-with-size-tests (Files): Likewise.
1441         * modules/argmatch-tests (Files): Likewise.
1442         * modules/argv-iter-tests (Files): Likewise.
1443         * modules/array-list-tests (Files): Likewise.
1444         * modules/array-mergesort-tests (Files): Likewise.
1445         * modules/array-oset-tests (Files): Likewise.
1446         * modules/avltree-list-tests (Files): Likewise.
1447         * modules/avltree-oset-tests (Files): Likewise.
1448         * modules/avltreehash-list-tests (Files): Likewise.
1449         * modules/base64-tests (Files): Likewise.
1450         * modules/binary-io-tests (Files): Likewise.
1451         * modules/bitrotate-tests (Files): Likewise.
1452         * modules/btowc-tests (Files): Likewise.
1453         * modules/byteswap-tests (Files): Likewise.
1454         * modules/c-ctype-tests (Files): Likewise.
1455         * modules/c-stack-tests (Files): Likewise.
1456         * modules/c-strcase-tests (Files): Likewise.
1457         * modules/c-strcasestr-tests (Files): Likewise.
1458         * modules/c-strstr-tests (Files): Likewise.
1459         * modules/canonicalize-lgpl-tests (Files): Likewise.
1460         * modules/canonicalize-tests (Files): Likewise.
1461         * modules/carray-list-tests (Files): Likewise.
1462         * modules/ceilf-tests (Files): Likewise.
1463         * modules/ceill-tests (Files): Likewise.
1464         * modules/chown-tests (Files): Likewise.
1465         * modules/cloexec-tests (Files): Likewise.
1466         * modules/copy-file-tests (Files): Likewise.
1467         * modules/count-one-bits-tests (Files): Likewise.
1468         * modules/dprintf-posix-tests (Files): Likewise.
1469         * modules/dup2-tests (Files): Likewise.
1470         * modules/dup3-tests (Files): Likewise.
1471         * modules/duplocale-tests (Files): Likewise.
1472         * modules/fbufmode-tests (Files): Likewise.
1473         * modules/fchdir-tests (Files): Likewise.
1474         * modules/fcntl-safer-tests (Files): Likewise.
1475         * modules/fcntl-tests (Files): Likewise.
1476         * modules/fdopendir-tests (Files): Likewise.
1477         * modules/fdutimensat-tests (Files): Likewise.
1478         * modules/fflush-tests (Files): Likewise.
1479         * modules/filevercmp-tests (Files): Likewise.
1480         * modules/flock-tests (Files): Likewise.
1481         * modules/floorf-tests (Files): Likewise.
1482         * modules/floorl-tests (Files): Likewise.
1483         * modules/fnmatch-tests (Files): Likewise.
1484         * modules/fopen-safer-tests (Files): Likewise.
1485         * modules/fopen-tests (Files): Likewise.
1486         * modules/fpending-tests (Files): Likewise.
1487         * modules/fprintf-posix-tests (Files): Likewise.
1488         * modules/fpurge-tests (Files): Likewise.
1489         * modules/freadable-tests (Files): Likewise.
1490         * modules/freadahead-tests (Files): Likewise.
1491         * modules/freading-tests (Files): Likewise.
1492         * modules/freadptr-tests (Files): Likewise.
1493         * modules/freadseek-tests (Files): Likewise.
1494         * modules/freopen-tests (Files): Likewise.
1495         * modules/frexp-nolibm-tests (Files): Likewise.
1496         * modules/frexp-tests (Files): Likewise.
1497         * modules/frexpl-nolibm-tests (Files): Likewise.
1498         * modules/frexpl-tests (Files): Likewise.
1499         * modules/fseek-tests (Files): Likewise.
1500         * modules/fseeko-tests (Files): Likewise.
1501         * modules/fstrcmp-tests (Files): Likewise.
1502         * modules/fsync-tests (Files): Likewise.
1503         * modules/ftell-tests (Files): Likewise.
1504         * modules/ftello-tests (Files): Likewise.
1505         * modules/func-tests (Files): Likewise.
1506         * modules/futimens-tests (Files): Likewise.
1507         * modules/fwritable-tests (Files): Likewise.
1508         * modules/fwriting-tests (Files): Likewise.
1509         * modules/getcwd-tests (Files): Likewise.
1510         * modules/getdate-tests (Files): Likewise.
1511         * modules/getdelim-tests (Files): Likewise.
1512         * modules/getdtablesize-tests (Files): Likewise.
1513         * modules/getgroups-tests (Files): Likewise.
1514         * modules/getline-tests (Files): Likewise.
1515         * modules/getndelim2-tests (Files): Likewise.
1516         * modules/glob-tests (Files): Likewise.
1517         * modules/hash-tests (Files): Likewise.
1518         * modules/i-ring-tests (Files): Likewise.
1519         * modules/iconv-tests (Files): Likewise.
1520         * modules/iconv_open-utf-tests (Files): Likewise.
1521         * modules/idpriv-drop-tests (Files): Likewise.
1522         * modules/idpriv-droptemp-tests (Files): Likewise.
1523         * modules/inet_ntop-tests (Files): Likewise.
1524         * modules/inet_pton-tests (Files): Likewise.
1525         * modules/isblank-tests (Files): Likewise.
1526         * modules/isfinite-tests (Files): Likewise.
1527         * modules/isinf-tests (Files): Likewise.
1528         * modules/isnan-tests (Files): Likewise.
1529         * modules/isnand-nolibm-tests (Files): Likewise.
1530         * modules/isnand-tests (Files): Likewise.
1531         * modules/isnanf-nolibm-tests (Files): Likewise.
1532         * modules/isnanf-tests (Files): Likewise.
1533         * modules/isnanl-nolibm-tests (Files): Likewise.
1534         * modules/isnanl-tests (Files): Likewise.
1535         * modules/lchown-tests (Files): Likewise.
1536         * modules/ldexpl-tests (Files): Likewise.
1537         * modules/link-tests (Files): Likewise.
1538         * modules/linkat-tests (Files): Likewise.
1539         * modules/linked-list-tests (Files): Likewise.
1540         * modules/linkedhash-list-tests (Files): Likewise.
1541         * modules/localename-tests (Files): Likewise.
1542         * modules/lseek-tests (Files): Likewise.
1543         * modules/lstat-tests (Files): Likewise.
1544         * modules/mbmemcasecmp-tests (Files): Likewise.
1545         * modules/mbmemcasecoll-tests (Files): Likewise.
1546         * modules/mbrtowc-tests (Files): Likewise.
1547         * modules/mbscasecmp-tests (Files): Likewise.
1548         * modules/mbscasestr-tests (Files): Likewise.
1549         * modules/mbschr-tests (Files): Likewise.
1550         * modules/mbscspn-tests (Files): Likewise.
1551         * modules/mbsinit-tests (Files): Likewise.
1552         * modules/mbsncasecmp-tests (Files): Likewise.
1553         * modules/mbsnrtowcs-tests (Files): Likewise.
1554         * modules/mbspbrk-tests (Files): Likewise.
1555         * modules/mbspcasecmp-tests (Files): Likewise.
1556         * modules/mbsrchr-tests (Files): Likewise.
1557         * modules/mbsrtowcs-tests (Files): Likewise.
1558         * modules/mbsspn-tests (Files): Likewise.
1559         * modules/mbsstr-tests (Files): Likewise.
1560         * modules/memchr-tests (Files): Likewise.
1561         * modules/memchr2-tests (Files): Likewise.
1562         * modules/memcmp-tests (Files): Likewise.
1563         * modules/memmem-tests (Files): Likewise.
1564         * modules/memrchr-tests (Files): Likewise.
1565         * modules/mkdir-tests (Files): Likewise.
1566         * modules/mkfifo-tests (Files): Likewise.
1567         * modules/mkfifoat-tests (Files): Likewise.
1568         * modules/mknod-tests (Files): Likewise.
1569         * modules/nanosleep-tests (Files): Likewise.
1570         * modules/nl_langinfo-tests (Files): Likewise.
1571         * modules/obstack-printf-tests (Files): Likewise.
1572         * modules/open-tests (Files): Likewise.
1573         * modules/openat-tests (Files): Likewise.
1574         * modules/pipe-filter-gi-tests (Files): Likewise.
1575         * modules/pipe-filter-ii-tests (Files): Likewise.
1576         * modules/pipe2-tests (Files): Likewise.
1577         * modules/popen-safer-tests (Files): Likewise.
1578         * modules/popen-tests (Files): Likewise.
1579         * modules/posixtm-tests (Files): Likewise.
1580         * modules/pread-tests (Files): Likewise.
1581         * modules/printf-frexp-tests (Files): Likewise.
1582         * modules/printf-frexpl-tests (Files): Likewise.
1583         * modules/printf-posix-tests (Files): Likewise.
1584         * modules/priv-set-tests (Files): Likewise.
1585         * modules/quotearg-tests (Files): Likewise.
1586         * modules/random_r-tests (Files): Likewise.
1587         * modules/rawmemchr-tests (Files): Likewise.
1588         * modules/rbtree-list-tests (Files): Likewise.
1589         * modules/rbtree-oset-tests (Files): Likewise.
1590         * modules/rbtreehash-list-tests (Files): Likewise.
1591         * modules/readlink-tests (Files): Likewise.
1592         * modules/remove-tests (Files): Likewise.
1593         * modules/rename-tests (Files): Likewise.
1594         * modules/renameat-tests (Files): Likewise.
1595         * modules/rmdir-tests (Files): Likewise.
1596         * modules/round-tests (Files): Likewise.
1597         * modules/roundf-tests (Files): Likewise.
1598         * modules/roundl-tests (Files): Likewise.
1599         * modules/safe-alloc-tests (Files): Likewise.
1600         * modules/setenv-tests (Files): Likewise.
1601         * modules/sigaction-tests (Files): Likewise.
1602         * modules/signbit-tests (Files): Likewise.
1603         * modules/sleep-tests (Files): Likewise.
1604         * modules/snprintf-posix-tests (Files): Likewise.
1605         * modules/snprintf-tests (Files): Likewise.
1606         * modules/sprintf-posix-tests (Files): Likewise.
1607         * modules/stat-tests (Files): Likewise.
1608         * modules/stat-time-tests (Files): Likewise.
1609         * modules/strcasestr-tests (Files): Likewise.
1610         * modules/strchrnul-tests (Files): Likewise.
1611         * modules/strerror-tests (Files): Likewise.
1612         * modules/striconv-tests (Files): Likewise.
1613         * modules/striconveh-tests (Files): Likewise.
1614         * modules/striconveha-tests (Files): Likewise.
1615         * modules/strsignal-tests (Files): Likewise.
1616         * modules/strstr-tests (Files): Likewise.
1617         * modules/strtod-tests (Files): Likewise.
1618         * modules/strverscmp-tests (Files): Likewise.
1619         * modules/symlink-tests (Files): Likewise.
1620         * modules/symlinkat-tests (Files): Likewise.
1621         * modules/trunc-tests (Files): Likewise.
1622         * modules/truncf-tests (Files): Likewise.
1623         * modules/truncl-tests (Files): Likewise.
1624         * modules/uname-tests (Files): Likewise.
1625         * modules/unicase/cased-tests (Files): Likewise.
1626         * modules/unicase/ignorable-tests (Files): Likewise.
1627         * modules/unicase/locale-language-tests (Files): Likewise.
1628         * modules/unicase/tolower-tests (Files): Likewise.
1629         * modules/unicase/totitle-tests (Files): Likewise.
1630         * modules/unicase/toupper-tests (Files): Likewise.
1631         * modules/unicase/u8-casecmp-tests (Files): Likewise.
1632         * modules/unicase/u8-casecoll-tests (Files): Likewise.
1633         * modules/unicase/u8-casefold-tests (Files): Likewise.
1634         * modules/unicase/u8-is-cased-tests (Files): Likewise.
1635         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
1636         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
1637         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
1638         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
1639         * modules/unicase/u8-tolower-tests (Files): Likewise.
1640         * modules/unicase/u8-totitle-tests (Files): Likewise.
1641         * modules/unicase/u8-toupper-tests (Files): Likewise.
1642         * modules/unicase/u16-casecmp-tests (Files): Likewise.
1643         * modules/unicase/u16-casecoll-tests (Files): Likewise.
1644         * modules/unicase/u16-casefold-tests (Files): Likewise.
1645         * modules/unicase/u16-is-cased-tests (Files): Likewise.
1646         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
1647         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
1648         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
1649         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
1650         * modules/unicase/u16-tolower-tests (Files): Likewise.
1651         * modules/unicase/u16-totitle-tests (Files): Likewise.
1652         * modules/unicase/u16-toupper-tests (Files): Likewise.
1653         * modules/unicase/u32-casecmp-tests (Files): Likewise.
1654         * modules/unicase/u32-casecoll-tests (Files): Likewise.
1655         * modules/unicase/u32-casefold-tests (Files): Likewise.
1656         * modules/unicase/u32-is-cased-tests (Files): Likewise.
1657         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
1658         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
1659         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
1660         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
1661         * modules/unicase/u32-tolower-tests (Files): Likewise.
1662         * modules/unicase/u32-totitle-tests (Files): Likewise.
1663         * modules/unicase/u32-toupper-tests (Files): Likewise.
1664         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
1665         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
1666         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
1667         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
1668         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
1669         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
1670         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
1671         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
1672         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
1673         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
1674         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
1675         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
1676         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
1677         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
1678         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
1679         * modules/unictype/bidicategory-name-tests (Files): Likewise.
1680         * modules/unictype/bidicategory-of-tests (Files): Likewise.
1681         * modules/unictype/bidicategory-test-tests (Files): Likewise.
1682         * modules/unictype/block-list-tests (Files): Likewise.
1683         * modules/unictype/block-of-tests (Files): Likewise.
1684         * modules/unictype/block-test-tests (Files): Likewise.
1685         * modules/unictype/category-C-tests (Files): Likewise.
1686         * modules/unictype/category-Cc-tests (Files): Likewise.
1687         * modules/unictype/category-Cf-tests (Files): Likewise.
1688         * modules/unictype/category-Cn-tests (Files): Likewise.
1689         * modules/unictype/category-Co-tests (Files): Likewise.
1690         * modules/unictype/category-Cs-tests (Files): Likewise.
1691         * modules/unictype/category-L-tests (Files): Likewise.
1692         * modules/unictype/category-Ll-tests (Files): Likewise.
1693         * modules/unictype/category-Lm-tests (Files): Likewise.
1694         * modules/unictype/category-Lo-tests (Files): Likewise.
1695         * modules/unictype/category-Lt-tests (Files): Likewise.
1696         * modules/unictype/category-Lu-tests (Files): Likewise.
1697         * modules/unictype/category-M-tests (Files): Likewise.
1698         * modules/unictype/category-Mc-tests (Files): Likewise.
1699         * modules/unictype/category-Me-tests (Files): Likewise.
1700         * modules/unictype/category-Mn-tests (Files): Likewise.
1701         * modules/unictype/category-N-tests (Files): Likewise.
1702         * modules/unictype/category-Nd-tests (Files): Likewise.
1703         * modules/unictype/category-Nl-tests (Files): Likewise.
1704         * modules/unictype/category-No-tests (Files): Likewise.
1705         * modules/unictype/category-P-tests (Files): Likewise.
1706         * modules/unictype/category-Pc-tests (Files): Likewise.
1707         * modules/unictype/category-Pd-tests (Files): Likewise.
1708         * modules/unictype/category-Pe-tests (Files): Likewise.
1709         * modules/unictype/category-Pf-tests (Files): Likewise.
1710         * modules/unictype/category-Pi-tests (Files): Likewise.
1711         * modules/unictype/category-Po-tests (Files): Likewise.
1712         * modules/unictype/category-Ps-tests (Files): Likewise.
1713         * modules/unictype/category-S-tests (Files): Likewise.
1714         * modules/unictype/category-Sc-tests (Files): Likewise.
1715         * modules/unictype/category-Sk-tests (Files): Likewise.
1716         * modules/unictype/category-Sm-tests (Files): Likewise.
1717         * modules/unictype/category-So-tests (Files): Likewise.
1718         * modules/unictype/category-Z-tests (Files): Likewise.
1719         * modules/unictype/category-Zl-tests (Files): Likewise.
1720         * modules/unictype/category-Zp-tests (Files): Likewise.
1721         * modules/unictype/category-Zs-tests (Files): Likewise.
1722         * modules/unictype/category-and-not-tests (Files): Likewise.
1723         * modules/unictype/category-and-tests (Files): Likewise.
1724         * modules/unictype/category-byname-tests (Files): Likewise.
1725         * modules/unictype/category-name-tests (Files): Likewise.
1726         * modules/unictype/category-none-tests (Files): Likewise.
1727         * modules/unictype/category-of-tests (Files): Likewise.
1728         * modules/unictype/category-or-tests (Files): Likewise.
1729         * modules/unictype/category-test-withtable-tests (Files): Likewise.
1730         * modules/unictype/combining-class-tests (Files): Likewise.
1731         * modules/unictype/ctype-alnum-tests (Files): Likewise.
1732         * modules/unictype/ctype-alpha-tests (Files): Likewise.
1733         * modules/unictype/ctype-blank-tests (Files): Likewise.
1734         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
1735         * modules/unictype/ctype-digit-tests (Files): Likewise.
1736         * modules/unictype/ctype-graph-tests (Files): Likewise.
1737         * modules/unictype/ctype-lower-tests (Files): Likewise.
1738         * modules/unictype/ctype-print-tests (Files): Likewise.
1739         * modules/unictype/ctype-punct-tests (Files): Likewise.
1740         * modules/unictype/ctype-space-tests (Files): Likewise.
1741         * modules/unictype/ctype-upper-tests (Files): Likewise.
1742         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
1743         * modules/unictype/decimal-digit-tests (Files): Likewise.
1744         * modules/unictype/digit-tests (Files): Likewise.
1745         * modules/unictype/mirror-tests (Files): Likewise.
1746         * modules/unictype/numeric-tests (Files): Likewise.
1747         * modules/unictype/property-alphabetic-tests (Files): Likewise.
1748         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
1749         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
1750         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
1751         Likewise.
1752         * modules/unictype/property-bidi-block-separator-tests (Files):
1753         Likewise.
1754         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
1755         Likewise.
1756         * modules/unictype/property-bidi-common-separator-tests (Files):
1757         Likewise.
1758         * modules/unictype/property-bidi-control-tests (Files): Likewise.
1759         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
1760         Likewise.
1761         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
1762         Likewise.
1763         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
1764         Likewise.
1765         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
1766         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
1767         Likewise.
1768         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
1769         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
1770         Likewise.
1771         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
1772         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
1773         * modules/unictype/property-bidi-segment-separator-tests (Files):
1774         Likewise.
1775         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
1776         * modules/unictype/property-byname-tests (Files): Likewise.
1777         * modules/unictype/property-combining-tests (Files): Likewise.
1778         * modules/unictype/property-composite-tests (Files): Likewise.
1779         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
1780         * modules/unictype/property-dash-tests (Files): Likewise.
1781         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
1782         * modules/unictype/property-default-ignorable-code-point-tests (Files):
1783         Likewise.
1784         * modules/unictype/property-deprecated-tests (Files): Likewise.
1785         * modules/unictype/property-diacritic-tests (Files): Likewise.
1786         * modules/unictype/property-extender-tests (Files): Likewise.
1787         * modules/unictype/property-format-control-tests (Files): Likewise.
1788         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
1789         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
1790         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
1791         * modules/unictype/property-hex-digit-tests (Files): Likewise.
1792         * modules/unictype/property-hyphen-tests (Files): Likewise.
1793         * modules/unictype/property-id-continue-tests (Files): Likewise.
1794         * modules/unictype/property-id-start-tests (Files): Likewise.
1795         * modules/unictype/property-ideographic-tests (Files): Likewise.
1796         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
1797         * modules/unictype/property-ids-trinary-operator-tests (Files):
1798         Likewise.
1799         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
1800         * modules/unictype/property-iso-control-tests (Files): Likewise.
1801         * modules/unictype/property-join-control-tests (Files): Likewise.
1802         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
1803         * modules/unictype/property-line-separator-tests (Files): Likewise.
1804         * modules/unictype/property-logical-order-exception-tests (Files):
1805         Likewise.
1806         * modules/unictype/property-lowercase-tests (Files): Likewise.
1807         * modules/unictype/property-math-tests (Files): Likewise.
1808         * modules/unictype/property-non-break-tests (Files): Likewise.
1809         * modules/unictype/property-not-a-character-tests (Files): Likewise.
1810         * modules/unictype/property-numeric-tests (Files): Likewise.
1811         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
1812         * modules/unictype/property-other-default-ignorable-code-point-tests
1813         (Files): Likewise.
1814         * modules/unictype/property-other-grapheme-extend-tests (Files):
1815         Likewise.
1816         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
1817         * modules/unictype/property-other-id-start-tests (Files): Likewise.
1818         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
1819         * modules/unictype/property-other-math-tests (Files): Likewise.
1820         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
1821         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
1822         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
1823         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
1824         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
1825         * modules/unictype/property-private-use-tests (Files): Likewise.
1826         * modules/unictype/property-punctuation-tests (Files): Likewise.
1827         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
1828         * modules/unictype/property-radical-tests (Files): Likewise.
1829         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
1830         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
1831         * modules/unictype/property-space-tests (Files): Likewise.
1832         * modules/unictype/property-terminal-punctuation-tests (Files):
1833         Likewise.
1834         * modules/unictype/property-test-tests (Files): Likewise.
1835         * modules/unictype/property-titlecase-tests (Files): Likewise.
1836         * modules/unictype/property-unassigned-code-value-tests (Files):
1837         Likewise.
1838         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
1839         * modules/unictype/property-uppercase-tests (Files): Likewise.
1840         * modules/unictype/property-variation-selector-tests (Files): Likewise.
1841         * modules/unictype/property-white-space-tests (Files): Likewise.
1842         * modules/unictype/property-xid-continue-tests (Files): Likewise.
1843         * modules/unictype/property-xid-start-tests (Files): Likewise.
1844         * modules/unictype/property-zero-width-tests (Files): Likewise.
1845         * modules/unictype/scripts-tests (Files): Likewise.
1846         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
1847         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
1848         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
1849         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
1850         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
1851         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
1852         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
1853         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
1854         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
1855         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
1856         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
1857         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
1858         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
1859         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
1860         * modules/uninorm/composition-tests (Files): Likewise.
1861         * modules/uninorm/decomposing-form-tests (Files): Likewise.
1862         * modules/uninorm/decomposition-tests (Files): Likewise.
1863         * modules/uninorm/filter-tests (Files): Likewise.
1864         * modules/uninorm/nfc-tests (Files): Likewise.
1865         * modules/uninorm/nfd-tests (Files): Likewise.
1866         * modules/uninorm/nfkc-tests (Files): Likewise.
1867         * modules/uninorm/nfkd-tests (Files): Likewise.
1868         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
1869         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
1870         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
1871         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
1872         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
1873         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
1874         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
1875         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
1876         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
1877         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
1878         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
1879         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
1880         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
1881         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
1882         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
1883         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
1884         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
1885         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
1886         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
1887         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
1888         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
1889         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
1890         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
1891         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
1892         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
1893         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
1894         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
1895         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
1896         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
1897         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
1898         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
1899         * modules/uniwidth/u8-width-tests (Files): Likewise.
1900         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
1901         * modules/uniwidth/u16-width-tests (Files): Likewise.
1902         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
1903         * modules/uniwidth/u32-width-tests (Files): Likewise.
1904         * modules/uniwidth/width-tests (Files): Likewise.
1905         * modules/unlink-tests (Files): Likewise.
1906         * modules/unsetenv-tests (Files): Likewise.
1907         * modules/usleep-tests (Files): Likewise.
1908         * modules/utimens-tests (Files): Likewise.
1909         * modules/utimensat-tests (Files): Likewise.
1910         * modules/vasnprintf-posix-tests (Files): Likewise.
1911         * modules/vasnprintf-tests (Files): Likewise.
1912         * modules/vasprintf-posix-tests (Files): Likewise.
1913         * modules/vasprintf-tests (Files): Likewise.
1914         * modules/vdprintf-posix-tests (Files): Likewise.
1915         * modules/vfprintf-posix-tests (Files): Likewise.
1916         * modules/vprintf-posix-tests (Files): Likewise.
1917         * modules/vsnprintf-posix-tests (Files): Likewise.
1918         * modules/vsnprintf-tests (Files): Likewise.
1919         * modules/vsprintf-posix-tests (Files): Likewise.
1920         * modules/wcrtomb-tests (Files): Likewise.
1921         * modules/wcsnrtombs-tests (Files): Likewise.
1922         * modules/wcsrtombs-tests (Files): Likewise.
1923         * modules/wctype-tests (Files): Likewise.
1924         * modules/wcwidth-tests (Files): Likewise.
1925         * modules/xmemdup0-tests (Files): Likewise.
1926         * modules/xprintf-posix-tests (Files): Likewise.
1927         * modules/xvasprintf-tests (Files): Likewise.
1928
1929 2009-12-24  Eric Blake  <ebb9@byu.net>
1930
1931         test-nanosleep: fix typo
1932         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
1933         patch.
1934         Reported by Bruno Haible.
1935
1936 2009-12-24  Bruno Haible  <bruno@clisp.org>
1937
1938         Reduce namespace pollution on glibc systems.
1939         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
1940         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
1941         systems.
1942         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
1943         <getopt.h> on glibc systems.
1944         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
1945         systems.
1946         * lib/fcntl.c: Include <unistd.h> here instead.
1947
1948 2009-12-24  Bruno Haible  <bruno@clisp.org>
1949
1950         * lib/stdlib.in.h (includes): Fix typo in today's commit.
1951
1952 2009-12-24  Eric Blake  <ebb9@byu.net>
1953
1954         tests: add signature checks
1955         * tests/signature.h (SIGNATURE_CHECK): New file.
1956         * modules/atexit-tests (Files): Use it.
1957         * modules/btowc-tests (Files): Likewise.
1958         * modules/canonicalize-lgpl-tests (Files): Likewise.
1959         * modules/ceilf-tests (Files): Likewise.
1960         * modules/ceill-tests (Files): Likewise.
1961         * modules/chown-tests (Files): Likewise.
1962         * modules/dprintf-posix-tests (Files): Likewise.
1963         * modules/dup2-tests (Files): Likewise.
1964         * modules/dup3-tests (Files): Likewise.
1965         * modules/duplocale-tests (Files): Likewise.
1966         * modules/fchdir-tests (Files): Likewise.
1967         * modules/fcntl-tests (Files): Likewise.
1968         * modules/fdopendir-tests (Files): Likewise.
1969         * modules/fflush-tests (Files): Likewise.
1970         * modules/flock-tests (Files): Likewise.
1971         * modules/floorf-tests (Files): Likewise.
1972         * modules/floorl-tests (Files): Likewise.
1973         * modules/fnmatch-tests (Files): Likewise.
1974         * modules/fopen-tests (Files): Likewise.
1975         * modules/fprintf-posix-tests (Files): Likewise.
1976         * modules/freopen-tests (Files): Likewise.
1977         * modules/frexp-nolibm-tests (Files): Likewise.
1978         * modules/frexp-tests (Files): Likewise.
1979         * modules/frexpl-nolibm-tests (Files): Likewise.
1980         * modules/frexpl-tests (Files): Likewise.
1981         * modules/fseek-tests (Files): Likewise.
1982         * modules/fseeko-tests (Files): Likewise.
1983         * modules/fsync-tests (Files): Likewise.
1984         * modules/ftell-tests (Files): Likewise.
1985         * modules/ftello-tests (Files): Likewise.
1986         * modules/futimens-tests (Files): Likewise.
1987         * modules/getaddrinfo-tests (Files): Likewise.
1988         * modules/getcwd-tests (Files): Likewise.
1989         * modules/getdelim-tests (Files): Likewise.
1990         * modules/getdtablesize-tests (Files): Likewise.
1991         * modules/getgroups-tests (Files): Likewise.
1992         * modules/gethostname-tests (Files): Likewise.
1993         * modules/getline-tests (Files): Likewise.
1994         * modules/getopt-posix-tests (Files): Likewise.
1995         * modules/gettimeofday-tests (Files): Likewise.
1996         * modules/glob-tests (Files): Likewise.
1997         * modules/iconv-tests (Files): Likewise.
1998         * modules/inet_ntop-tests (Files): Likewise.
1999         * modules/inet_pton-tests (Files): Likewise.
2000         * modules/isblank-tests (Files): Likewise.
2001         * modules/lchown-tests (Files): Likewise.
2002         * modules/ldexpl-tests (Files): Likewise.
2003         * modules/link-tests (Files): Likewise.
2004         * modules/linkat-tests (Files): Likewise.
2005         * modules/lseek-tests (Files): Likewise.
2006         * modules/lstat-tests (Files): Likewise.
2007         * modules/mbrtowc-tests (Files): Likewise.
2008         * modules/mbsinit-tests (Files): Likewise.
2009         * modules/mbsnrtowcs-tests (Files): Likewise.
2010         * modules/mbsrtowcs-tests (Files): Likewise.
2011         * modules/memchr-tests (Files): Likewise.
2012         * modules/memcmp-tests (Files): Likewise.
2013         * modules/memmem-tests (Files): Likewise.
2014         * modules/memrchr-tests (Files): Likewise.
2015         * modules/mkdir-tests (Files): Likewise.
2016         * modules/mkfifo-tests (Files): Likewise.
2017         * modules/mkfifoat-tests (Files): Likewise.
2018         * modules/mknod-tests (Files): Likewise.
2019         * modules/nanosleep-tests (Files): Likewise.
2020         * modules/nl_langinfo-tests (Files): Likewise.
2021         * modules/obstack-printf-tests (Files): Likewise.
2022         * modules/open-tests (Files): Likewise.
2023         * modules/openat-tests (Files): Likewise.
2024         * modules/perror-tests (Files): Likewise.
2025         * modules/pipe2-tests (Files): Likewise.
2026         * modules/poll-tests (Files): Likewise.
2027         * modules/popen-tests (Files): Likewise.
2028         * modules/posix_spawn-tests (Files): Likewise.
2029         * modules/posix_spawnp-tests (Files): Likewise.
2030         * modules/pread-tests (Files): Likewise.
2031         * modules/printf-posix-tests (Files): Likewise.
2032         * modules/pty-tests (Files): Likewise.
2033         * modules/random_r-tests (Files): Likewise.
2034         * modules/rawmemchr-tests (Files): Likewise.
2035         * modules/readlink-tests (Files): Likewise.
2036         * modules/remove-tests (Files): Likewise.
2037         * modules/rename-tests (Files): Likewise.
2038         * modules/renameat-tests (Files): Likewise.
2039         * modules/rmdir-tests (Files): Likewise.
2040         * modules/round-tests (Files): Likewise.
2041         * modules/roundf-tests (Files): Likewise.
2042         * modules/roundl-tests (Files): Likewise.
2043         * modules/select-tests (Files): Likewise.
2044         * modules/setenv-tests (Files): Likewise.
2045         * modules/sigaction-tests (Files): Likewise.
2046         * modules/sleep-tests (Files): Likewise.
2047         * modules/snprintf-posix-tests (Files): Likewise.
2048         * modules/snprintf-tests (Files): Likewise.
2049         * modules/sprintf-posix-tests (Files): Likewise.
2050         * modules/stat-tests (Files): Likewise.
2051         * modules/strcasestr-tests (Files): Likewise.
2052         * modules/strchrnul-tests (Files): Likewise.
2053         * modules/strerror-tests (Files): Likewise.
2054         * modules/strsignal-tests (Files): Likewise.
2055         * modules/strstr-tests (Files): Likewise.
2056         * modules/strtod-tests (Files): Likewise.
2057         * modules/strverscmp-tests (Files): Likewise.
2058         * modules/symlink-tests (Files): Likewise.
2059         * modules/symlinkat-tests (Files): Likewise.
2060         * modules/times-tests (Files): Likewise.
2061         * modules/trunc-tests (Files): Likewise.
2062         * modules/truncf-tests (Files): Likewise.
2063         * modules/truncl-tests (Files): Likewise.
2064         * modules/tsearch-tests (Files): Likewise.
2065         * modules/uname-tests (Files): Likewise.
2066         * modules/unlink-tests (Files): Likewise.
2067         * modules/unsetenv-tests (Files): Likewise.
2068         * modules/usleep-tests (Files): Likewise.
2069         * modules/utimensat-tests (Files): Likewise.
2070         * modules/vasprintf-tests (Files): Likewise.
2071         * modules/vdprintf-posix-tests (Files): Likewise.
2072         * modules/vfprintf-posix-tests (Files): Likewise.
2073         * modules/vprintf-posix-tests (Files): Likewise.
2074         * modules/vsnprintf-posix-tests (Files): Likewise.
2075         * modules/vsnprintf-tests (Files): Likewise.
2076         * modules/vsprintf-posix-tests (Files): Likewise.
2077         * modules/wcrtomb-tests (Files): Likewise.
2078         * modules/wcsnrtombs-tests (Files): Likewise.
2079         * modules/wcsrtombs-tests (Files): Likewise.
2080         * modules/wcwidth-tests (Files): Likewise.
2081         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
2082         * tests/test-isinf.c (isinf): Likewise.
2083         * tests/test-isnan.c (isnan): Likewise.
2084         * tests/test-signbit.c (signbit): Likewise.
2085         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
2086         declaration, either as macro or with correct signature.
2087         (select): Ensure function under test is declared with correct
2088         signature in correct header.
2089         * tests/test-atexit.c (atexit): Likewise.
2090         * tests/test-btowc.c (btowc): Likewise.
2091         * tests/test-canonicalize-lgpl.c (realpath)
2092         (canonicalize_file_name): Likewise.
2093         * tests/test-ceilf1.c (ceilf): Likewise.
2094         * tests/test-ceill.c (ceill): Likewise.
2095         * tests/test-chown.c (chown): Likewise.
2096         * tests/test-dprintf-posix.c (dprintf): Likewise.
2097         * tests/test-dup2.c (dup2): Likewise.
2098         * tests/test-dup3.c (dup3): Likewise.
2099         * tests/test-duplocale.c (duplocale): Likewise.
2100         * tests/test-fchdir.c (fchdir): Likewise.
2101         * tests/test-fchownat.c (fchownat): Likewise.
2102         * tests/test-fcntl.c (fcntl): Likewise.
2103         * tests/test-fdopendir.c (fdopendir): Likewise.
2104         * tests/test-fflush.c (fflush): Likewise.
2105         * tests/test-flock.c (flock): Likewise.
2106         * tests/test-floorf1.c (floorf): Likewise.
2107         * tests/test-floorl.c (floorl): Likewise.
2108         * tests/test-fnmatch.c (fnmatch): Likewise.
2109         * tests/test-fopen.c (fopen): Likewise.
2110         * tests/test-fprintf-posix.c (fprintf): Likewise.
2111         * tests/test-freopen.c (freopen): Likewise.
2112         * tests/test-frexp.c (frexp): Likewise.
2113         * tests/test-frexpl.c (frexpl): Likewise.
2114         * tests/test-fseek.c (fseek): Likewise.
2115         * tests/test-fseeko.c (fseeko): Likewise.
2116         * tests/test-fstatat.c (fstatat): Likewise.
2117         * tests/test-fsync.c (fsync): Likewise.
2118         * tests/test-ftell.c (ftell): Likewise.
2119         * tests/test-ftello.c (ftello): Likewise.
2120         * tests/test-futimens.c (futimens): Likewise.
2121         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
2122         (gai_strerror): Likewise.
2123         * tests/test-getcwd.c (getcwd): Likewise.
2124         * tests/test-getdelim.c (getdelim): Likewise.
2125         * tests/test-getdtablesize.c (getdtablesize): Likewise.
2126         * tests/test-getgroups.c (getgroups): Likewise.
2127         * tests/test-gethostname.c (gethostname): Likewise.
2128         * tests/test-getline.c (getline): Likewise.
2129         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
2130         Likewise.
2131         * tests/test-gettimeofday.c (gettimeofday): Likewise.
2132         * tests/test-glob.c (glob, globfree): Likewise.
2133         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
2134         * tests/test-inet_ntop.c (inet_ntop): Likewise.
2135         * tests/test-inet_pton.c (inet_pton): Likewise.
2136         * tests/test-isblank.c (isblank): Likewise.
2137         * tests/test-lchown.c (lchown): Likewise.
2138         * tests/test-ldexpl.c (ldexpl): Likewise.
2139         * tests/test-link.c (link): Likewise.
2140         * tests/test-linkat.c (linkat): Likewise.
2141         * tests/test-lseek.c (lseek): Likewise.
2142         * tests/test-lstat.c (lstat): Likewise.
2143         * tests/test-mbrtowc.c (mbrtowc): Likewise.
2144         * tests/test-mbsinit.c (mbsinit): Likewise.
2145         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
2146         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
2147         * tests/test-memchr.c (memchr): Likewise.
2148         * tests/test-memcmp.c (memcmp): Likewise.
2149         * tests/test-memmem.c (memmem): Likewise.
2150         * tests/test-memrchr.c (memrchr): Likewise.
2151         * tests/test-mkdir.c (mkdir): Likewise.
2152         * tests/test-mkdirat.c (mkdirat): Likewise.
2153         * tests/test-mkfifo.c (mkfifo): Likewise.
2154         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
2155         * tests/test-mknod.c (mknod): Likewise.
2156         * tests/test-nanosleep.c (nanosleep): Likewise.
2157         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
2158         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
2159         Likewise.
2160         * tests/test-open.c (open): Likewise.
2161         * tests/test-openat.c (openat): Likewise.
2162         * tests/test-perror.c (perror): Likewise.
2163         * tests/test-pipe2.c (pipe2): Likewise.
2164         * tests/test-poll.c (poll): Likewise.
2165         * tests/test-popen.c (popen, pclose): Likewise.
2166         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
2167         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
2168         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
2169         (posix_spawn_file_actions_destroy)
2170         (posix_spawn_file_actions_addclose)
2171         (posix_spawn_file_actions_addopen)
2172         (posix_spawn_file_actions_adddup2): Likewise.
2173         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
2174         * tests/test-pread.c (pread): Likewise.
2175         * tests/test-printf-posix.c (printf): Likewise.
2176         * tests/test-pty.c (openpty, forkpty): Likewise.
2177         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
2178         (random_r): Likewise.
2179         * tests/test-rawmemchr.c (rawmemchr): Likewise.
2180         * tests/test-readlink.c (readlink): Likewise.
2181         * tests/test-remove.c (remove): Likewise.
2182         * tests/test-rename.c (rename): Likewise.
2183         * tests/test-renameat.c (renameat): Likewise.
2184         * tests/test-rmdir.c (rmdir): Likewise.
2185         * tests/test-round1.c (round): Likewise.
2186         * tests/test-roundf1.c (roundf): Likewise.
2187         * tests/test-roundl.c (roundl): Likewise.
2188         * tests/test-setenv.c (setenv): Likewise.
2189         * tests/test-sigaction.c (sigaction): Likewise.
2190         * tests/test-sleep.c (sleep): Likewise.
2191         * tests/test-snprintf.c (snprintf): Likewise.
2192         * tests/test-sprintf-posix.c (sprintf): Likewise.
2193         * tests/test-stat.c (stat): Likewise.
2194         * tests/test-stpncpy.c (stpncpy): Likewise.
2195         * tests/test-strcasestr.c (strcasestr): Likewise.
2196         * tests/test-strchrnul.c (strchrnul): Likewise.
2197         * tests/test-strerror.c (strerror): Likewise.
2198         * tests/test-strsignal.c (strsignal): Likewise.
2199         * tests/test-strstr.c (strstr): Likewise.
2200         * tests/test-strtod.c (strtod): Likewise.
2201         * tests/test-strverscmp.c (strverscmp): Likewise.
2202         * tests/test-symlink.c (symlink): Likewise.
2203         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
2204         * tests/test-times.c (times): Likewise.
2205         * tests/test-trunc1.c (trunc): Likewise.
2206         * tests/test-truncf1.c (truncf): Likewise.
2207         * tests/test-truncl.c (truncl): Likewise.
2208         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
2209         Likewise.
2210         * tests/test-uname.c (uname): Likewise.
2211         * tests/test-unlink.c (unlink): Likewise.
2212         * tests/test-unlinkat.c (unlinkat): Likewise.
2213         * tests/test-unsetenv.c (unsetenv): Likewise.
2214         * tests/test-usleep.c (usleep): Likewise.
2215         * tests/test-utimensat.c (utimensat): Likewise.
2216         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
2217         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
2218         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
2219         * tests/test-vprintf-posix.c (vprintf): Likewise.
2220         * tests/test-vsnprintf.c (vsnprintf): Likewise.
2221         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
2222         * tests/test-wcrtomb.c (wcrtomb): Likewise.
2223         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
2224         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
2225         * tests/test-wcwidth.c (wcwidth): Likewise.
2226
2227         build: pull in conditional headers during GNULIB_POSIXCHECK
2228         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
2229         definitions from any conditionally-included headers.
2230         * lib/stdlib.in.h (includes): Likewise.
2231         * lib/unistd.in.h (includes): Likewise.
2232
2233 2009-12-24  Bruno Haible  <bruno@clisp.org>
2234
2235         * tests/test-argv-iter.c: Include header file being tested immediately
2236         after config.h.
2237         * tests/test-base64.c: Likewise.
2238         * tests/test-flock.c: Likewise.
2239         * tests/test-fsync.c: Likewise.
2240         * tests/test-getdate.c: Likewise.
2241         * tests/test-getndelim2.c: Likewise.
2242         * tests/test-isfinite.c: Likewise.
2243         * tests/test-isinf.c: Likewise.
2244         * tests/test-strerror.c: Likewise.
2245         * tests/test-strsignal.c: Likewise.
2246
2247 2009-12-23  Eric Blake  <ebb9@byu.net>
2248
2249         unistd: work around cygwin bug
2250         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
2251         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
2252         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
2253
2254 2009-12-23  Bruno Haible  <bruno@clisp.org>
2255
2256         localename: More tests.
2257         * tests/test-localename.c (SIZEOF): New macro.
2258         (categories): New variable.
2259         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
2260         test_locale_name_default): Add test w.r.t. thread locale.
2261         (test_locale_name_thread): New function.
2262         (main): Invoke it.
2263
2264         localename: Make aware of thread locale.
2265         * lib/localename.h (gl_locale_name_thread): New declaration.
2266         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
2267         behaviour with respect to thread locale.
2268         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
2269         <langinfo.h>, glthread/lock.h.
2270         (SIZE_BITS): New macro.
2271         (string_hash): New function.
2272         (struct hash_node): New type.
2273         (HASH_TABLE_SIZE): New macro.
2274         (struniq_hash_table, struniq_lock): New variables.
2275         (struniq): New function.
2276         (gl_locale_name_thread): New function.
2277         (gl_locale_name): Invoke it.
2278         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
2279         * modules/localename (Depends-on): Add lock.
2280         Reported by Mike Gran <spk121@yahoo.com>.
2281
2282 2009-12-23  Eric Blake  <ebb9@byu.net>
2283
2284         va-args: new module
2285         * modules/va-args: New file.
2286         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
2287         * MODULES.html.sh (Core language properties): Mention it.
2288
2289         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
2290         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
2291         named alias for __attribute__((__unused__)).
2292         * lib/chown.c: Update client.
2293         * lib/fchmodat.c: Likewise.
2294         * lib/fts.c: Likewise.
2295         * lib/getdate.y: Likewise.
2296         * lib/getgroups.c: Likewise.
2297         * lib/getopt.c: Likewise.
2298         * lib/getugroups.c: Likewise.
2299         * lib/mkdir.c: Likewise.
2300         * lib/mkfifo.c: Likewise.
2301         * lib/mkfifoat.c: Likewise.
2302         * lib/mknod.c: Likewise.
2303         * lib/mknodat.c: Likewise.
2304         * lib/readlink.c: Likewise.
2305         * lib/se-context.in.h: Likewise.
2306         * lib/se-selinux.in.h: Likewise.
2307         * lib/sockets.c: Likewise.
2308         * lib/symlink.c: Likewise.
2309         * lib/symlinkat.c: Likewise.
2310         * lib/unicodeio.c: Likewise.
2311         * lib/unistr.h: Likewise.
2312         * tests/test-areadlink.c: Likewise.
2313         * tests/test-areadlinkat.c: Likewise.
2314         * tests/test-filenamecat.c: Likewise.
2315         * tests/test-fseeko.c: Likewise.
2316         * tests/test-ftello.c: Likewise.
2317         * tests/test-getdate.c: Likewise.
2318         * tests/test-getgroups.c: Likewise.
2319         * tests/test-gethostname.c: Likewise.
2320         * tests/test-quotearg.c: Likewise.
2321         * tests/test-version-etc.c: Likewise.
2322         * tests/test-xalloc-die.c: Likewise.
2323         * tests/test-xfprintf-posix.c: Likewise.
2324         * tests/test-xprintf-posix.c: Likewise.
2325         * tests/test-xvasprintf.c: Likewise.
2326
2327         tests: avoid compiler warnings
2328         * tests/test-fcntl.c (main): Delete unused parameters.
2329         * tests/test-freopen-safer.c (main): Likewise.
2330         * tests/test-xalloc-die.c (main): Mark unused parameters.
2331         * tests/test-fseeko.c (main): Likewise.
2332         * tests/test-ftello.c (main): Likewise.
2333         * tests/test-nanosleep.c (main): Avoid declaration warning.
2334         * tests/test-sleep.c (main): Likewise.
2335         * tests/test-unsetenv.c (main): Silence warning about string
2336         literal.
2337         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
2338
2339 2009-12-23  Bruno Haible  <bruno@clisp.org>
2340
2341         * tests/test-localename.c (test_locale_name): New function, extracted
2342         from main. Also test mixed situations.
2343         (test_locale_name_posix, test_locale_name_environ,
2344         test_locale_name_default): New functions.
2345         (main): Invoke them all.
2346         * modules/localename-tests (configure.ac): Test for newlocale.
2347
2348 2009-12-23  Bruno Haible  <bruno@clisp.org>
2349
2350         unistd: Ensure getcwd gets declared before being overridden.
2351         * lib/unistd.in.h: Conditionally include <io.h>.
2352
2353 2009-12-22  Bruno Haible  <bruno@clisp.org>
2354
2355         wchar: Diagnose broken combination of glibc and gcc versions and flags.
2356         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
2357         (gl_WCHAR_H): Invoke it.
2358         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
2359         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
2360         Reported by Karl Berry <karl@freefriends.org>.
2361
2362 2009-12-22  Eric Blake  <ebb9@byu.net>
2363
2364         math, unistd: avoid redundant includes
2365         * lib/math.in.h (isnan): No need to re-include <math.h>.
2366         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
2367
2368         getsubopt: work around cygwin bug
2369         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
2370         avoid conflicting with system getsubopt.
2371         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
2372         bug.
2373
2374         getopt: synchronize from glibc
2375         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
2376         parameter order.  Adjust all callers.
2377         (_getopt_internal_r, main): Adjust quoting in error messages.
2378         Drop considerations for outdated POSIX 1003.2 error message.
2379         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
2380         callers.
2381         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
2382
2383         test-getopt: test stderr behavior
2384         * modules/getopt-posix-tests (Depends-on): Add dup2.
2385         * tests/test-getopt.c (ASSERT): Avoid stderr.
2386         (main): Move stderr to a temporary file.
2387         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
2388         Instead, add parameter to inform caller if output occurred.
2389         (test_getopt): Adjust all existing tests to expect silence, and
2390         add new tests of leading ":".
2391         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
2392         glibc shortcomings with leading "-:" or "+:" in optstring.
2393         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
2394         Likewise.
2395         * doc/posix-functions/getopt.texi (getopt): Likewise.
2396
2397         test-getopt: enhance test
2398         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
2399         supports optind=0.
2400         * tests/test-getopt.c (OPTIND_MIN): Move...
2401         * tests/test-getopt.h (OPTIND_MIN): ...here.
2402         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
2403         Require that optind=0 works, since modern BSD supports it in
2404         addition to optreset, and since coreutils expects it.
2405         (test_getopt_long_only): New test.
2406         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
2407         glibc shortcomings with 'W;', and enforcement of optind=0.
2408         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
2409         Likewise.
2410
2411 2009-12-21  Bruno Haible  <bruno@clisp.org>
2412
2413         localename: Improvements for MacOS X and Cygwin.
2414         * lib/localename.h (gl_locale_name_environ): New declaration.
2415         * lib/localename.c (gl_locale_name_environ): New function, extracted from
2416         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
2417         (gl_locale_name_posix): Invoke it.
2418         (gl_locale_name_default): Add comments. Use Windows native API also on
2419         Cygwin.
2420
2421 2009-12-21  Bruno Haible  <bruno@clisp.org>
2422
2423         Update list of Win32 locale ids.
2424         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
2425         (LANG_SAMI): Renamed from LANG_SAAMI.
2426         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
2427         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
2428         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
2429         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
2430         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
2431         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
2432         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
2433         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
2434         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
2435         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
2436         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
2437         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
2438         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
2439         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
2440         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
2441         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
2442         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
2443         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
2444         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
2445         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
2446         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
2447         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
2448         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
2449         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
2450         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
2451         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
2452         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
2453         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
2454         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
2455         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
2456         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
2457         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
2458         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
2459         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
2460         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
2461         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
2462         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
2463         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
2464         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
2465         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
2466         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
2467         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
2468         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
2469         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
2470         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
2471         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
2472         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
2473         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
2474         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
2475         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
2476         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
2477         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
2478         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
2479         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
2480         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
2481         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
2482         Add more languages and countries for Sami, Sorbian. Add more countries
2483         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
2484         for Pashto. Change country for Syriac, Tswana.
2485
2486 2009-12-21  Eric Blake  <ebb9@byu.net>
2487
2488         test-utimens: avoid spurious failure
2489         * tests/test-chown.h (nap): Factor...
2490         * tests/nap.h: ...into new file.
2491         * tests/test-lchown.h (nap): Avoid duplication.
2492         * tests/test-utimens-common.h (nap): Use shared implementation,
2493         necessary on file systems with 1-second resolution.
2494         * modules/chown-tests (Files): Include new file.
2495         * modules/fdutimensat-tests (Files): Likewise.
2496         * modules/futimens-tests (Files): Likewise.
2497         * modules/lchown-tests (Files): Likewise.
2498         * modules/openat-tests (Files): Likewise.
2499         * modules/utimens-tests (Files): Likewise.
2500         * modules/utimensat-tests (Files): Likewise.
2501
2502 2009-12-19  Eric Blake  <ebb9@byu.net>
2503
2504         futimens, utimensat: work around Linux bug
2505         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
2506         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2507         * lib/utimensat.c (rpl_utimensat): Work around it.
2508         * lib/futimens.c (rpl_futimens): Adjust comment.
2509
2510         utimens: work around Linux ctime bug
2511         * lib/utimens.c (detect_ctime_bug): New helper function.
2512         (update_timespec): Differentiate between workaround needed for
2513         this bug vs. what is needed for systems that lack utimensat.
2514         (fdutimens, lutimens): Work around bug.
2515
2516         utimens: check for ctime update
2517         * tests/test-utimens-common.h (check_ctime): Define.
2518         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
2519         * tests/test-futimens.h (test_futimens): Likewise.
2520         * tests/test-lutimens.h (test_lutimens): Likewise.
2521         * doc/posix-functions/futimens.texi (futimens): Document the bug.
2522         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2523
2524 2009-12-19  Bruno Haible  <bruno@clisp.org>
2525
2526         dprintf-posix: Check against memory leak fixed on 2009-12-15.
2527         * tests/test-dprintf-posix2.sh: New file.
2528         * tests/test-dprintf-posix2.c: New file.
2529         * modules/dprintf-posix-tests (Files): Add them.
2530         (configure.ac): Check for getrlimit and setrlimit.
2531         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
2532
2533 2009-12-19  Bruno Haible  <bruno@clisp.org>
2534
2535         fprintf-posix: Check against memory leak fixed on 2009-12-15.
2536         * tests/test-fprintf-posix3.sh: New file.
2537         * tests/test-fprintf-posix3.c: New file.
2538         * modules/fprintf-posix-tests (Files): Add them.
2539         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
2540
2541 2009-12-19  Eric Blake  <ebb9@byu.net>
2542
2543         dirfd: fix prototype
2544         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
2545         * lib/dirfd.c (dirfd): Likewise.
2546
2547         canonicalize: reduce memory usage
2548         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
2549         allocation to size.
2550         Reported by Solar Designer <solar@openwall.com>.
2551
2552 2009-12-19  Bruno Haible  <bruno@clisp.org>
2553
2554         New module attribute 'Applicability'.
2555         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
2556         * gnulib-tool: New option --extract-applicability.
2557         (func_usage): Document it.
2558         (sed_extract_prog): Recognize it.
2559         (func_get_applicability): New function.
2560         (func_import): Generalize handling of 'link-warning' module.
2561         * modules/link-warning (Applicability): New section.
2562         * modules/arg-nonnull (Applicability): New section.
2563         Repoted by Simon Josefsson <simon@josefsson.org>.
2564
2565 2009-12-19  Bruno Haible  <bruno@clisp.org>
2566
2567         fflush: tweak
2568         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
2569         * lib/fseeko.c (rpl_fseeko): Likewise.
2570
2571 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
2572
2573         * lib/gl_list.h: Fix typo in comment.
2574
2575 2009-12-16  Eric Blake  <ebb9@byu.net>
2576
2577         fcntl: use to simplify other modules
2578         * modules/cloexec (Depends-on): Add fcntl.
2579         * modules/fchdir (Depends-on): Likewise.
2580         * modules/fd-safer-flag (Depends-on): Likewise.
2581         * modules/unistd-safer (Depends-on): Likewise.
2582         * modules/dup3 (configure.ac): Set module indicator.
2583         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
2584         missing.
2585         * lib/fchdir.c (_gl_register_dup): Fix comment.
2586         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
2587         * lib/dup-safer.c (dup_safer): Likewise.
2588         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
2589         * lib/dup3.c (dup3): Likewise.
2590         * tests/test-fchdir.c (main): Enhance test.
2591         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
2592
2593         fcntl: port portions of fcntl to mingw
2594         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
2595         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
2596         replacement for mingw.
2597         * modules/fcntl (Description): Update.
2598         (Depends-on): Add dup2.
2599         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
2600         * modules/fcntl-h (Makefile.am): Substitute it.
2601         * lib/fcntl.in.h (fcntl): Update declaration.
2602         (F_DUPFD, F_GETFD): New macros, when needed.
2603         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
2604         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
2605         * tests/test-fcntl.c (check_flags, main): Enhance test for items
2606         we now guarantee.
2607
2608         fcntl: work around cygwin bug in F_DUPFD
2609         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
2610         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
2611         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
2612         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
2613         * doc/posix-functions/fcntl.texi (fcntl): Document it.
2614
2615         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
2616         * modules/fcntl (Files): List new files.
2617         (configure.ac): Run a test.
2618         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
2619         * lib/fcntl.c (rpl_fcntl): Likewise.
2620         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
2621         (gl_FCNTL_H): Always replace fcntl.h.
2622         * modules/fcntl-h (Makefile.am): Substitute witnesses.
2623         * lib/fcntl.in.h (fcntl): Declare replacement.
2624         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
2625         needed, plus a witness.
2626         * doc/posix-functions/fcntl.texi (fcntl): Document this.
2627         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
2628         * tests/test-fcntl.c: New file.
2629         * modules/fcntl-tests: Likewise.
2630
2631         binary-io: avoid potential compilation warning
2632         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
2633         directives.
2634
2635         fflush: avoid compilation error on NetBSD
2636         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
2637         between off_t and fpos_t, since the latter is sometimes a struct.
2638         * lib/fseeko.c (rpl_fseeko): Likewise.
2639         Reported by Alexander Nasonov <alnsn@yandex.ru>.
2640
2641 2009-12-15  Eric Blake  <ebb9@byu.net>
2642
2643         fcntl-h, stdio, sys_ioctl: fix declarations
2644         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
2645         function must not take arguments.
2646         * lib/sys_ioctl.in.h (ioctl): Likewise.
2647         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
2648         (open): Add a link warning.
2649
2650 2009-12-15  Jim Meyering  <meyering@redhat.com>
2651
2652         areadlink, areadlink-with-size: relax license to LGPLv2+
2653         * modules/areadlink (License): Relax to LGPLv2+.
2654         * modules/areadlink-with-size (License): Likewise.
2655
2656 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
2657             Bruno Haible  <bruno@clisp.org>
2658
2659         *printf: Fix memory leak.
2660         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
2661         * lib/vfprintf.c (vfprintf): Likewise.
2662         * lib/dprintf.c (dprintf): Likewise.
2663         * lib/vdprintf.c (vdprintf): Likewise.
2664
2665 2009-12-14  Eric Blake  <ebb9@byu.net>
2666
2667         accept4: adjust module dependencies
2668         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
2669
2670         utimens: one more try at avoiding compiler warning
2671         * lib/utimens.c (lutimens): Lower scope of result.
2672
2673 2009-12-13  Bruno Haible  <bruno@clisp.org>
2674
2675         Move the malloc checking from module 'list' to new module 'xlist'.
2676         * modules/xlist: New file.
2677         * lib/gl_xlist.h: New file.
2678         * lib/gl_xlist.c: New file.
2679         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
2680         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
2681         gl_list_add_last, gl_list_add_before, gl_list_add_after,
2682         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
2683         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
2684         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
2685         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
2686         gl_sortedlist_nx_add): New declarations.
2687         (struct gl_list_implementation): Rename and change methods accordingly.
2688         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
2689         (gl_list_nx_create): Renamed from gl_list_create.
2690         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
2691         (gl_list_nx_set_at): Renamed from gl_list_set_at.
2692         (gl_list_nx_add_first): Renamed from gl_list_add_first.
2693         (gl_list_nx_add_last): Renamed from gl_list_add_last.
2694         (gl_list_nx_add_before): Renamed from gl_list_add_before.
2695         (gl_list_nx_add_after): Renamed from gl_list_add_after.
2696         (gl_list_nx_add_at): Renamed from gl_list_add_at.
2697         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
2698         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
2699         gl_list_create_empty.
2700         (gl_list_nx_create): Renamed from gl_list_create.
2701         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
2702         (gl_list_nx_set_at): Renamed from gl_list_set_at.
2703         (gl_list_nx_add_first): Renamed from gl_list_add_first.
2704         (gl_list_nx_add_last): Renamed from gl_list_add_last.
2705         (gl_list_nx_add_before): Renamed from gl_list_add_before.
2706         (gl_list_nx_add_after): Renamed from gl_list_add_after.
2707         (gl_list_nx_add_at): Renamed from gl_list_add_at.
2708         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
2709         * lib/gl_array_list.c: Don't include xalloc.h.
2710         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
2711         NULL upon out-of-memory.
2712         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
2713         out-of-memory.
2714         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
2715         Change return type to 'int'.
2716         (gl_array_nx_set_at): Renamed from gl_array_set_at.
2717         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
2718         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
2719         upon out-of-memory.
2720         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
2721         upon out-of-memory.
2722         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
2723         upon out-of-memory.
2724         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
2725         upon out-of-memory.
2726         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
2727         out-of-memory.
2728         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
2729         Update.
2730         (gl_array_list_implementation): Update.
2731         * lib/gl_carray_list.c: Don't include xalloc.h.
2732         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
2733         Return NULL upon out-of-memory.
2734         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
2735         out-of-memory.
2736         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
2737         Change return type to 'int'.
2738         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
2739         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
2740         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
2741         upon out-of-memory.
2742         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
2743         upon out-of-memory.
2744         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
2745         out-of-memory.
2746         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
2747         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
2748         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
2749         Update.
2750         (gl_carray_list_implementation): Update.
2751         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
2752         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
2753         gl_linked_create_empty. Return NULL upon out-of-memory.
2754         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
2755         out-of-memory.
2756         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
2757         Change return type to 'int'. Return -1 upon out-of-memory.
2758         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
2759         out-of-memory.
2760         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
2761         upon out-of-memory.
2762         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
2763         upon out-of-memory.
2764         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
2765         NULL upon out-of-memory.
2766         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
2767         upon out-of-memory.
2768         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
2769         out-of-memory.
2770         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
2771         Update.
2772         * lib/gl_linked_list.c: Don't include xalloc.h.
2773         (gl_linked_list_implementation): Update.
2774         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
2775         (add_to_bucket): Change return type to 'int'.
2776         (gl_linkedhash_list_implementation): Update.
2777         * lib/gl_anytree_list1.h (free_subtree): New function.
2778         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
2779         gl_tree_create_empty. Return NULL upon out-of-memory.
2780         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
2781         Change return type to 'int'. Return -1 upon out-of-memory.
2782         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
2783         out-of-memory.
2784         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
2785         (gl_tree_remove_node): New function, moved here from
2786         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
2787         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
2788         Update.
2789         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
2790         malloc, not xmalloc. Return NULL upon out-of-memory.
2791         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
2792         out-of-memory.
2793         (gl_tree_remove_node_from_tree): New function, extracted from
2794         gl_tree_remove_node.
2795         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
2796         upon out-of-memory.
2797         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
2798         out-of-memory.
2799         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
2800         upon out-of-memory.
2801         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
2802         upon out-of-memory.
2803         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
2804         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
2805         not xmalloc. Return NULL upon out-of-memory.
2806         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
2807         out-of-memory.
2808         (gl_tree_remove_node_from_tree): New function, extracted from
2809         gl_tree_remove_node.
2810         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
2811         upon out-of-memory.
2812         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
2813         out-of-memory.
2814         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
2815         upon out-of-memory.
2816         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
2817         upon out-of-memory.
2818         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
2819         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
2820         gl_anytree_list1.h before gl_anyavltree_list2.h.
2821         (gl_avltree_list_implementation): Update.
2822         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
2823         gl_anytree_list1.h before gl_anyavltree_list2.h.
2824         (gl_rbtree_list_implementation): Update.
2825         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
2826         Change return type to 'int'. Return -1 upon out-of-memory. Use
2827         __builtin_expect.
2828         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
2829         (gl_avltreehash_list_implementation): Update.
2830         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
2831         (gl_rbtreehash_list_implementation): Update.
2832         * modules/array-list (Depends-on): Remove xalloc.
2833         * modules/carray-list (Depends-on): Likewise.
2834         * modules/linked-list (Depends-on): Likewise.
2835         * modules/linkedhash-list (Depends-on): Likewise.
2836         * modules/avltree-list (Depends-on): Likewise.
2837         * modules/rbtree-list (Depends-on): Likewise.
2838         * modules/avltreehash-list (Depends-on): Likewise.
2839         * modules/rbtreehash-list (Depends-on): Likewise.
2840
2841         * modules/xsublist: New file.
2842         * lib/gl_xsublist.h: New file.
2843         * lib/gl_xsublist.c: New file.
2844         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
2845         (gl_sublist_nx_create): New declaration.
2846         * lib/gl_sublist.c: Don't include xalloc.h.
2847         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
2848         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
2849         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
2850         Change return type to 'int'. Return -1 upon out-of-memory.
2851         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
2852         upon out-of-memory.
2853         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
2854         NULL upon out-of-memory.
2855         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
2856         upon out-of-memory.
2857         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
2858         NULL upon out-of-memory.
2859         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
2860         NULL upon out-of-memory.
2861         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
2862         upon out-of-memory.
2863         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
2864         (gl_sublist_list_implementation): Update.
2865         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
2866         upon out-of-memory.
2867         * modules/sublist (Depends-on): Remove xalloc.
2868
2869         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
2870         * tests/test-carray_list.c: Likewise.
2871         * tests/test-linked_list.c: Likewise.
2872         * tests/test-linkedhash_list.c: Likewise.
2873         * tests/test-avltree_list.c: Likewise.
2874         * tests/test-rbtree_list.c: Likewise.
2875         * tests/test-avltreehash_list.c: Likewise.
2876         * tests/test-rbtreehash_list.c: Likewise.
2877         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
2878         * modules/carray-list-tests (Makefile.am): Likewise.
2879         * modules/linked-list-tests (Makefile.am): Likewise.
2880         * modules/linkedhash-list-tests (Makefile.am): Likewise.
2881         * modules/avltree-list-tests (Makefile.am): Likewise.
2882         * modules/rbtree-list-tests (Makefile.am): Likewise.
2883         * modules/avltreehash-list-tests (Makefile.am): Likewise.
2884         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
2885
2886         * NEWS: Mention the changes.
2887
2888         * lib/clean-temp.c: Include gl_xlist.h.
2889         * modules/clean-temp (Depends-on): Add xlist.
2890
2891         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
2892         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
2893
2894         * tests/test-array_oset.c: Include gl_xlist.h.
2895         * modules/array-oset-tests (Depends-on): Add xlist.
2896
2897         Reported by José E. Marchesi <jemarch@gnu.org>.
2898
2899 2009-12-13  Bruno Haible  <bruno@clisp.org>
2900
2901         Move the malloc checking from module 'oset' to new module 'xoset'.
2902         * modules/xoset: New file.
2903         * lib/gl_xoset.h: New file.
2904         * lib/gl_xoset.c: New file.
2905         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
2906         declarations.
2907         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
2908         (struct gl_oset_implementation): Rename and change methods accordingly.
2909         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
2910         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
2911         'int'. Mark as __warn_unused_result__.
2912         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
2913         gl_oset_create_empty.
2914         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
2915         'int'.
2916         * lib/gl_array_oset.c: Don't include xalloc.h.
2917         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
2918         malloc, not xmalloc.
2919         (grow): Change return type to 'int'. Don't call xalloc_die.
2920         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
2921         to 'int'.
2922         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
2923         'int'.
2924         (gl_array_oset_implementation): Update.
2925         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
2926         gl_tree_create_empty.
2927         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
2928         'int'.
2929         * lib/gl_avltree_oset.c: Don't include xalloc.h.
2930         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
2931         xmalloc.
2932         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
2933         not xmalloc.
2934         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
2935         xmalloc.
2936         (gl_avltree_oset_implementation): Update.
2937         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
2938         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
2939         xmalloc.
2940         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
2941         not xmalloc.
2942         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
2943         xmalloc.
2944         (gl_rbtree_oset_implementation): Update.
2945         * modules/array-oset (Depends-on): Remove xalloc.
2946         * modules/avltree-oset (Depends-on): Likewise.
2947         * modules/rbtree-oset (Depends-on): Likewise.
2948         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
2949         * tests/test-avltree_oset.c: Likewise.
2950         * tests/test-rbtree_oset.c: Likewise.
2951         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
2952         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
2953         * modules/rbtree-oset-tests (Makefile.am): Likewise.
2954         * NEWS: Mention the change.
2955
2956 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
2957
2958         maint.mk: allow a project to override release-prep commands
2959         * top/maint.mk (alpha, beta, stable): Move release-preparatory
2960         commands into a new rule.
2961         (release-prep): New rule.
2962         (release-prep-hook): New overridable variable.
2963
2964 2009-12-13  Bruno Haible  <bruno@clisp.org>
2965
2966         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
2967
2968 2009-12-13  Jim Meyering  <meyering@redhat.com>
2969
2970         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
2971         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
2972
2973 2009-12-12  Bruno Haible  <bruno@clisp.org>
2974
2975         duplocale: Tweak.
2976         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
2977
2978 2009-12-12  Karl Berry  <karl@gnu.org>
2979
2980         * config/srclist.txt (strtoll.c): tab changes, no more sync.
2981
2982 2009-12-12  Bruno Haible  <bruno@clisp.org>
2983
2984         * m4/po.m4: Undo incorrect untabification.
2985
2986 2009-12-12  Bruno Haible  <bruno@clisp.org>
2987
2988         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
2989         * modules/c-strtod (Depends-on): Add locale.
2990         * modules/c-strtold (Depends-on): Likewise.
2991
2992 2009-12-12  Bruno Haible  <bruno@clisp.org>
2993
2994         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
2995
2996 2009-12-11  Eric Blake  <ebb9@byu.net>
2997
2998         setenv: relax requirement in light of POSIX ruling
2999         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
3000         not NULL.
3001         * tests/test-setenv.c (main): Relax test.
3002         * tests/test-unsetenv.c (main): Likewise.
3003         * doc/posix-functions/setenv.texi (setenv): Document this.
3004         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
3005
3006 2009-12-11  Bruno Haible  <bruno@clisp.org>
3007
3008         New module 'fd-safer-flag'.
3009         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
3010         * lib/dup-safer.c (dup_safer_flag): Remove function.
3011         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
3012         * lib/fd-safer.c (fd_safer_flag): Remove function.
3013         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
3014         * modules/cloexec (configure.ac): Drop indicator macro.
3015         * modules/fd-safer-flag: New file.
3016         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
3017         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
3018         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
3019
3020 2009-12-11  Bruno Haible  <bruno@clisp.org>
3021
3022         Tests for module 'nl_langinfo'.
3023         * modules/nl_langinfo-tests: New file.
3024         * tests/test-nl_langinfo.sh: New file.
3025         * tests/test-nl_langinfo.c: New file.
3026
3027         New module 'nl_langinfo'.
3028         * lib/nl_langinfo.c: New file.
3029         * m4/nl_langinfo.m4: New file.
3030         * modules/nl_langinfo: New file.
3031         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
3032
3033 2009-12-11  Bruno Haible  <bruno@clisp.org>
3034
3035         Tests for module 'langinfo'.
3036         * modules/langinfo-tests: New file.
3037         * tests/test-langinfo.c: New file.
3038
3039         New module 'langinfo'.
3040         * lib/langinfo.in.h: New file.
3041         * m4/langinfo_h.m4: New file.
3042         * modules/langinfo: New file.
3043         * doc/posix-headers/langinfo.texi: Mention the new module.
3044
3045 2009-12-11  Bruno Haible  <bruno@clisp.org>
3046
3047         * lib/config.charset: Untabify.
3048
3049 2009-12-11  Bruno Haible  <bruno@clisp.org>
3050
3051         * modules/unistd-safer (configure.ac): Drop indicator macro.
3052
3053 2009-12-11  Bruno Haible  <bruno@clisp.org>
3054
3055         Move pipe2-safer code to its own file.
3056         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
3057         * lib/pipe-safer.c (pipe2_safer): Remove function.
3058         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
3059         (Makefile.am): Add it to lib_SOURCES.
3060
3061 2009-12-10  Bruno Haible  <bruno@clisp.org>
3062
3063         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
3064
3065 2009-12-10  Bruno Haible  <bruno@clisp.org>
3066
3067         Declare which arguments expect non-NULL values, for GCC and clang.
3068         * build-aux/arg-nonnull.h: New file.
3069         * modules/arg-nonnull: New file.
3070         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
3071         (inet_ntop, inet_pton): Use it.
3072         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
3073         (closedir, dirfd, opendir, scandir, alphasort): Use it.
3074         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
3075         (open, openat): Use it.
3076         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
3077         (fnmatch): Use it.
3078         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
3079         (getopt, getopt_long, getopt_long_only): Use it.
3080         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
3081         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
3082         Use it.
3083         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
3084         (iconv_open): Use it.
3085         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
3086         (strtoimax, strtoumax): Use it.
3087         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
3088         (duplocale): Use it.
3089         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
3090         (frexp, frexpl): Use it.
3091         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
3092         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
3093         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
3094         (tsearch, tfind, tdelete, twalk): Use it.
3095         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
3096         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
3097         sigpending): Use it.
3098         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
3099         (posix_spawn, posix_spawnp, posix_spawnattr_init,
3100         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
3101         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
3102         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
3103         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
3104         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
3105         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
3106         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
3107         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
3108         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
3109         Use it.
3110         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
3111         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
3112         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
3113         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
3114         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
3115         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
3116         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
3117         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
3118         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
3119         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
3120         strtoull, unsetenv): Use it.
3121         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
3122         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
3123         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
3124         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
3125         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
3126         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
3127         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
3128         (strcasecmp, strncasecmp): Use it.
3129         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
3130         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
3131         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
3132         rpl_setsockopt): Use it.
3133         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
3134         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
3135         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
3136         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
3137         (gettimeofday): Use it.
3138         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
3139         (times): Use it.
3140         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
3141         (uname): Use it.
3142         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
3143         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
3144         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
3145         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
3146         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
3147         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
3148         unlinkat, write): Use it.
3149         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
3150         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
3151         * lib/argv-iter.h: Include arg-nonnull.h.
3152         (_ATTRIBUTE_NONNULL_): Remove macro.
3153         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
3154         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
3155         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
3156         optimization.
3157         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
3158         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
3159         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
3160         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
3161         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
3162         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
3163         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
3164         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
3165         * modules/arpa_inet (Depends-on): Add arg-nonnull.
3166         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
3167         * modules/dirent (Depends-on): Add arg-nonnull.
3168         (Makefile.am): Insert arg-nonnull.h into dirent.h.
3169         * modules/fcntl-h (Depends-on): Add arg-nonnull.
3170         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
3171         * modules/fnmatch (Depends-on): Add arg-nonnull.
3172         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
3173         * modules/getopt-posix (Depends-on): Add arg-nonnull.
3174         (Makefile.am): Insert arg-nonnull.h into getopt.h.
3175         * modules/glob (Depends-on): Add arg-nonnull.
3176         (Makefile.am): Insert arg-nonnull.h into glob.h.
3177         * modules/iconv_open (Depends-on): Add arg-nonnull.
3178         (Makefile.am): Insert arg-nonnull.h into iconv.h.
3179         * modules/inttypes (Depends-on): Add arg-nonnull.
3180         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
3181         * modules/locale (Depends-on): Add arg-nonnull.
3182         (Makefile.am): Insert arg-nonnull.h into locale.h.
3183         * modules/math (Depends-on): Add arg-nonnull.
3184         (Makefile.am): Insert arg-nonnull.h into math.h.
3185         * modules/netdb (Depends-on): Add arg-nonnull.
3186         (Makefile.am): Insert arg-nonnull.h into netdb.h.
3187         * modules/search (Depends-on): Add arg-nonnull.
3188         (Makefile.am): Insert arg-nonnull.h into search.h.
3189         * modules/signal (Depends-on): Add arg-nonnull.
3190         (Makefile.am): Insert arg-nonnull.h into signal.h.
3191         * modules/spawn (Depends-on): Add arg-nonnull.
3192         (Makefile.am): Insert arg-nonnull.h into spawn.h.
3193         * modules/stdio (Depends-on): Add arg-nonnull.
3194         (Makefile.am): Insert arg-nonnull.h into stdio.h.
3195         * modules/stdlib (Depends-on): Add arg-nonnull.
3196         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
3197         * modules/string (Depends-on): Add arg-nonnull.
3198         (Makefile.am): Insert arg-nonnull.h into string.h.
3199         * modules/strings (Depends-on): Add arg-nonnull.
3200         (Makefile.am): Insert arg-nonnull.h into strings.h.
3201         * modules/sys_socket (Depends-on): Add arg-nonnull.
3202         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
3203         * modules/sys_stat (Depends-on): Add arg-nonnull.
3204         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
3205         * modules/sys_time (Depends-on): Add arg-nonnull.
3206         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
3207         * modules/sys_times (Depends-on): Add arg-nonnull.
3208         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
3209         * modules/sys_utsname (Depends-on): Add arg-nonnull.
3210         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
3211         * modules/time (Depends-on): Add arg-nonnull.
3212         (Makefile.am): Insert arg-nonnull.h into time.h.
3213         * modules/unistd (Depends-on): Add arg-nonnull.
3214         (Makefile.am): Insert arg-nonnull.h into unistd.h.
3215         * modules/wchar (Depends-on): Add arg-nonnull.
3216         (Makefile.am): Insert arg-nonnull.h into wchar.h.
3217         * modules/argv-iter (Depends-on): Add arg-nonnull.
3218         * tests/test-canonicalize.c (null_ptr): New function.
3219         (main): Use it.
3220         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
3221         (main): Use it.
3222         * tests/test-memmem.c (null_ptr): New function.
3223         (main): Use it.
3224         Reported by Jim Meyering.
3225
3226 2009-12-10  Bruno Haible  <bruno@clisp.org>
3227
3228         Use spaces for indentation, not tabs.
3229         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
3230         * m4/*.m4: Untabify.
3231         * build-aux/*.h: Untabify.
3232         * tests/**/*.[hc]: Untabify.
3233         * README: New section "Indent with spaces, not TABs", based on
3234         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
3235         * NEWS: Mention the change.
3236
3237 2009-12-10  Bruno Haible  <bruno@clisp.org>
3238
3239         pty test: Fix link error.
3240         * modules/pty-tests (Makefile.am): Add the default LDADD value to
3241         test_pty_LDADD.
3242
3243 2009-12-07  Simon Josefsson  <simon@josefsson.org>
3244
3245         * modules/pty: New file.
3246         * modules/pty-tests: New file.
3247         * m4/pty.m4: New file.
3248         * tests/test-pty.c: New file.
3249         * doc/glibc-headers/pty.texi: Modified.
3250         * doc/glibc-functions/forkpty.texi: Modified.
3251         * doc/glibc-functions/openpty.texi: Modified.
3252
3253 2009-12-10  Bruno Haible  <bruno@clisp.org>
3254
3255         Avoid syntax error in C++ mode.
3256         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
3257
3258 2009-12-10  Bruno Haible  <bruno@clisp.org>
3259
3260         Use sed with option -e.
3261         * gnulib-tool (func_version, func_emit_copyright_notice,
3262         func_emit_initmacro_end, func_import, func_create_testdir): Pass
3263         option -e to sed.
3264         * modules/link-warning (Makefile.am): Likewise.
3265
3266 2009-12-10  Jim Meyering  <meyering@redhat.com>
3267
3268         mgetgroups: do not write bytes beyond end of malloc'd buffer
3269         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
3270         username, we call getgroups with a one-element-shorter buffer,
3271         but still told it the length was original, max_n_groups.
3272
3273 2009-12-09  Eric Blake  <ebb9@byu.net>
3274
3275         cloexec: relax license
3276         * modules/cloexec (Maintainer): Add myself.
3277         (License): Use LGPL, not GPL.
3278
3279         link-warning: optimize generation
3280         * modules/link-warning (Makefile.am): Reduce process usage.
3281
3282 2009-12-09  Bruno Haible  <bruno@clisp.org>
3283
3284         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
3285         workaround was added on 2009-11-17.
3286
3287 2009-12-09  Jim Meyering  <meyering@redhat.com>
3288             Bruno Haible  <bruno@clisp.org>
3289
3290         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
3291         * modules/link-warning (Makefile.am): Make the comment-removing sed
3292         command more robust in the face of bootstrap-prepended comment lines.
3293
3294 2009-12-09  Bruno Haible  <bruno@clisp.org>
3295
3296         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
3297         most one group.
3298
3299 2009-12-09  Simon Josefsson <simon@josefsson.org>
3300             Bruno Haible  <bruno@clisp.org>
3301
3302         * build-aux/link-warning.h: Add copyright notice.
3303         * modules/link-warning (Makefile.am): Generate link-warning.h from
3304         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
3305         * NEWS: Mention change in link-warning module.
3306         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
3307         * modules/dirent (Makefile.am): Add dependency to dirent.h.
3308         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
3309         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
3310         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
3311         * modules/math (Makefile.am): Add dependency to math.h.
3312         * modules/search (Makefile.am): Add dependency to search.h.
3313         * modules/signal (Makefile.am): Add dependency to signal.h.
3314         * modules/spawn (Makefile.am): Add dependency to spawn.h.
3315         * modules/stdio (Makefile.am): Add dependency to stdio.h.
3316         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
3317         * modules/string (Makefile.am): Add dependency to string.h.
3318         * modules/strings (Makefile.am): Add dependency to strings.h.
3319         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
3320         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
3321         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
3322         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
3323         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
3324         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
3325         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
3326         * modules/unistd (Makefile.am): Add dependency to unistd.h.
3327         * modules/wchar (Makefile.am): Add dependency to wchar.h.
3328
3329 2009-12-09  Bruno Haible  <bruno@clisp.org>
3330
3331         fchdir: Optimize away rpl_fstat when possible.
3332         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
3333         REPLACE_OPEN_DIRECTORY.
3334         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
3335
3336 2009-12-09  Bruno Haible  <bruno@clisp.org>
3337
3338         * lib/fchdir.c: Update comment.
3339
3340 2009-12-09  Bruno Haible  <bruno@clisp.org>
3341
3342         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
3343
3344 2009-12-08  Eric Blake  <ebb9@byu.net>
3345
3346         fchdir: avoid memory leak on re-registration.
3347         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
3348
3349 2009-12-08  Jim Meyering  <meyering@redhat.com>
3350
3351         init.sh: avoid Solaris 10 /bin/sh portability problem
3352         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
3353         sourced script:
3354           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
3355           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
3356           bar
3357         tests/init.sh relied on that, accepting a --set-path=DIR argument,
3358         and two tests used that idiom.
3359         * tests/init.sh: Update suggested usage comments.
3360         (path_prepend_): New function, to be used in place
3361         of the --src-path=DIR option.
3362         (setup_): Move PATH-prepending code into path_prepend_.
3363         * tests/test-pread.sh: Adapt to new usage.
3364         * tests/test-xalloc-die.sh: Likewise.
3365
3366 2009-12-08  Simon Josefsson  <simon@josefsson.org>
3367
3368         * doc/gnulib.texi (Glibc pty.h): Add.
3369         * doc/glibc-functions/forkpty.texi: Add.
3370         * doc/glibc-functions/openpty.texi: Add.
3371         Suggested by Bruno Haible.
3372
3373 2009-12-08  Eric Blake  <ebb9@byu.net>
3374
3375         fchdir: fix logic bugs
3376         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
3377         * tests/test-fchdir.c (main): Enhance test.
3378         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
3379         is in use.
3380
3381         dup2: fix logic bugs
3382         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
3383         REPLACE_DUP2 to decide when rpl_dup2 is needed.
3384         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
3385         exists.
3386         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
3387
3388 2009-12-07  Eric Blake  <ebb9@byu.net>
3389
3390         unlink: fix m4 detection
3391         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
3392
3393         unistd-safer: add unit test
3394         * modules/unistd-safer-tests: New file.
3395         * tests/test-dup-safer.c: Likewise.
3396         * tests/test-cloexec.c (setmode): Avoid compiler warning.
3397         * tests/test-dup2.c (setmode): Likewise.
3398         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
3399
3400         cloexec: preserve text vs. binary across dup_cloexec
3401         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
3402         mode.
3403         * modules/dup2-tests (Depends-on): Add binary-io.
3404         * modules/cloexec-tests (Depends-on): Likewise.
3405         * tests/test-dup2.c (setmode, is_mode): New helpers.
3406         (main): Add tests that translation mode is preserved.
3407         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
3408         Reported by Bruno Haible.
3409
3410         mgetgroups: reduce duplicate listings
3411         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
3412         resulting array.
3413         * tests/test-chown.h (test_chown): Simplify client.
3414         * tests/test-lchown.h (test_lchown): Likewise.
3415
3416 2009-12-06  Bruno Haible  <bruno@clisp.org>
3417
3418         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
3419         value.
3420
3421 2009-12-06  Bruno Haible  <bruno@clisp.org>
3422
3423         * lib/progname.c: Include stdio.h, stdlib.h.
3424         (set_program_name): Reject a NULL argument.
3425
3426 2009-12-05  Eric Blake  <ebb9@byu.net>
3427
3428         pipe2-safer: new module
3429         * modules/pipe2-safer: New file.
3430         * lib/unistd-safer.h (pipe2_safer): New prototype.
3431         * lib/unistd--.h (pipe2): New wrapper.
3432         * lib/pipe-safer.c (pipe2_safer): New function.
3433         * modules/pipe (Depends-on): Add pipe2-safer.
3434         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
3435
3436         stdlib-safer: preserve cloexec flag for mkostemp[s]
3437         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
3438         fd_safer_flag.
3439
3440         unistd-safer: allow preservation of cloexec status via flag
3441         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
3442         prototypes.
3443         * lib/dup-safer.c (dup_safer_flag): New function.
3444         * lib/fd-safer.c (fd_safer_flag): Likewise.
3445         * modules/cloexec (configure.ac): Set witness.
3446
3447         test-dup2: enhance test
3448         * modules/dup2-tests (Depends-on): Add cloexec.
3449         * tests/test-dup2.c (main): Enhance test.
3450
3451         cloexec: add dup_cloexec
3452         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
3453         header and comments.
3454         * lib/cloexec.c (set_cloexec_flag): Add comments.
3455         (dup_cloexec): New function, with mingw implementation borrowed
3456         from...
3457         * lib/w32spawn.h (dup_noinherit): ...here.
3458         * modules/execute (Depends-on): Add cloexec.
3459         * modules/pipe (Depends-on): Likewise.
3460         * modules/cloexec (Depends-on): Add dup2.
3461         * modules/cloexec-tests (Files): New file.
3462         * tests/test-cloexec.c: Likewise.
3463
3464         test-xalloc-die: fix test for mingw
3465         * modules/xalloc-die-tests (Files): Add tests/init.sh.
3466         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
3467         directory and .exe suffix off argv[0] output.
3468
3469         test-fseeko: fix test for mingw
3470         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
3471         than undefining fseek, so test will pass on mingw.
3472
3473 2009-12-05  Bruno Haible  <bruno@clisp.org>
3474
3475         * lib/progname.h (set_program_name): Clarify specification.
3476         * lib/progname.c (set_program_name): Likewise.
3477         Reported by Jim Meyering.
3478
3479 2009-12-05  Jim Meyering  <meyering@redhat.com>
3480
3481         maint.mk: backslash-escape parens in default regexp
3482         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
3483         backslash-escape the literal parentheses.
3484
3485         maint.mk: news-date-check: use grep -E
3486         * top/maint.mk (today): Define a Make variable, not a...
3487         (news-date-check): ...shell variable.
3488         (news-date-regexp): Use the Make variable.
3489         Use grep's -E option.  Change the failing diagnostic to mention
3490         the variable, $(news-date-regexp).
3491
3492 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
3493
3494         maintainer-makefile: allow customization of NEWS entry format
3495         * top/maint.mk (news-date-regexp): New overridable variable.
3496         (news-date-check): Use it.
3497
3498 2009-12-04  Eric Blake  <ebb9@byu.net>
3499
3500         mgetgroups: add xgetgroups, and avoid ENOSYS failures
3501         * lib/mgetgroups.h (xgetgroups): New prototype.
3502         * lib/mgetgroups.c (xgetgroups): New wrapper.
3503         (mgetgroups): Handle ENOSYS.
3504         * modules/mgetgroups (Depends-on): Add realloc.
3505         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
3506
3507         mgetgroups: avoid argument promotion issues with -1
3508         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
3509         for invalid gid_t.
3510         * tests/test-chown.h (getegid, test_chown): Likewise.
3511         * tests/test-lchown.h (getegid, test_lchown): Likewise.
3512
3513 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
3514
3515         exclude: Fix header file problems.
3516         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
3517
3518 2009-12-01  Jim Meyering  <meyering@redhat.com>
3519
3520         fts: fts_open: do not let an empty string cause immediate failure
3521         This is required in support of GNU rm, for which the command
3522         "rm A '' B" must process and remove both A and B, in spite of
3523         the empty string argument.
3524         * lib/fts.c (fts_open): Do not let the presence of an empty string
3525         cause fts_open to fail immediately.  Most fts-using tools must be
3526         able to process all arguments, in order, and can be expected to
3527         diagnose such arguments themselves.
3528
3529 2009-11-30  Eric Blake  <ebb9@byu.net>
3530
3531         utimens: fix compilation error
3532         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
3533         Declare variable at right scope.
3534
3535 2009-11-29  Jim Meyering  <meyering@redhat.com>
3536
3537         bootstrap: handle perl-5.11's changed --version output
3538         * build-aux/bootstrap (get_version): Handle perl separately,
3539         since perl-5.11's --version output is different.
3540
3541 2009-11-28  Jim Meyering  <meyering@redhat.com>
3542
3543         userspec: depend on the inttostr module, too
3544         * modules/userspec (Depends-on): Add inttostr.
3545
3546         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
3547         * lib/userspec.c (parse_with_separator): Do not accept a user ID
3548         number of MAXUID when it evaluates to (uid_t) -1.
3549         Likewise for group ID.  Reported by Matt McCutchen in
3550         <http://savannah.gnu.org/bugs/?28113>
3551
3552         userspec: reformat to use spaces, not TABs
3553         * lib/userspec.c: Expand TABs to spaces.
3554         Add Emacs' "indent-tabs-mode: nil" hint.
3555
3556 2009-11-27  Eric Blake  <ebb9@byu.net>
3557
3558         getopt-gnu: flush out another BSD bug
3559         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
3560         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
3561         flush out BSD bug.
3562         * tests/test-getopt.h (test_getopt): End lists with NULL.
3563         * tests/test-getopt_long.h (test_getopt_long): Likewise.
3564         (test_getopt_long_posix): Enhance test.
3565         * modules/getopt-posix-tests (Depends-on): Add stdbool.
3566         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
3567         getopt-gnu.
3568         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
3569         Likewise.
3570
3571 2009-11-27  Simon Josefsson  <simon@josefsson.org>
3572
3573         * modules/idpriv-droptemp-tests (Notice): Fix text.
3574
3575 2009-11-27  Jim Meyering  <meyering@redhat.com>
3576
3577         test-xalloc-die: avoid spurious failure due to libtool argv difference
3578         In a libtool-enabled project, this test would fail due to a difference
3579         in the emitted program name, e.g.,
3580         -test-xalloc-die: memory exhausted
3581         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
3582         Use program to avoid that.
3583         * modules/xalloc-die-tests (Depends-on): Add progname.
3584         * tests/test-xalloc-die.c: Include progname.h".
3585         (program_name): Remove decl.
3586         (main): Call set_program_name.
3587         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
3588
3589 2009-11-26  Richard Jones  <rjones@redhat.com>
3590
3591         w32sock: leave win32 error in place.
3592         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
3593
3594 2009-11-26  Eric Blake  <ebb9@byu.net>
3595
3596         init.sh: suggest to use skip_ and fail_ functions in comments
3597         * tests/init.sh: Add a sentence.
3598
3599 2009-11-25  Bruno Haible  <bruno@clisp.org>
3600
3601         init.sh: add documentation in comments
3602         * tests/init.sh: Add some developer and user documentation.
3603
3604 2009-11-26  Jim Meyering  <meyering@redhat.com>
3605
3606         init.sh: accommodate even those who specify bogus srcdir manually
3607         * tests/init.sh: Normally, srcdir is guaranteed by automake and
3608         configure-time tests to be sanitized, so that there is no need to
3609         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
3610         (with no double quotes) suffices.  However, since tests may be
3611         invoked manually, and since you may explicitly set srcdir to the
3612         name of a directory containing spaces, do quote its uses here.
3613         * tests/test-pread.sh: Likewise.
3614         Suggested by Bruno Haible.
3615
3616         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
3617         * tests/test-pread.sh: Write no data into the pipe, because
3618         test-pread actually reads none.  This avoids a diagnostic,
3619         "bash: echo: write error: Broken pipe", that arises in the unusual
3620         event something is ignoring SIGPIPE, and might be interpreted
3621         as some sort of failure.  Reported by Bruno Haible.
3622
3623 2009-11-25  Jim Meyering  <meyering@redhat.com>
3624
3625         test-pread: cover failure with ESPIPE and EINVAL
3626         * tests/test-pread.c (main): Test for failure, too.
3627         * tests/test-pread.sh: Invoke with stdin on a pipe.
3628         Suggested by Eric Blake.
3629
3630         pread: improvement and fix
3631         * modules/pread (Depends-on): Depend on lseek, for portability to
3632         e.g., mingw.  Suggested by Eric Blake.
3633         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
3634
3635         unistd.in.h: correct declaration of pread
3636         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
3637         Reported by Richard W.M. Jones.
3638
3639         test-pread.sh: distribute the test script
3640         * modules/pread-tests (Files): Include test-pread.sh.
3641
3642         test-pread.sh: clean up
3643         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
3644         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
3645         That is unnecessary, since it's always ".".
3646         Suggestion from Eric Blake.
3647
3648         test-pread.sh: make executable
3649         * tests/test-pread.sh: Set executable bit.
3650         Reported by Eric Blake.
3651
3652         correct typo in test-pread.sh
3653         * tests/test-pread.sh: Add #! line.
3654
3655         test pread
3656         * tests/test-pread.c: New file.
3657         * tests/test-pread.sh: Likewise.
3658         * modules/pread-tests: Likewise.
3659
3660         pread: new module
3661         * modules/pread: New file.
3662         * lib/unistd.in.h (pread): Define/declare.
3663         * lib/pread.c (pread): New file.
3664         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
3665         * modules/unistd (Makefile.am): Substitute witnesses.
3666         * doc/posix-functions/pread.texi (pread): Update.
3667         * MODULES.html.sh: Add pread.
3668
3669 2009-11-25  Jim Meyering  <meyering@redhat.com>
3670
3671         tests/init.sh: new file to be used via most *.sh tests
3672         * tests/init.sh: New file.
3673
3674 2009-11-25  Eric Blake  <ebb9@byu.net>
3675
3676         utimens: work around older Linux failure with symlinks
3677         * lib/utimens.c (lutimensat_works_really): New variable.
3678         (fdutimens, lutimens): Use it to manage kernels that support
3679         nanosecond times on files, but not on symlinks.
3680         Reported by OndÅ™ej Vašík.
3681
3682         utimes: fix configure grammar
3683         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
3684
3685 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
3686
3687         regex: Fix fastmap for multibyte character ranges.
3688         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
3689         characters when a multibyte character range is included.
3690
3691 2009-11-22  Andy Wingo  <wingo@pobox.com>
3692
3693         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
3694         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
3695
3696 2009-11-24  Bruno Haible  <bruno@clisp.org>
3697
3698         doc: Most *_l functions exist in MacOS X 10.5.
3699         * doc/posix-functions/duplocale.texi: Update platforms list.
3700         * doc/posix-functions/freelocale.texi: Likewise.
3701         * doc/posix-functions/newlocale.texi: Likewise.
3702         * doc/posix-functions/uselocale.texi: Likewise.
3703         * doc/posix-functions/isalnum_l.texi: Likewise.
3704         * doc/posix-functions/isalpha_l.texi: Likewise.
3705         * doc/posix-functions/isblank_l.texi: Likewise.
3706         * doc/posix-functions/iscntrl_l.texi: Likewise.
3707         * doc/posix-functions/isdigit_l.texi: Likewise.
3708         * doc/posix-functions/isgraph_l.texi: Likewise.
3709         * doc/posix-functions/islower_l.texi: Likewise.
3710         * doc/posix-functions/isprint_l.texi: Likewise.
3711         * doc/posix-functions/ispunct_l.texi: Likewise.
3712         * doc/posix-functions/isspace_l.texi: Likewise.
3713         * doc/posix-functions/isupper_l.texi: Likewise.
3714         * doc/posix-functions/iswalnum_l.texi: Likewise.
3715         * doc/posix-functions/iswalpha_l.texi: Likewise.
3716         * doc/posix-functions/iswblank_l.texi: Likewise.
3717         * doc/posix-functions/iswcntrl_l.texi: Likewise.
3718         * doc/posix-functions/iswctype_l.texi: Likewise.
3719         * doc/posix-functions/iswdigit_l.texi: Likewise.
3720         * doc/posix-functions/iswgraph_l.texi: Likewise.
3721         * doc/posix-functions/iswlower_l.texi: Likewise.
3722         * doc/posix-functions/iswprint_l.texi: Likewise.
3723         * doc/posix-functions/iswpunct_l.texi: Likewise.
3724         * doc/posix-functions/iswspace_l.texi: Likewise.
3725         * doc/posix-functions/iswupper_l.texi: Likewise.
3726         * doc/posix-functions/iswxdigit_l.texi: Likewise.
3727         * doc/posix-functions/isxdigit_l.texi: Likewise.
3728         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
3729         * doc/posix-functions/strcasecmp_l.texi: Likewise.
3730         * doc/posix-functions/strcoll_l.texi: Likewise.
3731         * doc/posix-functions/strfmon_l.texi: Likewise.
3732         * doc/posix-functions/strftime_l.texi: Likewise.
3733         * doc/posix-functions/strncasecmp_l.texi: Likewise.
3734         * doc/posix-functions/strxfrm_l.texi: Likewise.
3735         * doc/posix-functions/tolower_l.texi: Likewise.
3736         * doc/posix-functions/toupper_l.texi: Likewise.
3737         * doc/posix-functions/towctrans_l.texi: Likewise.
3738         * doc/posix-functions/towlower_l.texi: Likewise.
3739         * doc/posix-functions/towupper_l.texi: Likewise.
3740         * doc/posix-functions/wcscoll_l.texi: Likewise.
3741         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
3742         * doc/posix-functions/wctrans_l.texi: Likewise.
3743         * doc/posix-functions/wctype_l.texi: Likewise.
3744         * doc/glibc-functions/strptime_l.texi: Likewise.
3745         * doc/glibc-functions/strtod_l.texi: Likewise.
3746         * doc/glibc-functions/strtof_l.texi: Likewise.
3747         * doc/glibc-functions/strtol_l.texi: Likewise.
3748         * doc/glibc-functions/strtold_l.texi: Likewise.
3749         * doc/glibc-functions/strtoll_l.texi: Likewise.
3750         * doc/glibc-functions/strtoul_l.texi: Likewise.
3751         * doc/glibc-functions/strtoull_l.texi: Likewise.
3752         * doc/glibc-functions/wcsftime_l.texi: Likewise.
3753         * doc/glibc-functions/wcstod_l.texi: Likewise.
3754         * doc/glibc-functions/wcstof_l.texi: Likewise.
3755         * doc/glibc-functions/wcstol_l.texi: Likewise.
3756         * doc/glibc-functions/wcstold_l.texi: Likewise.
3757         * doc/glibc-functions/wcstoll_l.texi: Likewise.
3758         * doc/glibc-functions/wcstoul_l.texi: Likewise.
3759         * doc/glibc-functions/wcstoull_l.texi: Likewise.
3760
3761 2009-11-24  Bruno Haible  <bruno@clisp.org>
3762
3763         duplocale: Fix logic bug.
3764         * lib/duplocale.c: Don't include <langinfo.h>.
3765         (_NL_LOCALE_NAME): Remove macro.
3766         (rpl_duplocale): Use setlocale instead of nl_langinfo.
3767         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
3768
3769 2009-11-23  Jim Meyering  <meyering@redhat.com>
3770
3771         test-update-copyright: don't hard-code /usr/bin/perl
3772         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
3773         perl to print the current year.  Gilles Espinasse reported that
3774         the replaced use of perl was hard-coded as /usr/bin/perl.
3775
3776 2009-11-23  Bruno Haible  <bruno@clisp.org>
3777
3778         duplocale: Add support for glibc 2.3.x.
3779         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
3780
3781 2009-11-22  Bruno Haible  <bruno@clisp.org>
3782
3783         vasnprintf: Tiny optimization.
3784         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
3785         MacOS X.
3786
3787 2009-11-22  Bruno Haible  <bruno@clisp.org>
3788
3789         Tests for module 'duplocale'.
3790         * modules/duplocale-tests: New file.
3791         * tests/test-duplocale.c: New file.
3792
3793         New module 'duplocale'.
3794         * m4/duplocale.m4: New file.
3795         * lib/locale.in.h (duplocale): New declaration.
3796         * lib/duplocale.c: New file.
3797         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
3798         gl_LOCALE_H_DEFAULTS): New macros.
3799         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
3800         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
3801         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
3802         REPLACE_DUPLOCALE.
3803         * modules/duplocale: New file.
3804         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
3805
3806 2009-11-22  Bruno Haible  <bruno@clisp.org>
3807
3808         * modules/locale-tests (configure.ac): Test for newlocale function.
3809         * tests/test-locale.c: When the system has extended locale functions,
3810         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
3811
3812         locale: Make locale_t available when possible.
3813         * lib/locale.in.h: Include <xlocale.h> when it exists.
3814         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
3815         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
3816         * modules/locale (Depends-on): Add extensions.
3817         (Makefile.am): Also substitute HAVE_XLOCALE_H.
3818         * doc/posix-headers/locale.texi: Document the problem with locale_t.
3819
3820 2009-11-22  Bruno Haible  <bruno@clisp.org>
3821
3822         Add comments.
3823         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
3824         invocation.
3825         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
3826         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
3827         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
3828
3829 2009-11-22  Bruno Haible  <bruno@clisp.org>
3830
3831         error: account for the possibility of freopen (stdout).
3832         * lib/error.c: Include <unistd.h>.
3833         (flush_stdout): New function, extracted from error and error_at_line.
3834         Determine stdout's fd dynamically.
3835         (error, error_at_line): Invoke flush_stdout.
3836         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
3837         * modules/error (Depends-on): Add unistd.
3838
3839 2009-11-22  Bruno Haible  <bruno@clisp.org>
3840
3841         diffseq: Add comment.
3842         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
3843
3844 2009-11-22  Jim Meyering  <meyering@redhat.com>
3845
3846         c-stack: avoid defining an unused static function
3847         * lib/c-stack.c (find_stack_direction): Do not define this function
3848         when it will not be used.
3849
3850         diffseq: avoid spurious gcc warnings
3851         * lib/diffseq.h (IF_LINT2): Define.
3852         (compareseq): Use it to initialize two members of "part".
3853         This avoids two used-uninitialized warnings.
3854
3855 2009-11-21  Jim Meyering  <meyering@redhat.com>
3856
3857         c-stack: avoid "ignoring return value of `write'" warning
3858         * lib/c-stack.c: Include "ignore-value.h".
3859         (die): Explicitly ignore each write return value.
3860         * modules/c-stack (Depends-on): Add ignore-value.
3861
3862 2009-11-21  Bruno Haible  <bruno@clisp.org>
3863
3864         diffseq: reduce scope of variable 'best'.
3865         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
3866         variable, earlier used for two different purposes.
3867
3868 2009-11-21  Jim Meyering  <meyering@redhat.com>
3869
3870         diffseq: remove useless assignment to "best"
3871         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
3872         assignment.  At that point "best" is already guaranteed to be zero.
3873
3874 2009-11-20  Eric Blake  <ebb9@byu.net>
3875
3876         build: mention ftp redirector in release announcements
3877         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
3878         values that used to come from cfg.mk; mention FTP redirect URL.
3879         * build-aux/announce-gen: Mention the mirror list.
3880         Suggested by Karl Berry.
3881
3882         nanosleep: improve port to mingw
3883         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
3884         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
3885         LIB_NANOSLEEP, but only when needed.
3886         * modules/select (Link): Document LIBSOCKET.
3887         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
3888         enough.
3889
3890         nanosleep: work around cygwin bug
3891         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
3892         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
3893         bug.
3894         (getnow): Delete, not needed.
3895         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
3896         LIB_CLOCK_GETTIME.
3897         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
3898         clock-time, gettime.
3899         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
3900         bug.
3901         * modules/nanosleep-tests: New test.
3902         * tests/test-nanosleep.c: New file.
3903
3904         sleep: work around cygwin bug
3905         * lib/sleep.c (rpl_sleep): Work around the bug.
3906         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
3907         (gl_PREREQ_SLEEP): Delete unused macro.
3908         * modules/sleep (Depends-on): Add verify.
3909         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
3910         * modules/unistd (Makefile.am): Substitute witness.
3911         * lib/unistd.in.h (sleep): Update prototype.
3912         * doc/posix-functions/sleep.texi (sleep): Document the bug.
3913         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
3914         * modules/sleep-tests (Depends-on): Check for alarm.
3915
3916 2009-11-20  Jim Meyering  <meyering@redhat.com>
3917
3918         maint.mk: improve sc_prohibit_magic_number_exit
3919         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
3920         so it does not match uses like System.exit(1).
3921         Add comments showing how to correct all offenders.
3922
3923 2009-11-19  Eric Blake  <ebb9@byu.net>
3924
3925         xalloc-die-tests: add missing library
3926         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
3927
3928         test-xvasprintf: silence compiler warnings
3929         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
3930         empty string from gcc.
3931
3932 2009-11-19  Jim Meyering  <meyering@redhat.com>
3933
3934         xfreopen: new module, from coreutils
3935         * modules/xfreopen: New module.
3936         * lib/xfreopen.c: New file.
3937         * lib/xfreopen.h: New file.
3938         * MODULES.html.sh (File stream based Input/Output"): Add it.
3939
3940 2009-11-19  Eric Blake  <ebb9@byu.net>
3941
3942         manywarnings: depend on warnings
3943         * modules/manywarnings (Depends-on): Add warnings.
3944
3945         build: avoid compiler warnings
3946         * lib/select.c (rpl_select): Delete unused variable.
3947         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
3948
3949 2009-11-18  Eric Blake  <ebb9@byu.net>
3950
3951         tests: avoid false negative with --with-packager
3952         * tests/test-version-etc.sh: Discard packager information.
3953         * tests/test-argp-version-etc-1.sh: Likewise.
3954         Reported by Mike Frysinger.
3955
3956         utimens: fix regression on Solaris
3957         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
3958         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
3959         can only change fd timestamps via futimesat.  Instead, use an
3960         additional witness macro to avoid BSD bug.
3961         Reported by Jim Meyering.
3962
3963 2009-11-17  Eric Blake  <ebb9@byu.net>
3964
3965         usleep: use it to simplify tests
3966         * modules/stat-time-tests (Depends-on): Add usleep.
3967         (configure.ac): Drop usleep check.
3968         * modules/chown-tests (Depends-on, configure.ac): Likewise.
3969         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
3970         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
3971         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
3972         * modules/openat-tests (Depends-on, configure.ac): Likewise.
3973         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
3974         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
3975         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
3976         Likewise.
3977         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
3978         * tests/test-lchown.h (nap): Likewise.
3979         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
3980         * tests/test-stat-time.c (nap): Likewise.
3981         * tests/test-utimens-common.h (nap): Update comments.
3982
3983         usleep: new module
3984         * modules/usleep: New file.
3985         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
3986         * lib/usleep.c (usleep): Likewise.
3987         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3988         * modules/unistd (Makefile.am): Substitute witnesses.
3989         * lib/unistd.in.h (usleep): Add declaration.
3990         * doc/pastposix-functions/usleep.texi (usleep): Document this.
3991         * MODULES.html.sh (Date and time): Likewise.
3992         * modules/usleep-tests (Depends-on): New test.
3993         * tests/test-usleep.c: New file.
3994
3995         chown: work around OpenBSD bug
3996         * lib/chown.c (rpl_chown): Work around the bug.
3997         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
3998         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
3999         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
4000         * modules/chown (Depends-on): Add stdbool.
4001         * modules/lchown (Depends-on): Likewise.
4002         * doc/posix-functions/chown.texi (chown): Document the bug.
4003         * doc/posix-functions/lchown.texi (lchown): Likewise.
4004         * tests/test-lchown.h (test_chown): Relax test.
4005
4006         mkstemp: avoid conflict with C++ keyword template
4007         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
4008         * lib/mkostemp.c (mkostemp): Likewise.
4009         * lib/mkostemps.c (mkostemps): Likewise.
4010         * lib/mkstemp.c (mkstemp): Likewise.
4011         * lib/mkstemps.c (mkstemps): Likewise.
4012
4013         xalloc-die-tests: optimize
4014         * tests/test-xalloc-die.sh: Reduce number of processes.
4015
4016 2009-11-17  Simon Josefsson  <simon@josefsson.org>
4017
4018         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
4019         patch from ludo@gnu.org (Ludovic Courtès).
4020
4021 2009-11-17  Jim Meyering  <meyering@redhat.com>
4022
4023         version-etc: use proper license string
4024         * modules/version-etc (License): Use LGPL, not LGPLv3+.
4025         * modules/version-etc-fsf: Likewise.
4026
4027 2009-11-17  Simon Josefsson  <simon@josefsson.org>
4028
4029         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
4030         printed to stdout.  Deal with EOL differences.
4031
4032 2009-11-17  Eric Blake  <ebb9@byu.net>
4033
4034         unsetenv: work around Solaris bug
4035         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
4036         * lib/unsetenv.c (rpl_unsetenv): Work around it.
4037         Reported by Jim Meyering.
4038
4039         vasnprintf: avoid compiler warnings
4040         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
4041         variables.
4042         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
4043
4044 2009-11-17  Simon Josefsson  <simon@josefsson.org>
4045
4046         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
4047         settings since xalloc-die is no longer the self test,
4048         xalloc-die.sh is.
4049
4050 2009-11-17  Jim Meyering  <meyering@redhat.com>
4051
4052         test-xalloc-die.sh: make the code agree with the commit log
4053         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
4054         at the end, just in case you happen to have a test-xalloc-die
4055         program in some other PATH directory.
4056
4057         test-xalloc-die.sh: fix a portability bug
4058         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
4059         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
4060         Otherwise, argv[0] (as often seen in diagnostics) would be too
4061         system-dependent, sometimes with, and sometimes without the leading "./".
4062
4063         version-etc-fsf: relax license to LGPLv3+
4064         * modules/version-etc-fsf (License): Relax license.
4065
4066 2009-11-16  Eric Blake  <ebb9@byu.net>
4067
4068         xalloc-die-tests: avoid printing null pointer
4069         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
4070         shell script.
4071         * tests/test-xalloc-die.c (program_name): Declare.
4072         * tests/test-xalloc-die.sh (tmpfiles): New file.
4073
4074         setenv, unsetenv: work around various bugs
4075         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
4076         (setenv) [HAVE_SETENV]: Work around bugs.
4077         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
4078         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
4079         for bugs.
4080         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
4081         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
4082         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
4083         * modules/stdlib (Makefile.am): Update substitutions.
4084         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
4085         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
4086         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
4087         * modules/setenv-tests: New test.
4088         * modules/unsetenv-tests: Likewise.
4089         * tests/test-setenv.c: New file.
4090         * tests/test-unsetenv.c: Likewise.
4091
4092 2009-11-16  Jim Meyering  <meyering@redhat.com>
4093
4094         version-etc: relax license to LGPLv3+
4095         * modules/version-etc (License): Relax license.
4096
4097         better AC_REQUIRE expanded-before-required-warning avoidance
4098         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
4099         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
4100         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
4101         which is no longer needed.
4102
4103 2009-11-16  Eric Blake  <ebb9@byu.net>
4104
4105         test-freading: clean up temporary file
4106         * tests/test-freading.c (main): Remove file on success, and use
4107         ASSERT more liberally.
4108         Reported by Jim Meyering.
4109
4110 2009-11-16  Jim Meyering  <meyering@redhat.com>
4111
4112         avoid new AC_REQUIRE expanded-before-required warnings
4113         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
4114         merely using it.
4115         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
4116         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
4117
4118 2009-11-15  Simon Josefsson  <simon@josefsson.org>
4119
4120         * tests/test-xalloc-die.c: New file.
4121         * modules/xalloc-die-tests: New file.
4122         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
4123         XFAIL_TESTS so it can be appended by modules.
4124
4125 2009-11-15  Simon Josefsson  <simon@josefsson.org>
4126
4127         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
4128         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
4129
4130 2009-11-14  Eric Blake  <ebb9@byu.net>
4131
4132         fnmatch: avoid compiler warning
4133         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
4134         to silence compiler warning about mismatch signedness in ?:.
4135         Reported by Robert Millan.
4136
4137         intprops: add double-inclusion guard
4138         * lib/intprops.h: Allow idempotent includes.
4139         Suggested by Bruce Korb.
4140
4141         openat: detect Solaris fchownat bug
4142         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
4143         penalizing glibc chownat when only lchownat is broken.
4144         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
4145         trailing slash bugs.
4146         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
4147         * modules/openat-tests (Files): Include more files.
4148         (Depends-on): Add mgetgroups, sleep, stat-time.
4149         (configure.ac): Add additional checks.
4150         (Makefile.am): Build new test.
4151         * tests/test-fchownat.c: New file.
4152
4153         lchown: detect Solaris and FreeBSD bug
4154         * lib/lchown.c (rpl_lchown): Work around bug.
4155         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
4156         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4157         * modules/unistd (Makefile.am): Populate it.
4158         * lib/unistd.in.h (lchown): Update declaration.
4159         * doc/posix-functions/lchown.texi (lchown): Document the bug.
4160         * modules/lchown-tests: New file.
4161         * tests/test-lchown.h (test_lchown): Likewise.
4162         * tests/test-lchown.c (main): Likewise.
4163
4164         chown: detect Solaris and FreeBSD bug
4165         * lib/chown.c (rpl_chown): Work around bug.
4166         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
4167         (gl_PREREQ_CHOWN): Delete.
4168         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4169         * modules/unistd (Makefile.am): Populate it.
4170         * lib/unistd.in.h (chown): Update declaration.
4171         * lib/lchown.c (chown): Update client.
4172         * modules/lchown (Depends-on): Add lstat.
4173         * doc/posix-functions/chown.texi (chown): Document the bug.
4174         * doc/posix-functions/getgroups.texi (getgroups): Document
4175         getgroups pitfall.
4176         * modules/chown-tests: New file.
4177         * tests/test-chown.h (test_chown): Likewise.
4178         * tests/test-chown.c (main): Likewise.
4179
4180 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
4181
4182         gnulib-tool: correctly detect absence of m4 directories
4183         * gnulib-tool: Avoid extra newline on data passed to wc -l.
4184
4185 2009-11-14  Jim Meyering  <meyering@redhat.com>
4186
4187         maint.mk: Prohibit inclusion of "xalloc.h" without use.
4188         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
4189
4190 2009-11-14  John W. Eaton  <jwe@gnu.org>
4191
4192         strftime.h: wrap funtion declaration in extern "C" block
4193         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
4194
4195 2009-11-13  Eric Blake  <ebb9@byu.net>
4196
4197         getgroups: avoid compiler warning
4198         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
4199
4200         getgroups: work around FreeBSD bug
4201         * lib/getgroups.c (rpl_getgroups): Work around the bug.
4202         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
4203         * doc/posix-functions/getgroups.texi (getgroups): Document it.
4204         * tests/test-getgroups.c (main): Fix buffer overrun.
4205
4206         getgroups: avoid compilation failure
4207         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
4208         * modules/getgroups (Depends-on): Add stdint.
4209
4210 2009-11-13  Jim Meyering  <meyering@redhat.com>
4211
4212         test-getgroups: avoid compilation failure
4213         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
4214
4215 2009-11-13  Eric Blake  <ebb9@byu.net>
4216
4217         mgetgroups: new module, taken from coreutils
4218         * modules/mgetgroups: New file.
4219         * lib/mgetgroups.h: Likewise.
4220         * lib/mgetgroups.c (mgetgroups): Likewise.
4221         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
4222         * MODULES.html.sh (Users and groups): Mention it.
4223
4224         getgroups: don't expose GETGROUPS_T to user
4225         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
4226         an element at a time if GETGROUPS_T is wrong size.
4227         * lib/getugroups.h (getugroups): Change signature.
4228         * lib/unistd.in.h (getgroups): Likewise.
4229         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
4230         signature needs fixing.
4231         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
4232         AC_TYPE_GETGROUPS.
4233         * modules/group-member (Depends-on): Add getgroups.
4234         * lib/group-member.c (group_info, get_group_info): Use gid_t.
4235         (group_member): Rely on getgroups replacement.
4236         * lib/getugroups.c (getugroups): Use gid_t.
4237         * tests/test-getgroups.c (main): Likewise.
4238         * NEWS: Mention the signature change.
4239         * doc/posix-functions/getgroups.texi (getgroups): Mention the
4240         problem with signature.
4241         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
4242         GETGROUPS_T is still useful for setgroups.
4243
4244         getgroups, getugroups: provide stubs for mingw
4245         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
4246         * lib/getugroups.c (getugroups): Likewise.
4247         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
4248         function.  Modernize replacement scheme.
4249         (gl_PREREQ_GETGROUPS): Delete.
4250         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
4251         * modules/getgroups (configure.ac): Declare witness.
4252         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
4253         * modules/unistd (Depends-on): Substitute witness.
4254         * lib/unistd.in.h (getgroups): Declare replacement.
4255
4256         getgroups: avoid calling exit
4257         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
4258         drop xalloc.
4259         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
4260         dependencies.
4261         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
4262         exiting, in the rare case of malloc failure.
4263
4264         getgroups: fix logic error
4265         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
4266         has more than 20 groups.
4267         * modules/getgroups-tests: New test.
4268         * tests/test-getgroups.c: New file.
4269
4270 2009-11-13  Simon Josefsson  <simon@josefsson.org>
4271
4272         * tests/test-base64.c: Improve.
4273
4274 2009-11-13  Simon Josefsson  <simon@josefsson.org>
4275
4276         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
4277         Blake <ebb9@byu.net>.
4278
4279 2009-11-13  Simon Josefsson  <simon@josefsson.org>
4280
4281         * tests/test-xvasprintf.c: Add %s%s related checks.
4282
4283 2009-11-12  Eric Blake  <ebb9@byu.net>
4284
4285         version-etc: match standards.texi style
4286         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
4287         and use <> only for URLs.
4288
4289 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
4290
4291         fts: do not fail on a submount during traversal
4292         * lib/fts.c (fts_build): Read the stat info again after opening
4293         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
4294         Original report at http://bugzilla.redhat.com/501848.
4295
4296 2009-11-12  Jim Meyering  <meyering@redhat.com>
4297
4298         bootstrap: sync from coreutils
4299         * build-aux/bootstrap (bootstrap_epilogue): New function.
4300         Use git_modules_config in one more place.  This make bootstrap's
4301         --gnulib-srcdir option more useful for testing.
4302
4303         bootstrap: generalize autoheader check
4304         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
4305         AC_CONFIG_HEADERS.
4306
4307 2009-11-11  Eric Blake  <ebb9@byu.net>
4308
4309         mkfifoat: use new modules for Solaris and BSD bugs
4310         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
4311         * lib/mkfifoat.c (mknodat): Split...
4312         * lib/mknodat.c (mknodat): ...into new file.
4313         * modules/mkfifoat (Files): Ship new file.
4314         (Depends-on): Add mkfifo, mknod.
4315         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
4316         (Depends-on): Add symlink.
4317         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
4318         redundant with test_mkfifo.h.
4319         (do_mkfifoat, do_mknodat): New helpers.
4320
4321         mknod: new module
4322         * modules/mknod: New file.
4323         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
4324         * lib/mknod.c (mknod): Likewise.
4325         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
4326         defaults.
4327         * modules/sys_stat (Makefile.am): Substitute them.
4328         * lib/sys_stat.in.h (mknod): Declare replacement.
4329         * MODULES.html.sh (Support for systems lacking POSIX:2008):
4330         Document it.
4331         * doc/posix-functions/mknod.texi (mknod): Likewise.
4332         * modules/mknod-tests: New test.
4333         * tests/test-mknod.c: Likewise.
4334
4335         mkfifo: new module
4336         * modules/mkfifo: New file.
4337         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
4338         * lib/mkfifo.c (mkfifo): Likewise.
4339         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
4340         defaults.
4341         * modules/sys_stat (Makefile.am): Substitute them.
4342         * lib/sys_stat.in.h (mkfifo): Declare replacement.
4343         * MODULES.html.sh (Support for systems lacking POSIX:2008):
4344         Document it.
4345         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
4346         * modules/mkfifo-tests: New test.
4347         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
4348         from test-mkfifoat.c.
4349         * tests/test-mkfifo.c: New file.
4350
4351         readlink: detect FreeBSD bug
4352         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
4353         slash on symlink.
4354         * doc/posix-functions/readlink.texi (readlink): Document the bug.
4355         * tests/test-readlink.h (test_readlink): Enhance test.
4356
4357         symlink: detect FreeBSD bug
4358         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
4359         slash on symlink.
4360         * doc/posix-functions/symlink.texi (symlink): Document the bug.
4361         * tests/test-symlink.h (test_symlink): Enhance test.
4362
4363 2009-11-10  Eric Blake  <ebb9@byu.net>
4364
4365         link: detect FreeBSD bug
4366         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
4367         symlink.
4368         * doc/posix-functions/link.texi (link): Document the bug.
4369         * tests/test-link.h (test_link): Enhance test.
4370         * tests/test-linkat.c (main): Update caller.
4371
4372         unlink, remove: detect FreeBSD bug
4373         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
4374         slash on symlink.
4375         * doc/posix-functions/unlink.texi (unlink): Document the bug.
4376         * doc/posix-functions/remove.texi (remove): Likewise.
4377         * tests/test-unlink.h (test_unlink): Enhance test.
4378         * tests/test-remove.c (main): Likewise.
4379
4380 2009-11-09  Eric Blake  <ebb9@byu.net>
4381
4382         rename: detect FreeBSD bug
4383         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
4384         slash on symlink.
4385         * modules/renameat-tests (Depends-on): Add filenamecat.
4386         * tests/test-rename.h (test_rename): Allow one more errno.
4387         * tests/test-renameat.c (main): Likewise.
4388         * doc/posix-functions/rename.texi (rename): Document the bug.
4389
4390         open: detect FreeBSD bug
4391         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
4392         symlink.
4393         * doc/posix-functions/open.texi (open): Document the bug.
4394         * doc/posix-functions/utimes.texi (utimes): Likewise.
4395         * tests/test-open.h (test_open): Add parameters, and test symlink
4396         handling.
4397         * tests/test-open.c (main): Adjust caller.
4398         * tests/test-fcntl-safer.c (main): Likewise.
4399         * modules/open-tests (Depends-on): Add stdbool, symlink.
4400         * modules/fcntl-safer-tests (Depends-on): Likewise.
4401         * tests/test-openat.c (main): Add test-open tests.
4402
4403         stat: detect FreeBSD bug
4404         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
4405         symlink.
4406         * doc/posix-functions/stat.texi (stat): Document the bug.
4407         * tests/test-stat.h (test_stat_func): Add argument.
4408         * tests/test-stat.c (main): Adjust caller.
4409         * tests/test-fstatat.c (main): Likewise.
4410         * modules/stat-tests (Depends-on): Add stdbool, symlink.
4411         Reported by Jim Meyering.
4412
4413 2009-11-09  James Youngman  <jay@gnu.org>
4414
4415         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
4416         * lib/strftime.c: Correct placement of #include "ignore-value.h".
4417
4418 2009-11-08  Jim Meyering  <meyering@redhat.com>
4419
4420         utimens: remove invalid futimesat call
4421         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
4422         It used the file descriptor of the target file as the DIR_FD
4423         parameter and NULL as the file name.  That caused failure with
4424         errno == EFAULT on FreeBSD-8.0-rc2
4425
4426 2009-11-07  Eric Blake  <ebb9@byu.net>
4427
4428         fflush, freadseek: use fseeko, not fseek
4429         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
4430         (clear_ungetc_buffer): Avoid potential problems on large files.
4431         * lib/freadseek.c (freadseek): Likewise.
4432         * modules/freadseek (Depends-on): Add fseeko.
4433         * modules/fseek (configure.ac): Set a witness.
4434         * tests/test-fflush.c (main): Use fseeko.
4435         * tests/test-fpurge.c (fseek): Disable link warning.
4436         * tests/test-freadable.c (fseek): Likewise.
4437         * tests/test-freading.c (fseek): Likewise.
4438         * tests/test-fseeko.c (fseek): Likewise.
4439         * tests/test-ftell.c (fseek): Likewise.
4440         * tests/test-ftello.c (fseek): Likewise.
4441         * tests/test-fwritable.c (fseek): Likewise.
4442         * tests/test-fwriting.c (fseek): Likewise.
4443
4444 2009-11-06  Simon Josefsson  <simon@josefsson.org>
4445
4446         * modules/memchr (Depends-on): Drop getpagesize dependency.
4447
4448 2009-11-06  Simon Josefsson  <simon@josefsson.org>
4449
4450         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
4451         Reported by Ludovic Courtès.
4452         * build-aux/pmccabe2html: Improve example usage.
4453         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
4454
4455 2009-11-06  Jim Meyering  <meyering@redhat.com>
4456
4457         do-release-commit-and-tag: New module.
4458         Automate the release-commit and tag process.
4459         * build-aux/do-release-commit-and-tag: New script, from coreutils.
4460         * modules/do-release-commit-and-tag: New file.
4461         * MODULES.html.sh (Support for maintaining and releasing): Add it.
4462
4463 2009-11-06  Simon Josefsson  <simon@josefsson.org>
4464
4465         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
4466         because test-select.c uses inet_pton.
4467
4468 2009-11-06  Simon Josefsson  <simon@josefsson.org>
4469
4470         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
4471         GETADDRINFO_LIB.  Bump serial number.
4472         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
4473         Suggested by Eric Blake <ebb9@byu.net>.
4474
4475 2009-11-05  Eric Blake  <ebb9@byu.net>
4476
4477         strtod: detect darwin bug
4478         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
4479         Reported by Leo Davis.
4480
4481         freopen-safer: new module
4482         * modules/freopen-safer: New module.
4483         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
4484         * lib/freopen-safer.c (freopen_safer): New file.
4485         * lib/stdio-safer.h (freopen_safer): New declaration.
4486         * lib/stdio--.h (freopen): New override.
4487         * MODULES.html.sh (File stream based Input/Output): Mention it.
4488         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
4489         freopen-safer module.
4490         * doc/posix-functions/stderr.texi (stderr): Likewise.
4491         * doc/posix-functions/stdin.texi (stdin): Likewise.
4492         * doc/posix-functions/stdout.texi (stdout): Likewise.
4493         * modules/freopen-safer-tests: New test.
4494         * tests/test-reopen-safer.c: New file.
4495
4496 2009-11-05  Jim Meyering  <meyering@redhat.com>
4497
4498         maint.mk: Prohibit inclusion of "close-stream.h" without use.
4499         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
4500
4501 2009-11-05  Simon Josefsson  <simon@josefsson.org>
4502
4503         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
4504
4505 2009-11-05  Simon Josefsson  <simon@josefsson.org>
4506
4507         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
4508
4509 2009-11-05  Simon Josefsson  <simon@josefsson.org>
4510
4511         Fix link error.
4512         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
4513         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
4514
4515 2009-11-05  Simon Josefsson  <simon@josefsson.org>
4516
4517         * tests/test-func.c: Also test value of __func__.
4518
4519 2009-11-05  Simon Josefsson  <simon@josefsson.org>
4520
4521         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
4522         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
4523
4524 2009-11-05  Bruno Haible  <bruno@clisp.org>
4525
4526         Fix link error.
4527         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
4528         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
4529         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
4530
4531 2009-11-05  Bruno Haible  <bruno@clisp.org>
4532
4533         Tests for module 'inet_pton'.
4534         * modules/inet_pton-tests: New file.
4535         * tests/test-inet_pton.c: New file.
4536
4537 2009-11-05  Bruno Haible  <bruno@clisp.org>
4538
4539         Tests for module 'inet_ntop'.
4540         * modules/inet_ntop-tests: New file.
4541         * tests/test-inet_ntop.c: New file.
4542
4543 2009-11-04  Eric Blake  <ebb9@byu.net>
4544
4545         stdlib-safer: wrap all mkstemp variants
4546         * modules/mkostemp (configure.ac): Set witness.
4547         * modules/mkostemps (configure.ac): Likewise.
4548         * modules/mkstemps (configure.ac): Likewise.
4549         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
4550         (mkstemps_safer): Wrap more functions.
4551         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
4552         wrapping.
4553         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
4554         (mkstemps_safer): Implement the wrappers.
4555
4556         mkstemps, mkostemps: new modules
4557         * modules/mkostemps: New module.
4558         * modules/mkstemps: Likewise.
4559         * lib/mkostemps.c (mkostemps): New file.
4560         * lib/mkstemps.c (mkstemps): Likewise.
4561         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
4562         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
4563         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
4564         * modules/stdlib (Makefile.am): Substitute them.
4565         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
4566         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
4567         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
4568         * doc/gnulib.texi (Glibc stdlib.h): Include them.
4569         * MODULES.html.sh (File system functions): Mention them.
4570
4571         tempname: resync from glibc
4572         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
4573         same values for __GT_FILE as glibc.  Abort even when assertions
4574         are disabled.
4575         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
4576         match its value otherwise.  Allow idempotent inclusion.
4577         * lib/mkdtemp.c (mkdtemp): Adjust caller.
4578         * lib/mkostemp.c (mkostemp): Likewise.
4579         * lib/mkstemp.c (mkstemp): Likewise.
4580         * lib/tmpfile.c (tmpfile): Likewise.
4581         * NEWS: Document this.
4582
4583         utimens: fix use of futimens on older Linux
4584         * lib/utimens.c (fdutimens): Use updated, rather than original,
4585         timespec to avoid bug in older Linux kernel.
4586         Reported by Simon Josefsson.
4587
4588 2009-11-04  Bruno Haible  <bruno@clisp.org>
4589
4590         Make num_processors more flexible and consistent.
4591         * lib/nproc.h (enum nproc_query): New type.
4592         (num_processors): Add a 'query' argument.
4593         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
4594         (num_processors): Add a 'query' argument. Test the value of the
4595         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
4596         mingw, count the number of CPUs available for the current process.
4597         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
4598         Check for sched_getaffinity and sched_getaffinity_np.
4599         * modules/nproc (Depends-on): Add c-ctype, extensions.
4600         * NEWS: Mention the change.
4601
4602 2009-11-03  Bruno Haible  <bruno@clisp.org>
4603
4604         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
4605
4606 2009-11-03  Jim Meyering  <meyering@redhat.com>
4607
4608         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
4609         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
4610         if it is defined.
4611
4612 2009-11-02  Eric Blake  <ebb9@byu.net>
4613
4614         mktime, timegm: share common declaration
4615         * lib/mktime-internal.h: New file.
4616         * lib/mktime.c: Use it rather than open-coding a declaration.
4617         * lib/timegm.c: Likewise.
4618         * modules/mktime (Files): Ship it.
4619         * modules/timegm (Files): Likewise.
4620         Suggested by Bruno Haible.
4621
4622         test-update-copyright: update test to match script changes
4623         * tests/test-update-copyright.sh: Avoid hard-coding perl
4624         location.  Don't update *.bak created by earlier runs.
4625
4626 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
4627             Simon Josefsson  <simon@josefsson.org>
4628             Bruno Haible  <bruno@clisp.org>
4629
4630         Fix link error on Solaris 8.
4631         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
4632         also in libnsl. Define also INET_PTON_LIB.
4633         * modules/inet_pton (Link): New section.
4634
4635 2009-11-02  Simon Josefsson  <simon@josefsson.org>
4636             Bruno Haible  <bruno@clisp.org>
4637
4638         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
4639         * modules/inet_ntop (Link): New section.
4640         Reported by Boyan Kasarov <bkasarov@gmail.com>.
4641
4642 2009-11-02  Eric Blake  <ebb9@byu.net>
4643
4644         maint: avoid compiler warnings in m4 macros
4645         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
4646         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
4647
4648 2009-11-02  Simon Josefsson  <simon@josefsson.org>
4649
4650         * m4/pmccabe2html.m4: Remove file.
4651         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
4652         function.  Change maintainer.
4653         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
4654         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
4655         Courtès).
4656
4657 2009-10-31  Eric Blake  <ebb9@byu.net>
4658
4659         fseeko: fix m4 regression
4660         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
4661         regression from 2009-10-27.
4662         Reported by Ralf Wildenhues.
4663
4664 2009-10-31  Jim Meyering  <meyering@redhat.com>
4665
4666         inttostr: aesthetics and improved (compile-time) safety
4667         Define inttype_is_signed rather than inttype_is_unsigned,
4668         since the sole use is via "#if inttype_is_signed".
4669         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
4670         inttype_is_unsigned.
4671         * lib/offtostr.c (inttype_is_signed): Likewise.
4672         * lib/uinttostr.c (inttype_is_signed): Likewise.
4673         * lib/umaxtostr.c (inttype_is_signed): Likewise.
4674         * lib/inttostr.c (inttostr): Use verify to cross-check the
4675         inttype_is_signed value and the signedness of the actual type.
4676         * modules/inttostr (Depends-on): Add verify.
4677
4678 2009-10-30  Eric Blake  <ebb9@byu.net>
4679
4680         build: avoid compiler warnings
4681         * lib/fchmodat.c (lchmod): Mark unused variables.
4682         * lib/getopt.c (_getopt_initialize): Likewise.
4683         * lib/mktime.c (__mktime_internal): Provide prototype.
4684         * lib/inttostr.c (inttostr): Avoid compiler warning even with
4685         older gcc that do not understand #pragma GCC diagnostic.
4686         * lib/uinttostr.c (inttype_is_unsigned): Define.
4687         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
4688
4689 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
4690
4691         stat: fix compilation on AIX
4692         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
4693         only see struct stat64.
4694
4695 2009-10-30  Eric Blake  <ebb9@byu.net>
4696
4697         exclude: make more robust
4698         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
4699         rather than masking a coding bug.
4700         Suggested by Bruno Haible.
4701
4702 2009-10-30  Jim Meyering  <meyering@redhat.com>
4703
4704         perl scripts: remove #!/usr/bin/perl in favor of more portable...
4705         Rather than putting #!/usr/bin/perl on the first line,
4706         start with a variant of what's recommended by "man perlrun" that
4707         invokes the first "perl" program from your shell's search path.
4708         * build-aux/gitlog-to-changelog: Replace #!... as above.
4709         Add a "Local Variables" perl mode setting.
4710         Prompted by a patch from Ludovic Courtès.
4711         Improved by Eric Blake.
4712         * build-aux/useless-if-before-free: Likewise.
4713         * build-aux/announce-gen: Likewise.
4714         * build-aux/update-copyright: Likewise.
4715
4716 2009-10-29  Eric Blake  <ebb9@byu.net>
4717
4718         filenamecat-lgpl: adjust clients
4719         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
4720         filenamecat.
4721         * modules/renameat (Depends-on): Likewise.
4722
4723         filenamecat: split into filenamecat-lgpl
4724         * modules/filenamecat-lgpl: New module.
4725         * modules/filenamecat (Files): Move library-safe files into
4726         filenamecat-lgpl.
4727         (Depends-on): Add filenamecat-lgpl.
4728         (configure.ac): Declare witness.
4729         * lib/filenamecat.h (file_name_concat): Only declare when using
4730         GPL module.
4731         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
4732         Move...
4733         * lib/filenamecat-lgpl.c: ...into new file.
4734         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
4735         (gl_FILE_NAME_CONCAT): Use it.
4736         * MODULES.html.sh (File system functions): Mention new module.
4737
4738         argp: avoid memory leak
4739         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
4740         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
4741         base_name, since the latter malloc()s and can call exit().
4742         Leak introduced 2006-07-03.
4743
4744         dirname-lgpl: adjust clients that don't need full dirname
4745         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
4746         * modules/filenamecat (Depends-on): Likewise.
4747         * modules/linkat (Depends-on): Likewise.
4748         * modules/mkancesdirs (Depends-on): Likewise.
4749         * modules/mkdir (Depends-on): Likewise.
4750         * modules/openat (Depends-on): Likewise.
4751         * modules/savewd (Depends-on): Likewise.
4752         * modules/rename (Depends-on): Likewise.
4753         (License): Relax license.
4754         * modules/mkdir-tests (Depends-on): Drop progname.
4755         (Makefile.am): Delete unneeded LDADD.
4756         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
4757
4758         dirname: split into dirname-lgpl
4759         * modules/dirname-lgpl: New module.
4760         * modules/dirname (Files): Move library-safe files into
4761         dirname-lgpl.
4762         (Depends-on): Add dirname-lgpl.
4763         (configure.ac): Declare witness.
4764         * modules/double-slash-root (License): Relax license.
4765         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
4766         module.
4767         * lib/dirname.c (dir_len, mdir_name): Move...
4768         * lib/dirname-lgpl.c: ...into new file.
4769         * lib/basename.c (last_component, base_len): Move...
4770         * lib/basename-lgpl.c: ...into new file.
4771         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
4772         (gl_DIRNAME): Use it.
4773         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
4774         Mention new module.
4775         * modules/dirname-tests (Depends-on): Add progname.
4776         * tests/test-dirname.c (program_name): Delete.
4777
4778         mkdir: make safe for libraries
4779         * modules/mkdir (Depends-on): Drop xalloc.
4780         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
4781         exit.
4782
4783         tests: avoid some compiler warnings
4784         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
4785         literals.
4786         * tests/test-memchr.c (main): Avoid type mismatch.
4787         * tests/test-arpa_inet.c (main): Avoid unused parameters.
4788         * tests/test-base64.c (main): Likewise.
4789         * tests/test-getdelim.c (main): Likewise.
4790         * tests/test-gethostname.c (main): Likewise.
4791         * tests/test-getline.c (main): Likewise.
4792         * tests/test-netinet_in.c (main): Likewise.
4793         * tests/test-select.c (open_server_socket, main): Likewise.
4794         * tests/test-select-stdin.c (main): Likewise.
4795         * tests/test-sockets.c (main): Likewise.
4796         * tests/test-strsignal.c (main): Likewise.
4797         * tests/test-sys_select.c (main): Likewise.
4798         * tests/test-sys_socket.c (main): Likewise.
4799         * tests/test-u64.c (main): Likewise.
4800         * tests/test-xfprintf-posix.c (main): Likewise.
4801         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
4802
4803         sockets: avoid compiler warning
4804         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
4805
4806         maint: detect usage(1) and other suspicious exits
4807         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
4808
4809 2009-10-29  Jim Meyering  <meyering@redhat.com>
4810
4811         timespec: long-to-int truncation could make timespec_cmp malfunction
4812         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
4813         a multiple of 2^32 nanoseconds as no difference.
4814
4815 2009-10-28  Jim Meyering  <meyering@redhat.com>
4816
4817         fprintftime: wrap macro code argument in "do {...} while(0)"
4818         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
4819         cpy macro must be a statement that can be followed by a semicolon.
4820         Now that the else clause contains a comment and is hence longer
4821         than one line, I require curly braces.  That in turn requires
4822         that we wrap this code block in the standard do...while(0).
4823
4824         fprintftime: remove stray semicolon from previous change
4825         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
4826
4827         fprintftime: avoid a warning about ignored fwrite return value
4828         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
4829         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
4830         that is unsafe.
4831         * modules/fprintftime (Depends-on): Add ignore-value.
4832
4833         exclude: avoid an unwarranted warning
4834         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
4835
4836 2009-10-27  Eric Blake  <ebb9@byu.net>
4837
4838         fseek: avoid compilation failure when fflush is replaced
4839         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
4840         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
4841         module is in use.
4842         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
4843         module is not in use; since REPLACE_FSEEK worked otherwise.
4844         (GNULIB_FTELLO): Likewise for ftell.
4845         Reported by Ian Beckwith and others.
4846
4847 2009-10-27  Bruno Haible  <bruno@clisp.org>
4848
4849         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
4850         Reported by Jim Meyering.
4851
4852 2009-10-27  Jim Meyering  <jim@meyering.net>
4853             Bruno Haible  <bruno@clisp.org>
4854
4855         Avoid warning despite dropping the return value of fwrite.
4856         * lib/unicodeio.c: Include ignore-value.h.
4857         (fwrite_success_callback): Explicitly ignore fwrite's return value.
4858         * modules/unicodeio (Depends-on): Add ignore-value.
4859
4860 2009-10-26  Eric Blake  <ebb9@byu.net>
4861
4862         areadlinkat: fix fallback path
4863         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
4864         pointer and zero.
4865
4866 2009-10-22  Pádraig Brady  <P@draigBrady.com>
4867
4868         Use a better IO block size for modern systems
4869         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
4870         * lib/md2.c: Likewise.
4871         * lib/md4.c: Likewise.
4872         * lib/md5.c: Likewise.
4873         * lib/sha1.c: Likewise.
4874         * lib/sha256.c: Likewise.
4875         * lib/sha512.c: Likewise.
4876
4877 2009-10-22  Eric Blake  <ebb9@byu.net>
4878
4879         tests: avoid several compiler warnings
4880         * tests/test-getcwd.c (main): Avoid buffer underflow.
4881         * tests/test-getdate.c (main): String literals are not safe with
4882         putenv, so use setenv.  Declare unused argument.
4883         * modules/getdate-tests (Depends-on): Add setenv.
4884         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
4885         problems with string literals in char *.
4886         * tests/test-hash.c (main): Avoid shadowing declaration.
4887         (insert_new): Treat string literals as char const *.
4888         * tests/test-getopt.h (test_getopt): Likewise.
4889         (getopt_loop): Alter types to minimize casting elsewhere.
4890         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
4891         (test_getopt_long_posix): Likewise.
4892         (do_getopt_long): Add wrapper to minimize casting.
4893         * tests/test-atexit.c (clear_temp_file): Use void.
4894         * tests/test-areadlink-with-size.c (main): Declare unused
4895         arguments.
4896         * tests/test-areadlink.c (main): Likewise.
4897         * tests/test-areadlinkat-with-size.c (main): Likewise.
4898         * tests/test-areadlinkat.c (main): Likewise.
4899         * tests/test-canonicalize-lgpl.c (main): Likewise.
4900         * tests/test-canonicalize.c (main): Likewise.
4901         * tests/test-dirent-safer.c (main): Likewise.
4902         * tests/test-dirname.c (main): Likewise.
4903         * tests/test-dup2.c (main): Likewise.
4904         * tests/test-fchdir.c (main): Likewise.
4905         * tests/test-fcntl-h.c (main): Likewise.
4906         * tests/test-fcntl-safer.c (main): Likewise.
4907         * tests/test-fdopendir.c (main): Likewise.
4908         * tests/test-fdutimensat.c (main): Likewise.
4909         * tests/test-fflush.c (main): Likewise.
4910         * tests/test-filenamecat.c (main): Likewise.
4911         * tests/test-filevercmp.c (main): Likewise.
4912         * tests/test-fopen-safer.c (main): Likewise.
4913         * tests/test-fopen.c (main): Likewise.
4914         * tests/test-fpending.c (main): Likewise.
4915         * tests/test-fpurge.c (main): Likewise.
4916         * tests/test-freading.c (main): Likewise.
4917         * tests/test-fstatat.c (main): Likewise.
4918         * tests/test-fsync.c (main): Likewise.
4919         * tests/test-futimens.c (main): Likewise.
4920         * tests/test-getndelim2.c (main): Likewise.
4921         * tests/test-gettimeofday.c (main): Likewise.
4922         * tests/test-getopt.c (main): Likewise.
4923         * tests/test-i-ring.c (main): Likewise.
4924         * tests/test-inttypes.c (main): Likewise.
4925         * tests/test-link.c (main): Likewise.
4926         * tests/test-lstat.c (main): Likewise.
4927         * tests/test-math.c (main): Likewise.
4928         * tests/test-md5.c (main): Likewise.
4929         * tests/test-memchr2.c (main): Likewise.
4930         * tests/test-memrchr.c (main): Likewise.
4931         * tests/test-mkdir.c (main): Likewise.
4932         * tests/test-mkdirat.c (main): Likewise.
4933         * tests/test-mkfifoat.c (main): Likewise.
4934         * tests/test-open.c (main): Likewise.
4935         * tests/test-openat-safer.c (main): Likewise.
4936         * tests/test-openat.c (main): Likewise.
4937         * tests/test-quotearg.c (main): Likewise.
4938         * tests/test-rawmemchr.c (main): Likewise.
4939         * tests/test-readlink.c (main): Likewise.
4940         * tests/test-remove.c (main): Likewise.
4941         * tests/test-rename.c (main): Likewise.
4942         * tests/test-renameat.c (main): Likewise.
4943         * tests/test-rmdir.c (main): Likewise.
4944         * tests/test-sha1.c (main): Likewise.
4945         * tests/test-signal.c (main): Likewise.
4946         * tests/test-sigaction.c (main): Likewise.
4947         * tests/test-stat.c (main): Likewise.
4948         * tests/test-stat-time.c (main): Likewise.
4949         * tests/test-stddef.c (main): Likewise.
4950         * tests/test-stdint.c (main): Likewise.
4951         * tests/test-stdio.c (main): Likewise.
4952         * tests/test-stdlib.c (main): Likewise.
4953         * tests/test-strchrnul.c (main): Likewise.
4954         * tests/test-strerror.c (main): Likewise.
4955         * tests/test-string.c (main): Likewise.
4956         * tests/test-strtod.c (main): Likewise.
4957         * tests/test-strverscmp.c (main): Likewise.
4958         * tests/test-symlink.c (main): Likewise.
4959         * tests/test-symlinkat.c (main): Likewise.
4960         * tests/test-sys_stat.c (main): Likewise.
4961         * tests/test-sys_time.c (main): Likewise.
4962         * tests/test-time.c (main): Likewise.
4963         * tests/test-unistd.c (main): Likewise.
4964         * tests/test-unlink.c (main): Likewise.
4965         * tests/test-unlinkat.c (main): Likewise.
4966         * tests/test-utimens.c (main): Likewise.
4967         * tests/test-utimensat.c (main): Likewise.
4968         * tests/test-version-etc.c (main): Likewise.
4969         * tests/test-wchar.c (main): Likewise.
4970         * tests/test-wctype.c (main): Likewise.
4971         * tests/test-xprintf-posix.c (main): Likewise.
4972         * tests/test-posixtm.c (main): Likewise.
4973         (STREQ): Delete unused macro.
4974         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
4975         shadowed variables.
4976         * tests/test-memchr.c (main): Likewise.
4977
4978 2009-10-21  Eric Blake  <ebb9@byu.net>
4979
4980         areadlinkat: avoid failure on older glibc
4981         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
4982         rather than mis-comparing 0 against FUNC_RESULT of char*.
4983
4984 2009-10-21  Bruno Haible  <bruno@clisp.org>
4985
4986         * modules/stpncpy (License): Relicense under LGPLv2+.
4987         Reported by David Lutterkort <lutter@redhat.com>.
4988
4989 2009-10-20  Eric Blake  <ebb9@byu.net>
4990
4991         utimensat: work around Solaris 9 bug
4992         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
4993         has trailing slash bugs.
4994         * tests/test-lutimens.h (test_lutimens): Enhance test.
4995         * tests/test-utimens.h (test_utimens): Likewise.
4996         * doc/posix-functions/utime.texi (utime): Enhance documentation.
4997         * doc/posix-functions/utimes.texi (utimes): Likewise.
4998         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
4999         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
5000         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
5001         * doc/posix-functions/futimens.texi (futimens): Likewise.
5002
5003         fdutimensat: new module
5004         * modules/fdutimensat: New file.
5005         * lib/fdutimensat.c (fdutimensat): Likewise.
5006         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
5007         * MODULES.html.sh (File system functions): Mention module.
5008         * modules/fdutimensat-tests: New test.
5009         * tests/test-fdutimensat.c: Likewise.
5010
5011         doc: regenerate INSTALL
5012         * doc/INSTALL: Reflect recent autoconf update.
5013         * doc/INSTALL.ISO: Likewise.
5014         * doc/INSTALL.UTF-8: Likewise.
5015
5016 2009-10-20  Pádraig Brady  <P@draigBrady.com>
5017
5018         acl: warn if ACL support is not detected
5019         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
5020
5021 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
5022
5023         * lib/nproc.h: Add extern "C" block for C++.
5024
5025 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
5026             Bruno Haible  <bruno@clisp.org>
5027
5028         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
5029         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
5030         * doc/posix-functions/isalpha.texi: Likewise.
5031         * doc/posix-functions/isblank.texi: Likewise.
5032         * doc/posix-functions/iscntrl.texi: Likewise.
5033         * doc/posix-functions/isdigit.texi: Likewise.
5034         * doc/posix-functions/isgraph.texi: Likewise.
5035         * doc/posix-functions/islower.texi: Likewise.
5036         * doc/posix-functions/isprint.texi: Likewise.
5037         * doc/posix-functions/ispunct.texi: Likewise.
5038         * doc/posix-functions/isspace.texi: Likewise.
5039         * doc/posix-functions/isupper.texi: Likewise.
5040         * doc/posix-functions/isxdigit.texi: Likewise.
5041
5042 2009-10-18  Bruno Haible  <bruno@clisp.org>
5043
5044         Tests for module 'isblank'.
5045         * modules/isblank-tests: New file.
5046         * tests/test-isblank.c: New file.
5047
5048         New module 'isblank'.
5049         * lib/isblank.c: New file.
5050         * m4/isblank.m4: New file.
5051         * modules/isblank: New file.
5052         * doc/posix-functions/isblank.texi: Mention the new module.
5053
5054 2009-10-18  Bruno Haible  <bruno@clisp.org>
5055
5056         New module 'ctype'.
5057         * lib/ctype.in.h: New file.
5058         * m4/ctype.m4: New file.
5059         * modules/ctype: New file.
5060         * doc/posix-headers/ctype.texi: Mention the new module.
5061
5062 2009-10-18  Jim Meyering  <meyering@redhat.com>
5063
5064         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
5065         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
5066         right after its initialization, rather than farther down.
5067         Keeping these in close proximity makes it easier to ensure
5068         that each such variable is initialized.  E.g.,
5069
5070             LIB_CLOCK_GETTIME=
5071             AC_SUBST([LIB_CLOCK_GETTIME])
5072
5073         This change also increments these serial numbers.
5074         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
5075         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
5076         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5077
5078 2009-10-18  Bruno Haible  <bruno@clisp.org>
5079
5080         Don't let environment variables perturb build.
5081         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
5082         (gl_PREREQ_GETHRXTIME): ... not here.
5083
5084 2009-10-18  Bruno Haible  <bruno@clisp.org>
5085
5086         Avoid symlink attack in localcharset module.
5087         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
5088         (O_NOFOLLOW): Define fallback.
5089         (get_charset_aliases): Don't open the file if it is a symbolic link.
5090         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
5091         gl_FCNTL_H.
5092         (gl_FCNTL_H): Require it.
5093         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
5094         * modules/localcharset (Files): Add m4/fcntl_h.m4.
5095         Reported by Fergal Glynn <fglynn@veracode.com>.
5096
5097 2009-10-18  Bruno Haible  <bruno@clisp.org>
5098
5099         Implement nproc for mingw.
5100         * lib/nproc.c: Include <windows.h>
5101         (num_processors): On native Windows platforms, try GetSystemInfo.
5102
5103 2009-10-18  Bruno Haible  <bruno@clisp.org>
5104
5105         Implement nproc for IRIX.
5106         * lib/nproc.c: Include <sys/sysmp.h>.
5107         (num_processors): On IRIX systems, try sysmp.
5108         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
5109
5110 2009-10-18  Bruno Haible  <bruno@clisp.org>
5111
5112         Implement nproc for HP-UX.
5113         * lib/nproc.c: Include <sys/pstat.h>
5114         (num_processors): On HP-UX systems, try pstat_getdynamic.
5115         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
5116         pstat_getdynamic.
5117
5118 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
5119             Bruno Haible  <bruno@clisp.org>
5120
5121         Implement nproc for NetBSD, OpenBSD.
5122         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
5123         (ARRAY_SIZE): New macro.
5124         (num_processors): On BSD systems, try sysctl of HW_NCPU.
5125         * m4/nproc.m4: New file.
5126         * modules/nproc (Files): Add m4/nproc.m4.
5127         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
5128         (Makefile.am): Instead, augment lib_SOURCES.
5129
5130 2009-10-18  Bruno Haible  <bruno@clisp.org>
5131
5132         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
5133         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
5134         sys/param.h.
5135
5136 2009-10-16  Eric Blake  <ebb9@byu.net>
5137
5138         utimensat: new module
5139         * modules/utimensat: New file.
5140         * lib/utimensat.c (utimensat): Likewise.
5141         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
5142         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
5143         so we can work around Linux bugs.
5144         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
5145         * modules/sys_stat (Makefile.am): Substitute them.
5146         * lib/sys_stat.in.h (utimensat): Declare it.
5147         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
5148         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
5149         * modules/utimensat-tests: New test.
5150         * tests/test-utimensat.c: Likewise.
5151
5152         utimens: let lutimens work on non-symlinks
5153         * lib/utimens.c (lutimens): Fall back to utimens rather than
5154         failing with ENOSYS, when file is not a symlink.
5155         (utimens): Reduce redirection.
5156         * tests/test-lutimens.h (test_lutimens): Update test to cover
5157         non-symlinks.
5158         * tests/test-utimens.h (test_utimens): Update test to cover
5159         symlinks.
5160         * tests/test-utimens.c (main): Update caller.
5161
5162         utimens: cache whether utimensat syscall works
5163         * lib/utimens.c (utimensat_works_really): New cache variable.
5164         (fdutimens, lutimens): Use it to avoid failing syscall.
5165
5166         test-stat-time, test-utimens: improve portability
5167         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
5168         ext4 on alpha, and for cygwin.
5169         * tests/test-utimens-common.h: New file.
5170         (nap): Factor delays into single function.
5171         * tests/test-lutimens.h (test_lutimens): Use new header.
5172         * tests/test-futimens.h (test_futimens): Likewise.
5173         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
5174         timestamps to occur from same machine, as was done previously for
5175         test_utimens.
5176         * modules/utimens-tests (Files): Ship new file.
5177         * modules/futimens-tests (Files): Likewise.
5178         Reported in part by Jim Meyering.
5179
5180         sys_stat: sort replacement declarations
5181         * lib/sys_stat.in.h: Sort declarations.
5182         * lib/futimens.c (futimens): Fix typo.
5183
5184 2009-10-15  Jim Meyering  <meyering@redhat.com>
5185
5186         don't let environment settings perturb build
5187         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
5188         could cause a configure-time and/or build-time malfunction.
5189         Typically, a configure-time function-in-library test is performed
5190         via code like this:
5191
5192           LIB_VAR=
5193           AC_SUBST([LIB_VAR])
5194           prefix_saved_LIBS=$LIBS
5195             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
5196                        [test "$ac_cv_search_FUNC" = "none required" ||
5197                         LIB_VAR=$ac_cv_search_FUNC])
5198           LIBS=$prefix_saved_LIBS
5199
5200         However, in each of the files affected by this change, the LIB_VAR=
5201         initialization was omitted.  Thus, when set in the environment, its
5202         value would propagate into generated Makefiles when FUNC is not found
5203         in LIB_NAME.
5204         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
5205         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
5206         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5207
5208 2009-10-14  Eric Blake  <ebb9@byu.net>
5209
5210         fchdir: avoid infinite recursion in mingw
5211         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
5212         recursing.
5213
5214         test-stat-time: port to mingw
5215         * tests/test-stat-time.c (force_unlink): Return a value.
5216         (test_ctime) [W32]: Fix compilation error.
5217         (nap): Don't call usleep with too large an argument.  Use
5218         force_unlink.
5219         * doc/pastposix-functions/usleep.texi (usleep): Document the
5220         portability issue.
5221
5222 2009-10-13  Jim Meyering  <meyering@redhat.com>
5223
5224         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
5225         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
5226         * modules/pipe-filter-ii: Likewise.
5227         * modules/sys_socket-tests: Likewise.
5228         * modules/tsearch-tests: Likewise.
5229         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
5230         (check): Depend on it.
5231
5232 2009-10-12  Eric Blake  <ebb9@byu.net>
5233
5234         utimens-tests: port to NFS file systems
5235         * tests/test-utimens.h (test_utimens): Refactor utimecmp
5236         comparisons to avoid spurious failures from timestamp drift
5237         between NFS machines.
5238
5239 2009-10-12  Eric Blake  <ebb9@byu.net>
5240
5241         stat-time-tests: minor cleanups
5242         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
5243         * tests/test-stat-time.c (nap): Separate assignment from call.
5244         Suggested by Paolo Bonzini and Bruno Haible.
5245
5246         sys_stat: guarantee struct timespec
5247         * lib/sys_stat.in.h (includes): Always include <time.h>
5248         * modules/sys_stat (Depends-on): Add time.
5249         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
5250         mode_t permission values.
5251         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
5252         get at subsecond timestamps.
5253
5254 2009-10-10  Eric Blake  <ebb9@byu.net>
5255
5256         futimens: new module
5257         * modules/futimens: New file.
5258         * lib/futimens.c (futimens): Likewise.
5259         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
5260         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
5261         we can work around Linux bugs.
5262         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
5263         * modules/sys_stat (Makefile.am): Substitute them.
5264         * lib/sys_stat.in.h (futimens): Declare it.
5265         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
5266         * doc/posix-functions/futimens.texi (futimens): Likewise.
5267         * modules/futimens-tests: New test.
5268         * tests/test-futimens.c: Likewise.
5269
5270         utimens: introduce fdutimens
5271         * lib/utimens.h (fdutimens): New prototype.
5272         * lib/utimens.c (gl_futimens): Move guts...
5273         (fdutimens): ...to new interface.
5274         * tests/test-utimens.c (do_fdutimens): Use it.
5275
5276         utimens: add UTIME_NOW and UTIME_OMIT support
5277         * lib/utimens.c (validate_timespec, update_timespec): New helper
5278         functions.
5279         (gl_futimens, lutimens): Use them.
5280         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
5281         stdbool, sys_stat.
5282         (Link): Mention resulting library dependency.
5283         * modules/utimecmp (Link): Likewise.
5284         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
5285         (Makefile.am): Pick up library dependency.
5286         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
5287         definition.
5288         * tests/test-sys_stat.c: Test the definitions.
5289         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
5290         * NEWS: Document library dependency.
5291
5292         utimecmp: support symlink timestamps
5293         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
5294         hashing when possible.  Use pathconf when available.
5295         (SYSCALL_RESOLUTION): Recognize tighter resolution.
5296         * modules/utimecmp (Depends-on): Add lstat.
5297
5298         utimens: add lutimens interface
5299         * lib/utimens.c (lutimens): New function.
5300         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
5301         * lib/utimens.h (lutimens): Declare new interface.
5302         * tests/test-utimens.c (main): Enhance test.
5303         * tests/test-lutimens.h (test_lutimens): New file.
5304         * modules/utimens-tests (Files): Distribute it.
5305         (Depends-on): Add symlink.
5306         (configure.ac): Check for usleep.
5307
5308         utimens: validate futimens usage
5309         * lib/utimens.c (gl_futimens): Require valid fd up front, using
5310         fewer syscalls on failure later on.  Avoid compiler warning on
5311         mingw.
5312         * modules/utimens (Depends-on): Add dup2.
5313
5314         utimens: add test
5315         * modules/utimens-tests: New test.
5316         * tests/test-utimens.h: New file.
5317         * tests/test-futimens.h: Likewise.
5318         * tests/test-utimens.c: Likewise.
5319
5320         doc: mention timestamp portability issues
5321         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
5322         instead.
5323         * doc/posix-functions/utime.texi (utime): Likewise.
5324         * doc/posix-functions/utimes.texi (utimes): Likewise.
5325         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
5326         instead.
5327         * doc/posix-functions/futimens.texi (futimens): Mention utimens
5328         module.
5329         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
5330         Mention weakness with symlink timestamps.
5331         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
5332         to utimensat/futimens instead.
5333         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
5334
5335         test-dup2: enhance test
5336         * tests/test-dup2.c (main): Also check AT_FDCWD.
5337
5338         test-stat-time: avoid more spurious failures
5339         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
5340         xfs; and avoid race if the two timestamps cross quantization edge.
5341
5342         relocatable: prefer 'file system' over 'filesystem'
5343         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
5344         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
5345         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
5346         * doc/relocatable.texi (Enabling Relocatability): Likewise.
5347         * lib/relocatable.c (compute_curr_prefix): Likewise.
5348
5349 2009-10-10  Jim Meyering  <meyering@redhat.com>
5350
5351         stat-time-tests: check for the usleep function
5352         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
5353
5354 2009-10-10  Bruno Haible  <bruno@clisp.org>
5355
5356         * modules/xnanosleep: Put the Link section after the Include section.
5357
5358 2009-10-09  Eric Blake  <ebb9@byu.net>
5359
5360         dup2: work around FreeBSD 6.1 bug
5361         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
5362         * doc/posix-functions/dup2.texi (dup2): Document it.
5363         Reported by Nelson H. F. Beebe and Jim Meyering.
5364
5365         test-stat-time: port to buggy NFS clients
5366         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
5367         (test_ctime): Also skip test if mtime and ctime are skewed.
5368
5369         maint: prefer 'file system' over 'filesystem'
5370         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
5371         * doc/posix-functions/lstat.texi (lstat): Likewise.
5372         * lib/file-has-acl.c (file_has_acl): Likewise.
5373         * lib/fwriteerror.c [TEST]: Likewise.
5374         * tests/test-areadlink.h (test_areadlink): Likewise.
5375         * tests/test-areadlinkat-with-size.c (main): Likewise.
5376         * tests/test-areadlinkat.c (main): Likewise.
5377         * tests/test-canonicalize-lgpl.c (main): Likewise.
5378         * tests/test-canonicalize.c (main): Likewise.
5379         * tests/test-fstatat.c (main): Likewise.
5380         * tests/test-linkat.c (main): Likewise.
5381         * tests/test-lstat.h (test_lstat_func): Likewise.
5382         * tests/test-mkdir.h (test_mkdir): Likewise.
5383         * tests/test-readlink.h (test_readlink): Likewise.
5384         * tests/test-remove.c (main): Likewise.
5385         * tests/test-rename.h (test_rename): Likewise.
5386         * tests/test-renameat.c (main): Likewise.
5387         * tests/test-rmdir.h (test_rmdir_func): Likewise.
5388         * tests/test-symlink.h (test_symlink): Likewise.
5389         * tests/test-symlinkat.c (main): Likewise.
5390         * tests/test-unlink.h (test_unlink_func): Likewise.
5391         * tests/test-unlinkat.c (main): Likewise.
5392
5393         maint: make realtime library usage explicit
5394         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
5395         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
5396         * modules/settime (Link): Likewise.
5397         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
5398
5399         test-stat-time: speed up execution
5400         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
5401         warning on mingw.
5402         (nap): New helper function.
5403         (prepare_test): Use it to reduce sleep time.
5404         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
5405         execution.
5406         * modules/stat-time-tests (configure.ac): Check for usleep.
5407
5408 2009-10-09  Jim Meyering  <meyering@redhat.com>
5409
5410         selinux-h: always use getfilecon wrappers
5411         * lib/getfilecon.c: New file.
5412         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
5413         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
5414         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
5415         (fgetfilecon): Provide a stub.
5416         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
5417         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
5418         file unconditionally.
5419         When <selinux/selinux.h> is found, arrange to use wrappers.
5420         * modules/selinux-h (Files): Add getfilecon.c.
5421         (Makefile.am): Substitute include-next-related bits
5422         into the now-always-generated selinux/selinux.h file.
5423         * doc/glibc-functions/lgetfilecon.texi: New file.
5424         * doc/glibc-functions/fgetfilecon.texi: New file.
5425         * doc/glibc-functions/getfilecon.texi: New file.
5426         * doc/glibc-functions/getfilecon-desc.texi: New file.
5427         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
5428         which to pull in the new files.
5429         * MODULES.html.sh (Misc): Add selinux-h.
5430
5431 2009-10-08  Jim Meyering  <meyering@redhat.com>
5432
5433         unistd: fix comment typo
5434         * lib/unistd.in.h (euidaccess): Fix a comment typo.
5435
5436 2009-10-08  Eric Blake  <ebb9@byu.net>
5437
5438         areadlink: use SIZE_MAX consistently
5439         * modules/areadlink (Depends-on): Add stdint.
5440         * modules/areadlink-with-size (Depends-on): Likewise.
5441         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
5442         gives NULL; drop sys/types, since unistd gives size_t; and add
5443         stdint for SIZE_MAX.
5444         (SIZE_MAX): Rely on headers.
5445         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
5446         and add stdint.
5447         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
5448         (SIZE_MAX): Likewise.
5449         (INITIAL_BUF_SIZE): Turn into enum.
5450         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
5451
5452 2009-10-08  Jim Meyering  <meyering@redhat.com>
5453
5454         areadlinkat: avoid compilation failure
5455         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
5456         Fix typo in comment.
5457
5458 2009-10-07  Eric Blake  <ebb9@byu.net>
5459
5460         areadlinkat-with-size: new module
5461         * modules/areadlinkat-with-size: New module.
5462         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
5463         * lib/areadlink.h (areadlinkat): Declare it.
5464         * MODULES.html.sh (File system functions): Mention it.
5465         * modules/areadlinkat-with-size-tests: New test.
5466         * tests/test-areadlinkat-with-size.c: New file.
5467
5468         xreadlinkat: new module
5469         * modules/xreadlinkat: New module.
5470         * lib/xreadlinkat.c (xreadlinkat): New file.
5471         * lib/xreadlink.h (xreadlinkat): Declare it.
5472         * MODULES.html.sh (File system functions): Mention it.
5473
5474         areadlinkat: new module
5475         * lib/at-func.c (FUNC_FAIL): New define.
5476         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
5477         * modules/areadlinkat: New module.
5478         * lib/linkat.c (areadlinkat): Move...
5479         * lib/areadlinkat.c (areadlinkat): ...to new file.
5480         * lib/areadlink.h (areadlinkat): Declare it.
5481         * modules/linkat (Depends-on): Add areadlinkat.
5482         * MODULES.html.sh (File system functions): Mention it.
5483         * modules/areadlinkat-tests: New test.
5484         * tests/test-areadlinkat.c: New file.
5485
5486         areadlink, areadlink-with-size: add tests
5487         * modules/areadlink-tests: New test.
5488         * modules/areadlink-with-size-tests: Likewise.
5489         * tests/test-areadlink.h: New file.
5490         * tests/test-areadlink.c: Likewise.
5491         * tests/test-areadlink-with-size.c: Likewise.
5492
5493         maint: minor cleanups
5494         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
5495         _UNUSED_PARAMETER_ instead.
5496         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
5497         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
5498         * modules/linkat-tests (Files): Distribute test-link.h.
5499
5500         openat, utimens: whitespace cleanup
5501         * lib/openat.c: Prefer space throughout, rather than mix of 8
5502         spaces vs. tabs.
5503         * lib/at-func.c: Likewise.
5504         * lib/utimens.c: Likewise.
5505
5506         openat: avoid using wrong fd
5507         * lib/openat.c (openat_permissive): Reject user's fd if saving the
5508         working directory chooses same fd.
5509         * lib/at-func.c (AT_FUNC_NAME): Likewise.
5510
5511         mkdir, mkdirat: fix cygwin 1.5.x bug
5512         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
5513         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
5514         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
5515         bug.
5516         (gl_PREREQ_MKDIR): Delete unused macro.
5517         * modules/mkdir (Files): Track file rename.
5518         (configure.ac): Update macro name.
5519         * modules/openat (Depends-on): Add mkdir.
5520         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
5521
5522         mkdir, mkdirat: add tests
5523         * modules/mkdir-tests: New test.
5524         * tests/test-mkdir.h: New file.
5525         * tests/test-mkdir.c: Likewise.
5526         * tests/test-mkdirat.c: Likewise.
5527         * modules/openat-tests (Files): Add new files.
5528         (Makefile.am): Run new test.
5529
5530 2009-10-06  Eric Blake  <ebb9@byu.net>
5531
5532         doc: tweak *at function documentation
5533         * doc/posix-functions/faccessat.texi (faccessat): Mention
5534         known issue with replacement.
5535         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
5536         * doc/posix-functions/linkat.texi (linkat): Likewise.
5537         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
5538         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
5539         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
5540         * doc/posix-functions/renameat.texi (renameat): Likewise.
5541         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
5542
5543         openat: fix GNU/Hurd bug in unlinkat
5544         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
5545         broken.
5546         * doc/posix-functions/unlink.texi (unlink): Document this.
5547         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
5548
5549         fdopendir: fix GNU/Hurd bug
5550         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
5551         allowing non-directory fds.
5552         * lib/fdopendir.c (rpl_fdopendir): Work around it.
5553         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
5554         * modules/dirent (Makefile.am): Substitute it.
5555         * lib/dirent.in.h (fdopendir): Declare replacement.
5556         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
5557         * tests/test-fdopendir.c (main): Test something other than
5558         /dev/null, since on Hurd that behaves like a directory.
5559
5560         test-symlink: port to GNU/Hurd
5561         * tests/test-symlink.h (test_symlink): Relax expected errno.
5562
5563         doc: tweak more cygwin information
5564         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
5565         now compatible with glibc.
5566         * doc/posix-functions/getopt.texi (getopt): Likewise.
5567
5568         getopt-gnu: add another test
5569         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
5570         guarantee behavior relied on by m4.
5571         * tests/test-getopt.c (main): Use it.
5572         * modules/getopt-posix-tests (Depends-on): Add setenv.
5573         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
5574
5575         getopt: fix compilation on darwin
5576         * lib/getopt.in.h (includes): Leave breadcrumbs during system
5577         include.
5578         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
5579         Reported by Ludovic Courtès.
5580
5581 2009-10-06  Bruno Haible  <bruno@clisp.org>
5582
5583         * modules/size_max (Description): Discourage its use.
5584         Reported by Simon Josefsson.
5585
5586 2009-10-06  Jim Meyering  <meyering@redhat.com>
5587
5588         linkat: avoid compilation failure
5589         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
5590
5591 2009-10-05  Eric Blake  <ebb9@byu.net>
5592
5593         linkat: support Linux 2.6.17
5594         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
5595         linkat on Linux, but allow cache variable override.
5596         * lib/linkat.c (rpl_linkat): Define override.
5597         * modules/linkat (Depends-on): Add symlinkat.
5598         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
5599         * modules/unistd (Makefile.am): Substitute it.
5600         * lib/unistd.in.h (linkat): Declare replacement.
5601         Reported by Pádraig Brady.
5602
5603         quotearg: port test to systems with C.UTF-8 locale
5604         * tests/test-quotearg.c (struct result_strings): Add another
5605         member, differentiating between C.ASCII and C.UTF-8 handling.
5606         (compare_strings): Add parameter.
5607         (main): Adjust all callers.
5608
5609         getopt: avoid clash with FreeBSD _getopt_internal
5610         * lib/getopt.in.h (_getopt_internal): Override the name.
5611         * lib/getopt_int.h (includes): Pick up any overrides.
5612         Reported by Reuben Thomas.
5613
5614         hash: allow C89 compilation
5615         * lib/hash.c (check_tuning): Move declaration before statement.
5616         Reported by Reuben Thomas.
5617
5618 2009-10-05  Karl Berry  <karl@gnu.org>
5619
5620         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
5621
5622 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
5623             Bruno Haible  <bruno@clisp.org>
5624
5625         * lib/uname.c (uname): Use a table-driven algorithm to compute
5626         Windows NT versions.
5627
5628 2009-10-04  Bruno Haible  <bruno@clisp.org>
5629
5630         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
5631         program_invocation_short_name.
5632         * modules/progname (configure.ac): Test for presence of
5633         program_invocation_short_name.
5634         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
5635
5636 2009-10-04  Bruno Haible  <bruno@clisp.org>
5637
5638         * lib/progname.c (set_program_name): Fix comment.
5639         Reported by Jim Meyering.
5640
5641 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
5642             Bruno Haible  <bruno@clisp.org>
5643
5644         * lib/uname.c: Include <string.h>.
5645         (uname): Do only one call to GetVersionEx in the common case.
5646
5647 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
5648             Bruno Haible  <bruno@clisp.org>
5649
5650         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
5651         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
5652         (uname): Add support for Windows CE and various non-x86 CPU types.
5653
5654 2009-10-03  Bruno Haible  <bruno@clisp.org>
5655
5656         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
5657         invocation to tests/configure.ac.
5658         Reported by Ian Beckwith <ianb@erislabs.net>.
5659
5660 2009-10-02  Eric Blake  <ebb9@byu.net>
5661
5662         fchdir: avoid compiler warning
5663         * lib/fchdir.c (canonicalize_file_name)
5664         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
5665
5666         test-open: support mingw errno values
5667         * tests/test-open.h (test_open): Relax test.
5668         * tests/test-fopen.h (test_fopen): Likewise.
5669         * tests/test-openat-safer.c (main): Likewise.
5670
5671         open: fix opening directory on mingw
5672         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
5673
5674         test-open: on GNU/Hurd, /dev/null is a directory
5675         * tests/test-fopen.h (main): Rename...
5676         (test_fopen): ...to this.  Use a guaranteed non-directory when
5677         confirming open behavior on trailing slash.
5678         * tests/test-openat-safer.c (main): Likewise.
5679         * tests/test-open.h (main): Likewise....
5680         (test_open): ...to this.
5681         * tests/test-fopen.c (main): Adjust caller.
5682         * tests/test-fopen-safer.c (main): Likewise.
5683         * tests/test-open.c (main): Likewise.
5684         * tests/test-fcntl-safer.c (main): Likewise.
5685         Reported by Samuel Thibault.
5686
5687         rename, fchdir: don't ignore chdir failure
5688         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
5689         * lib/rename.c (rpl_rename) [W32]: Likewise.
5690         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
5691         an empty destination directory if source cannot be renamed,
5692         although there is still possibility for failure.
5693         * doc/posix-functions/rename.texi (rename): Document the race.
5694         Reported by Jim Meyering.
5695
5696         maint: cleanup whitespace in recent commits
5697         * lib/rename.c (rpl_rename): Remove tabs.
5698         * tests/test-link.h (test_link): Likewise.
5699         * lib/fchdir.c (get_name): Likewise.
5700         Reported by Jim Meyering.
5701
5702 2009-10-02  Ben Pfaff  <blp@gnu.org>
5703
5704         relocatable-prog-wrapper: Add missing dependency on
5705         double-slash-root.
5706         * modules/relocatable-prog-wrapper: Add dependency.
5707         Reported by Ian Beckwith <ianb@erislabs.net>.
5708
5709 2009-10-02  Eric Blake  <ebb9@byu.net>
5710
5711         renameat: fix Solaris bugs
5712         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
5713         needed fixing.
5714         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
5715         * modules/stdio (Makefile.am): Substitute it.
5716         * lib/stdio.in.h (renameat): Declare replacement.
5717         * lib/renameat.c (rpl_renameat): Implement fix.
5718
5719         renameat: new module
5720         * modules/renameat: New file.
5721         * lib/renameat.c (renameat): Likewise.
5722         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
5723         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
5724         * modules/stdio (Makefile.am): Substitute them.
5725         * lib/stdio.in.h (renameat): Declare it.
5726         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
5727         * doc/posix-functions/renameat.texi (renameat): Likewise.
5728         * modules/renameat-tests: New test.
5729         * tests/test-renameat.c: Likewise.
5730
5731         rename: fix mingw bugs
5732         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
5733         directory overwrite bugs.
5734
5735         rename: fix another cygwin 1.5 bug
5736         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
5737         checks.
5738         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
5739         unnecessary cygwin workarounds.  Also work around bug with moving
5740         full directory onto an empty one.
5741         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
5742
5743         rename-dest-slash: merge into rename module
5744         * modules/rename-dest-slash (Status): Mark obsolete.
5745         (Depends-on): Add rename.
5746         (Files): Let rename do it all.
5747         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
5748         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
5749         * m4/rename-dest-slash.m4: ...so this file can be deleted.
5750         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
5751         * lib/rename.c (rpl_rename): Update comments.
5752
5753         rename: fix cygwin 1.5.x bugs
5754         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
5755         * lib/rename.c (rpl_rename): Work around them.
5756         * modules/rename (Depends-on): Add same-inode.
5757
5758         rename: fix Solaris 10 bug
5759         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
5760         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
5761         was the only bug.
5762
5763         rename: fix Solaris 9 bug
5764         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
5765         on non-directory.  Avoid calling exit.
5766         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
5767         strdup.
5768         * modules/rename-tests (Depends-on): Drop lstat.
5769         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
5770         (gl_PREREQ_RENAME): Delete unused macro.
5771
5772         rename-dest-slash: fix NetBSD bug
5773         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
5774         links.
5775         * modules/rename-dest-slash (Depends-on): Add same-inode.
5776
5777         rename-tests: new test, exposes several platform bugs
5778         * modules/rename-tests: New file.
5779         * tests/test-rename.h: Likewise.
5780         * tests/test-rename.c: Likewise.
5781         * doc/posix-functions/rename.texi (rename): Improve documentation,
5782         including bugs that will eventually be fixed in gnulib.
5783
5784 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
5785
5786         * lib/uname.c: Include <stdlib.h>
5787         (uname): Assume version info is available.
5788
5789 2009-10-02  Jim Meyering  <meyering@redhat.com>
5790
5791         gnu-web-doc-update: correct --help output
5792         * build-aux/gnu-web-doc-update: Make --help output relevant.
5793
5794         gnu-web-doc-update: add standard options
5795         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
5796
5797         gnu-web-doc-update: New module.
5798         Use this script to automatically update the on-line web documentation
5799         for your GNU project at http://www.gnu.org/software/$pkg/manual/
5800         * modules/gnu-web-doc-update: New file, from coreutils.
5801         * build-aux/gnu-web-doc-update: New script.
5802
5803 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
5804
5805         link: LoadLibrary is not needed.
5806         * lib/link.c: Use GetModuleHandle.
5807
5808 2009-10-01  Eric Blake  <ebb9@byu.net>
5809
5810         getopt: bump serial number
5811         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
5812         change.
5813
5814         tests: tighten link, rmdir, and remove tests
5815         * tests/test-link.h (includes): No need to use <config.h> here.
5816         Clean up if directory hard link was created, otherwise test for
5817         trailing '.'.
5818         * tests/test-linkat.c (main): Simplify.
5819         * tests/test-remove.c (main): Enhance test for trailing '.'.
5820         * tests/test-rmdir.h (test_rmdir_func): Likewise.
5821
5822 2009-10-01  Jim Meyering  <meyering@redhat.com>
5823
5824         maint.mk: requiring "make major" was annoying, for a "minor" release.
5825         What is intended is "stable", to contrast with alpha and beta,
5826         so require "make stable", not "make major".
5827         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
5828         (get_tool_versions): Likewise.
5829         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
5830
5831 2009-09-30  Ben Pfaff  <blp@gnu.org>
5832
5833         Fix broken build of replacement for Windows tmpfile().
5834         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
5835         flags argument added along with the 'mkostemp' module.
5836
5837 2009-09-28  Bruno Haible  <bruno@clisp.org>
5838
5839         Avoid identifier clash with POSIX function 'remove' defined as a macro.
5840         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
5841         to 'remove_elt'.
5842         (gl_list_remove): Update.
5843         * lib/gl_list.c (gl_list_remove): Update.
5844         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
5845         to 'remove_elt'.
5846         (gl_oset_remove): Update.
5847         * lib/gl_list.c (gl_oset_remove): Update.
5848         Reported by Eric Blake.
5849
5850 2009-09-28  Eric Blake  <ebb9@byu.net>
5851
5852         doc: mention yet more cygwin 1.7 status
5853         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
5854         cygwin.
5855         * doc/glibc-functions/execvpe.texi (execvpe): New file.
5856         * doc/gnulib.texi (Glibc unistd.h): Mention it.
5857
5858         argp: fix test failure
5859         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
5860         that are not upper-case.  Pass correct range to tolower.
5861
5862 2009-09-27  Jim Meyering  <meyering@redhat.com>
5863
5864         test-yesno: work around sparc-dash here-document infelicity
5865         Without this change, the literal \177 byte in a here document
5866         would make dash 0.5.5.1-3 access uninitialized memory.
5867         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
5868         Instead, use a marker, "@", and filter through tr to create the desired
5869         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
5870
5871 2009-09-27  Bruno Haible  <bruno@clisp.org>
5872
5873         Disable untested support for new flavours of ACLs on AIX.
5874         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
5875         progress.
5876         * lib/set-mode-acl.c (qset_acl): Likewise.
5877
5878 2008-12-07  Bruno Haible  <bruno@clisp.org>
5879
5880         Add support for new flavours of ACLs on AIX. (Untested.)
5881         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
5882         (file_has_acl): Add support for newer AIX.
5883         * lib/set-mode-acl.c (qset_acl): Likewise.
5884         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
5885         Rainer Tammer <tammer@tammer.net>.
5886
5887 2009-09-26  Eric Blake  <ebb9@byu.net>
5888
5889         argp: fix compilation of getopt
5890         * lib/getopt.in.h (includes): Use different guard than glibc.
5891         Reported by Sergey Poznyakoff.
5892
5893         doc: mention more cygwin 1.7 status
5894         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
5895         bug.
5896         * doc/posix-functions/execl.texi (execl): Likewise.
5897         * doc/posix-functions/execle.texi (execle): Likewise.
5898         * doc/posix-functions/execlp.texi (execlp): Likewise.
5899         * doc/posix-functions/execv.texi (execv): Likewise.
5900         * doc/posix-functions/execve.texi (execve): Likewise.
5901         * doc/posix-functions/execvp.texi (execvp): Likewise.
5902         * doc/glibc-functions/canonicalize_file_name.texi
5903         (canonicalize_file_name): Cygwin 1.7 now provides this.
5904         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
5905         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
5906         on AT_SYMLINK_NOFOLLOW.
5907
5908 2009-09-24  Eric Blake  <ebb9@byu.net>
5909
5910         test-linkat: make test more robust
5911         * tests/test-linkat.c (main): Avoid collision with EEXIST.
5912
5913         getopt: fix inclusion guards for cygwin
5914         * modules/getopt-posix (Depends-on): Add include-next.
5915         (Makefile.am): Substitute more items in replacement header.
5916         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
5917         <getopt.h>.
5918         * lib/getopt.in.h (includes): Use split inclusion guard, and
5919         prefer <getopt.h> over include <unistd.h> when one is present.
5920         (option): Also override name of 'struct option'.
5921
5922         same-inode: revert prior change; it is not yet ready
5923         * NEWS: Undo mention of this change.
5924         * lib/same-inode.h (same-inode.h): Undo tri-state change.
5925         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
5926         * lib/cycle-check.c (cycle_check): Likewise.
5927         * lib/same.c (same_name): Likewise.
5928         * lib/at-func2.c (at_func2): Likewise.
5929
5930 2009-09-23  Eric Blake  <ebb9@byu.net>
5931
5932         linkat: new module
5933         * modules/linkat: New file.
5934         * lib/at-func2.c (at_func2): Likewise.
5935         * lib/linkat.c (linkat): Likewise.
5936         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
5937         * lib/openat-priv.h (at_func2): Add declaration.
5938         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
5939         * modules/unistd (Makefile.am): Substitute them.
5940         * lib/unistd.in.h (linkat): Declare it.
5941         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
5942         * doc/posix-functions/linkat.texi (linkat): Likewise.
5943         * doc/posix-functions/link.texi (link): Tweak wording.
5944         * tests/test-link.c (main): Move guts...
5945         * tests/test-link.h (test_link): ...into new file.
5946         * modules/linkat-tests: New test.
5947         * tests/test-linkat.c: Likewise.
5948         * modules/link-tests (Files): Ship new file.
5949         (Depends-on): Add stdbool.
5950
5951         dirname: add library-safe mdir_name
5952         * lib/dirname.h (mdir_name): New prototype.
5953         * lib/dirname.c (dir_name): Move guts...
5954         (mdir_name): ...to new function that avoids xalloc_die.
5955
5956         fchdir: another mingw fix
5957         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
5958         * lib/fchdir.c (get_name): New helper method; skips canonicalize
5959         on mingw (where it has not yet been ported), and make it optional
5960         elsewhere.
5961         (_gl_register_fd): Use it.
5962
5963         same-inode: make SAME_INODE tri-state, to port to mingw
5964         * NEWS: Mention this change.
5965         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
5966         st_ino always being 0.
5967         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
5968         * lib/cycle-check.c (cycle_check): Likewise.
5969         * lib/same.c (same_name): Likewise.
5970
5971         lstat: avoid mingw compilation error
5972         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
5973         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
5974         lstat ourselves.
5975         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
5976         was adequate.
5977         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
5978         the checks for lstat.
5979         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
5980
5981         link: fix test failure on Solaris 9
5982         * lib/link.c (rpl_link): Don't assume link will catch bogus
5983         trailing slash on source.
5984
5985         test-symlinkat: enhance test
5986         * tests/test-readlink.c (main): Move guts...
5987         * tests/test-readlink.h (test_readlink): ...into new file.
5988         * tests/test-symlink.c (main): Move guts...
5989         * tests/test-symlink.h (test_symlink): ...into new file.
5990         * tests/test-symlinkat.c (main): Use new files for further
5991         coverage.
5992         (do_symlink, do_readlink): New helper functions.
5993         * modules/symlink-tests (Files): Ship new file.
5994         (Depends-on): Add stdbool.
5995         * modules/readlink-tests (Files): Ship new file.
5996         (Depends-on): Add stdbool.
5997         * modules/symlinkat-tests (Files): Use new files.
5998
5999 2009-09-23  Eric Blake  <ebb9@byu.net>
6000
6001         readlink: document portability issue with symlink length
6002         * doc/posix-functions/lstat.texi (lstat): Mention that some file
6003         systems have bogus st_size on symlinks, and mention the
6004         areadlink-with-size module.
6005         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
6006         * doc/posix-functions/readlink.texi (readlink): Mention the
6007         areadlink module, and ERANGE failure.
6008         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
6009         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
6010
6011         readlink: fix Solaris 9 bug with trailing slash
6012         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
6013         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
6014         * doc/posix-functions/readlink.texi (readlink): Document this.
6015         * modules/readlink-tests: New test.
6016         * tests/test-readlink.c: Likewise.
6017
6018         readlink: fix cygwin 1.5.x bug with return type
6019         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
6020         * lib/unistd.in.h (readlink): Use ssize_t.
6021         * lib/readlink.c (readlink): Likewise.
6022         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6023         * modules/unistd (Makefile.am): Substitute it.
6024         * lib/unistd.in.h (readlink): Declare replacement.
6025         * doc/posix-functions/readlink.texi (readlink): Document this.
6026
6027         symlink: use throughout gnulib
6028         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
6029         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
6030         symlink is not used.
6031         * modules/symlinkat (Depends-on): Add symlink.
6032         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
6033         * modules/canonicalize-tests (Depends-on): Likewise.
6034         * modules/lstat-tests (Depends-on): Likewise.
6035         * modules/openat-tests (Depends-on): Likewise.
6036         * modules/remove-tests (Depends-on): Likewise.
6037         * modules/rmdir-tests (Depends-on): Likewise.
6038         * modules/unlink-tests (Depends-on): Likewise.
6039         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
6040         * tests/test-canonicalize.c (symlink): Likewise.
6041         * tests/test-fstatat.c (symlink): Likewise.
6042         * tests/test-lstat.c (symlink): Likewise.
6043         * tests/test-remove.c (symlink): Likewise.
6044         * tests/test-rmdir.c (symlink): Likewise.
6045         * tests/test-unlink.c (symlink): Likewise.
6046         * tests/test-unlinkat.c (symlink): Likewise.
6047
6048         symlink: new module, for Solaris 9 bug
6049         * modules/symlink: New file.
6050         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
6051         * lib/symlink.c: Likewise.
6052         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
6053         * modules/unistd (Makefile.am): Substitute them.
6054         * lib/unistd.in.h (symlink): Declare replacement.
6055         * MODULES.html.sh (File system functions): Mention it.
6056         * doc/posix-functions/symlink.texi (symlink): Likewise.
6057         * modules/symlink-tests: New test.
6058         * tests/test-symlink.c: Likewise.
6059
6060 2009-09-23  Bruno Haible  <bruno@clisp.org>
6061
6062         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
6063         when needed.
6064         Test case: gnulib-tool --import --with-tests atexit inttypes.
6065         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
6066
6067 2009-09-23  Bruno Haible  <bruno@clisp.org>
6068
6069         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
6070         subcommand, not in a subshell.
6071
6072 2009-09-22  Eric Blake  <ebb9@byu.net>
6073
6074         unistd: sort replacement declarations
6075         * lib/unistd.in.h: Sort declarations.
6076
6077         open, openat: minor optimization
6078         * lib/open.c (open): If open succeeded, len is non-zero.
6079         * lib/openat.c (rpl_openat): Likewise.
6080
6081         link-follow: ensure correct result
6082         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
6083         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
6084         distinguish between possible failures.
6085
6086 2009-09-21  Eric Blake  <ebb9@byu.net>
6087
6088         fts: avoid compiler warning
6089         * lib/fts.c (dirent_inode_sort_may_be_useful)
6090         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
6091
6092 2009-09-19  Bruno Haible  <bruno@clisp.org>
6093
6094         * lib/progreloc.c (canonicalize_file_name): New declaration.
6095
6096 2009-09-19  Eric Blake  <ebb9@byu.net>
6097
6098         link: fix quoting
6099         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
6100
6101         openat: fix openat bugs on Solaris 9
6102         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
6103         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
6104         * modules/openat (Depends-on): Add open.
6105         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
6106         * modules/fcntl-h (Makefile.am): Substitute it.
6107         * lib/fcntl.in.h (openat): Declare replacement.
6108         * doc/posix-functions/openat.texi (openat): Document this.
6109
6110         openat: move fstatat and unlinkat into correct files
6111         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
6112         compiled.
6113         * lib/openat.c (fstatat, unlinkat): Move...
6114         * lib/fstatat.c (fstatat): ...into correct files.
6115         * lib/unlinkat.c (unlinkat): Likewise.
6116
6117         openat: fix unlinkat bugs on Solaris 9
6118         * lib/unlinkat.c (unlinkat): New file.
6119         * modules/openat (Depends-on): Add unlink.
6120         (Files): Distribute it.
6121         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
6122         trailing slash behavior is broken.
6123         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6124         * modules/unistd (Makefile.am): Substitute it.
6125         * lib/unistd.in.h (unlinkat): Declare replacement.
6126         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
6127
6128         openat: fix fstatat bugs on Solaris 9
6129         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
6130         stat.
6131         * doc/posix-functions/fstatat.texi (fstatat): Document this.
6132
6133         test-unlinkat: enhance test, to expose Solaris 9 bug
6134         * tests/test-unlink.c (main): Factor guts...
6135         * tests/test-unlink.h (test_rmdir_func): ...into new file.
6136         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
6137         * tests/test-rmdir.c (main): Adjust caller.
6138         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
6139         (unlinker): New helper function.
6140         (rmdirat): Enhance check.
6141         * modules/rmdir-tests (Depends-on): Add stdbool.
6142         * modules/unlink-tests (Depends-on): Likewise.
6143         (Files): Add test-unlink.h.
6144         * modules/openat-tests (Files): Likewise.
6145         (Depends-on): Add unlinkdir.
6146
6147         test-fstatat: new test, to expose Solaris 9 bugs
6148         * tests/test-stat.c (main): Factor guts...
6149         * tests/test-stat.h (test_stat_func): ...into new file.
6150         * tests/test-lstat.c (main): Factor guts...
6151         * tests/test-lstat.h (test_lstat_func): ...into new file.
6152         * tests/test-fstatat.c: New file.
6153         * modules/stat-tests (Files): Add test-stat.h.
6154         * modules/lstat-tests (Files): Add test-lstat.h.
6155         (Depends-on): Add stdbool.
6156         * modules/openat-tests (Depends-on): Add pathmax.
6157         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
6158         (Makefile.am): Run new test.
6159
6160         remove: new module, for mingw and Solaris 9 bugs
6161         * modules/remove: New file.
6162         * lib/remove.c: Likewise.
6163         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
6164         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
6165         * modules/stdio (Makefile.am): Use them.
6166         * lib/stdio.in.h (remove): Declare replacement.
6167         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
6168         * doc/posix-functions/remove.texi (remove): Likewise.
6169         * modules/remove-tests: New test.
6170         * tests/test-remove.c: Likewise.
6171
6172         unlink: new module, for Solaris 9 bug
6173         * modules/unlink: New file.
6174         * lib/unlink.c: Likewise.
6175         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
6176         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
6177         * modules/unistd (Makefile.am): Use them.
6178         * lib/unistd.in.h (stat): Declare replacement.
6179         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
6180         * doc/posix-functions/unlink.texi (unlink): Likewise.
6181         * modules/unlink-tests: New test.
6182         * tests/test-unlink.c: Likewise.
6183
6184         lstat: fix Solaris 9 bug
6185         * lib/lstat.c (lstat): Also check for trailing slash on
6186         non-symlink, non-directories.  Use stat module to simplify logic.
6187         * doc/posix-functions/lstat.texi (lstat): Document it.
6188         * modules/lstat-tests (Depends-on): Add errno, same-inode.
6189         (configure.ac): Check for symlink.
6190         * tests/test-lstat.c (main): Add more tests.
6191
6192         stat: add as dependency to other modules
6193         * modules/chown (Depends-on): Add stat.
6194         * modules/euidaccess (Depends-on): Likewise.
6195         * modules/fchdir (Depends-on): Likewise.
6196         * modules/isdir (Depends-on): Likewise.
6197         * modules/link (Depends-on): Likewise.
6198         * modules/lstat (Depends-on): Likewise.
6199         * modules/mkdir-p (Depends-on): Likewise.
6200         * modules/modechange (Depends-on): Likewise.
6201         * modules/open (Depends-on): Likewise.
6202         * modules/readlink (Depends-on): Likewise.
6203         * modules/same (Depends-on): Likewise.
6204
6205         stat: fix Solaris 9 bug
6206         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
6207         slash.
6208         * lib/stat.c (rpl_stat): Work around it.
6209         * doc/posix-functions/stat.texi (stat): Update documentation.
6210
6211         stat: new module, for mingw bug
6212         * modules/stat: New file.
6213         * lib/stat.c: Likewise.
6214         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
6215         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
6216         * modules/sys_stat (Makefile.am): Use them.
6217         * lib/sys_stat.in.h (stat): Declare replacement.
6218         * lib/openat.c (fstatat): Deal with lstat and stat being function
6219         macros.
6220         * modules/openat (Depends-on): Add inline.
6221         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
6222         * doc/posix-functions/stat.texi (stat): Likewise.
6223         * modules/stat-tests: New test.
6224         * tests/test-stat.c: Likewise.
6225
6226 2009-09-19  Jim Meyering  <meyering@redhat.com>
6227
6228         syntax-check: detect unnecessary inclusion of canonicalize.h
6229         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
6230
6231 2009-09-19  Eric Blake  <ebb9@byu.net>
6232
6233         canonicalize-lgpl: adjust clients to use correct header
6234         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
6235         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
6236         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
6237         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
6238         * lib/progreloc.c (includes): Likewise.
6239
6240 2009-09-19  Jim Meyering  <meyering@redhat.com>
6241
6242         test-posixtm.c: correct a comment
6243         * tests/test-posixtm.c: Correct first-line comment.
6244         Spotted by Eric Blake.
6245
6246 2009-09-16  Jim Meyering  <meyering@redhat.com>
6247
6248         posixtm-tests: make T const-correct; add a test case
6249         * tests/test-posixtm.c (T): Declare const.
6250         Add a test for -(2^31+1).
6251         Remove useless can-succeed-only-in-2002 test.
6252
6253         posixtm-tests: adjust the sole failing test
6254         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
6255         expected output matches what mktime now produces.  Cross-checked via
6256         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
6257
6258         posixtm: move #ifdef'd tests into a new module
6259         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
6260         * tests/test-posixtm.c: ... this new file.
6261         * modules/posixtm-tests: New module.
6262
6263 2009-09-19  Eric Blake  <ebb9@byu.net>
6264
6265         openat: simplify use of at-func.c
6266         * lib/at-func.c (includes): Include prerequisites here, to
6267         simplify requirements on client files.
6268         * lib/openat-priv.h: Add double-inclusion guard.
6269         * lib/faccessat.c (includes): Simplify.
6270         * lib/fchmodat.c (includes): Likewise.
6271         * lib/fchownat.c (includes): Likewise.
6272         * lib/mkdirat.c (includes): Likewise.
6273         * lib/mkfifoat.c (includes): Likewise.
6274         * lib/symlinkat.c (includes): Likewise.
6275
6276         openat: allow return of fd 0
6277         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
6278         * modules/save-cwd (Depends-on): Replace fcntl-safer with
6279         unistd-safer.
6280         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
6281         <fcntl.h>; this module does not leak fds.
6282         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
6283         must be allowed to return 0, leaving openat_safer to add the
6284         safety.
6285         (openat_permissive): Avoid writing to just-opened fd 2 if
6286         restoring the current directory fails.
6287         * lib/openat-die.c (openat_restore_fail): Add comment.
6288         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
6289         (save_cwd): Guarantee safe fd, but without use of open_safer.
6290         * tests/test-openat.c: New test.
6291         * modules/openat-tests (Files, Makefile.am): Distribute and build
6292         new file.
6293
6294         relocatable-prog-wrapper: fix build
6295         * modules/relocatable-prog-wrapper (Files): Update name of
6296         canonicalize m4 file, broken on 2009-09-17.
6297         Reported by emad hajjar <aleppos@hotmail.com>.
6298
6299 2009-09-19  Bruno Haible  <bruno@clisp.org>
6300
6301         * lib/safe-alloc.h: Use the standard header with GPL copyright.
6302         * lib/safe-alloc.c: Likewise.
6303         Reported by Ian Beckwith <ianb@erislabs.net>.
6304
6305 2009-09-18  Bruno Haible  <bruno@clisp.org>
6306
6307         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
6308         Reported by <erobles@sensacd.com.mx>.
6309
6310 2009-09-17  Eric Blake  <ebb9@byu.net>
6311
6312         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
6313         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
6314         slashes when checking if last component is missing.
6315         * tests/test-canonicalize.c (main): Test this.
6316
6317         canonicalize, canonicalize-lgpl: honor // if distinct from /
6318         * modules/canonicalize (Files): Add double-slash-root.m4.
6319         * modules/canonicalize-lgpl (Files): Likewise.
6320         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
6321         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
6322         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
6323         fallback definition.
6324         (canonicalize_filename_mode): Use it to protect //.
6325         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
6326         (__realpath): Likewise.
6327         * tests/test-canonicalize.c (main): Test this.
6328         * tests/test-canonicalize-lgpl.c (main): Likewise.
6329         * modules/canonicalize-tests (Depends-on): Add same-inode.
6330         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
6331
6332         canonicalize-lgpl: fix glibc bug with trailing slash
6333         * m4/canonicalize-lgpl.m4: Move contents...
6334         * m4/canonicalize.m4: ...here.
6335         (gl_CANONICALIZE_LGPL): Factor realpath check...
6336         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
6337         glibc 2.3.5 bug, fixed 2005-04-27.
6338         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
6339         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
6340         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
6341         * modules/canonicalize-lgpl (Files): Manage file rename.
6342         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
6343         * modules/stdlib (Makefile.am): Substitute witness.
6344         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
6345         is needed.
6346         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
6347         replacement is required.
6348         * lib/canonicalize.c (canonicalize_file_name): Likewise.
6349         * doc/glibc-functions/canonicalize_file_name.texi
6350         (canonicalize_file_name): Document this.
6351         * doc/posix-functions/realpath.texi (realpath): Likewise.
6352
6353         canonicalize-lgpl: reject non-directory with trailing slash
6354         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
6355         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
6356         catches failures in glibc 2.3.5.
6357         * tests/test-canonicalize.c (main): Likewise.
6358
6359         canonicalize-lgpl: use native realpath if it works
6360         * lib/canonicalize-lgpl.c (realpath): Guard with
6361         FUNC_REALPATH_WORKS.
6362         * lib/stdlib.in.h (realpath): Make declaration optional based on
6363         HAVE_REALPATH.
6364         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
6365         native realpath works.
6366         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
6367         * modules/stdlib (Makefile.am): Substitute witness.
6368
6369         canonicalize, canonicalize-lgpl: use <stdlib.h>
6370         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
6371         (Include): Mention <stdlib.h>.
6372         (configure.ac): Mention functions we provide.
6373         * modules/canonicalize (configure.ac): Likewise.
6374         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
6375         realpath if canonicalize_file_name is missing.
6376         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
6377         * modules/stdlib (Makefile.am): Substitute witnesses.
6378         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
6379         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
6380         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
6381         * NEWS: Document this.
6382         * doc/glibc-functions/canonicalize_file_name.texi
6383         (canonicalize_file_name): Likewise.
6384         * doc/posix-functions/realpath.texi (realpath): Likewise.
6385         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
6386
6387         test-canonicalize: consolidate into single C program
6388         * tests/test-canonicalize.sh: Delete; move setup into...
6389         * tests/test-canonicalize.c (main): ...the program, making it
6390         easier to run in debugger.  Add some tests.
6391         * modules/canonicalize-tests (Files): Remove unused file.
6392         (Depends-on): Add progname.
6393         (configure.ac, Makefile.am): Simplify.
6394
6395         test-canonicalize-lgpl: consolidate into single C program
6396         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
6397         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
6398         easier to run in debugger.  Add some tests.
6399         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
6400         (configure.ac, Makefile.am): Simplify.
6401
6402         canonicalize: avoid resolvepath
6403         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
6404         unnecessary checks.
6405         * lib/canonicalize.c (includes): Simplify.
6406         (canonicalize_file_name): Drop resolvepath implementation.
6407         * modules/canonicalize (Depends-on): Drop filenamecat.
6408
6409         canonicalize: don't lose errno
6410         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
6411         over calls to free.
6412
6413         canonicalize: simplify errno handling
6414         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
6415         assignment.
6416
6417         canonicalize, canonicalize-lgpl: update module dependencies
6418         * modules/canonicalize (Depends-on): Add extensions, lstat,
6419         pathmax, stdlib.
6420         (Files): Drop pathmax.h.
6421         (configure.ac): Adjust macro name.
6422         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
6423         lstat, stdlib, sys_stat.
6424         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
6425         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
6426         extensions.
6427         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
6428         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
6429         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
6430         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
6431         declaration, if available.
6432         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
6433         we can rely on the readlink module.
6434         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
6435         (includes): Use <unistd.h> unconditionally.
6436
6437 2009-09-17  Eric Blake  <ebb9@byu.net>
6438
6439         maint: make Include sections of modules consistent
6440         * modules/alloca: Use only header name; no need to list #include.
6441         * modules/alloca-opt: Likewise.
6442         * modules/arpa_inet: Likewise.
6443         * modules/canon-host: Likewise.
6444         * modules/configmake: Likewise.
6445         * modules/dirent: Likewise.
6446         * modules/eealloc: Likewise.
6447         * modules/environ: Likewise.
6448         * modules/fchdir: Likewise.
6449         * modules/fcntl: Likewise.
6450         * modules/fcntl-h: Likewise.
6451         * modules/gethrxtime: Likewise.
6452         * modules/gettime: Likewise.
6453         * modules/ignore-value: Likewise.
6454         * modules/inet_ntop: Likewise.
6455         * modules/inet_pton: Likewise.
6456         * modules/inttypes: Likewise.
6457         * modules/isnand-nolibm: Likewise.
6458         * modules/isnanf-nolibm: Likewise.
6459         * modules/mbchar: Likewise.
6460         * modules/mbfile: Likewise.
6461         * modules/mbiter: Likewise.
6462         * modules/mbuiter: Likewise.
6463         * modules/netdb: Likewise.
6464         * modules/netinet_in: Likewise.
6465         * modules/nproc: Likewise.
6466         * modules/pagealign_alloc: Likewise.
6467         * modules/poll: Likewise.
6468         * modules/printf-frexp: Likewise.
6469         * modules/pthread: Likewise.
6470         * modules/putenv: Likewise.
6471         * modules/random_r: Likewise.
6472         * modules/relocatable-prog: Likewise.
6473         * modules/search: Likewise.
6474         * modules/select: Likewise.
6475         * modules/selinux-h: Likewise.
6476         * modules/settime: Likewise.
6477         * modules/signal: Likewise.
6478         * modules/size_max: Likewise.
6479         * modules/socklen: Likewise.
6480         * modules/ssize_t: Likewise.
6481         * modules/stdarg: Likewise.
6482         * modules/stdbool: Likewise.
6483         * modules/stddef: Likewise.
6484         * modules/stdint: Likewise.
6485         * modules/stdio: Likewise.
6486         * modules/stdlib: Likewise.
6487         * modules/string: Likewise.
6488         * modules/strings: Likewise.
6489         * modules/sys_file: Likewise.
6490         * modules/sys_ioctl: Likewise.
6491         * modules/sys_select: Likewise.
6492         * modules/sys_socket: Likewise.
6493         * modules/sys_stat: Likewise.
6494         * modules/sys_time: Likewise.
6495         * modules/sys_times: Likewise.
6496         * modules/sys_utsname: Likewise.
6497         * modules/sys_wait: Likewise.
6498         * modules/sysexits: Likewise.
6499         * modules/time: Likewise.
6500         * modules/times: Likewise.
6501         * modules/tmpfile: Likewise.
6502         * modules/trim: Likewise.
6503         * modules/unistd: Likewise.
6504         * modules/wchar: Likewise.
6505         * modules/wctype: Likewise.
6506
6507 2009-09-17  Bruno Haible  <bruno@clisp.org>
6508
6509         Make getdate.y compile on QNX and NetBSD 5 / i386.
6510         * m4/getdate.m4 (gl_GETDATE): Conditionally define
6511         TIME_T_FITS_IN_LONG_INT.
6512         * lib/getdate.y (long_time_t): New type.
6513         (relative_time): Change type of 'seconds' field to long_time_t.
6514         (get_date): Update types of local variables. Check against overflow
6515         during conversion from long_time_t to time_t.
6516         Reported by Matt Kraai <kraai@ftbfs.org>
6517         and Hasso Tepper <hasso@netbsd.org>.
6518
6519 2009-09-17  Bruno Haible  <bruno@clisp.org>
6520
6521         * modules/COPYING: Update copyright years.
6522         * modules/README: Likeiwse.
6523         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
6524         Reported by Ian Beckwith <ianb@erislabs.net>.
6525
6526 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
6527
6528         * users.txt: Update references for gnuit package.
6529
6530 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
6531
6532         * m4/getdelim.m4: Fix typo in copyright line.
6533
6534 2009-09-17  Bruno Haible  <bruno@clisp.org>
6535
6536         * lib/atoll.c: Use the standard header with GPL copyright.
6537         * lib/argz.in.h: Likewise.
6538         * lib/glob.c: Likewise.
6539         * lib/glob-libc.h: Likewise.
6540         * lib/random_r.c: Likewise.
6541         * lib/siglist.h: Likewise.
6542         * lib/strsignal.c: Likewise.
6543         Reported by Ian Beckwith <ianb@erislabs.net>.
6544
6545 2009-09-17  Eric Blake  <ebb9@byu.net>
6546
6547         rmdir: ensure correct dependency order
6548         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
6549
6550 2009-09-17  Bruno Haible  <bruno@clisp.org>
6551
6552         Disable assertion that fails on NetBSD 5 / i386.
6553         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
6554         Reported by Sam Steingold <sds@gnu.org>
6555         and Hasso Tepper <hasso@netbsd.org>.
6556
6557 2009-09-16  Eric Blake  <ebb9@byu.net>
6558
6559         unlinkdir: port to mingw
6560         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
6561         on which no one can unlink a directory.
6562
6563         stdlib: sort witness names
6564         * modules/stdlib (Makefile.am): Sort replacements.
6565         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
6566         * lib/stdlib.in.h: Likewise.
6567
6568         parse-duration-tests: avoid link failure
6569         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
6570         LIBINTL.
6571         Reported by Tom G. Christensen.
6572
6573         openat-tests: ensure unlinkat behaves like rmdir
6574         * tests/test-rmdir.c (main): Factor guts...
6575         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
6576         * modules/rmdir-tests (Files): Ship new file.
6577         * modules/openat-tests: New test.
6578         * tests/test-unlinkat.c: Likewise.
6579
6580         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
6581         * modules/rmdir-errno (Status, Notice): Now obsolete.
6582
6583         rmdir: work around cygwin 1.5.x and mingw bugs
6584         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
6585         * lib/rmdir.c (rmdir): Work around it.
6586         * modules/rmdir (Status, Notice): No longer obsolete.
6587         (Files): Add dos.m4.
6588         (Depends-on): Add unistd.
6589         (configure.ac): Set witnesses.
6590         (License): Relax to LGPLv2+.
6591         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
6592         * modules/unistd (Makefile.am): Substitute witnesses.
6593         * lib/unistd.in.h (rmdir): Declare replacement.
6594         * doc/posix-functions/rmdir.texi (rmdir): Document this.
6595         * modules/rmdir-tests: New tests.
6596         * tests/test-rmdir.c: Likewise.
6597
6598 2009-09-15  Eric Blake  <ebb9@byu.net>
6599
6600         fchdir: improve use of replacement functions
6601         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
6602         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
6603         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
6604         REPLACE_CLOSEDIR.
6605         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
6606         * modules/sys_stat (Makefile.am): Substitute correct witness.
6607         * modules/dirent (Makefile.am): Likewise.
6608         * modules/unistd (Makefile.am): Likewise.
6609         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
6610         * lib/unistd.in.h (dup): Likewise.
6611         * lib/sys_stat.in.h (fstat): Likewise.
6612
6613         maint: ignore gnulib-tool temp files
6614         * .gitignore: Ignore files created during gnulib-tool --test.
6615
6616 2009-09-13  Jim Meyering  <meyering@redhat.com>
6617
6618         posixtm: don't reject a time that specify "60" as the number of seconds
6619         * lib/posixtm.c (posixtime): The code to reject invalid dates
6620         would also reject a time specified with the .60 suffix.
6621         But POSIX allows that, in order to accommodate leap seconds.
6622         So don't reject it.
6623         (main): Adjust tests accordingly.
6624         * modules/posixtm (Depends-on): Add stpcpy.
6625
6626 2009-09-11  Jim Meyering  <meyering@redhat.com>
6627
6628         announce-gen: include [$release_type] in emitted Subject:
6629         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
6630         e.g., [stable] in the emitted Subject: line.
6631
6632 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6633
6634         Remove obsolete macros from several modules.
6635         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
6636         obsolete Autoconf macros with their modern counterparts.
6637         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
6638         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
6639         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
6640         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
6641         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
6642         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
6643         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
6644         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
6645         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
6646         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
6647         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
6648         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
6649         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
6650         * m4/sockets.m4 (gl_SOCKETS): Likewise.
6651         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
6652         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
6653         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
6654         * m4/time_r.m4 (gl_TIME_R): Likewise.
6655         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
6656         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
6657         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
6658
6659         Fix copyright header in build-aux scripts.
6660         * build-aux/git-version-gen: Fix copyright header to match GPLv3
6661         recommendation.
6662         * build-aux/ncftpput-ftp: Likewise.
6663         * build-aux/update-copyright: Likewise.
6664
6665 2009-09-09  Eric Blake  <ebb9@byu.net>
6666
6667         test-link: allow Linux choice of errno
6668         * tests/test-link.c (main): Relax test for alternate error.
6669
6670         strndup: fix improper m4 caching
6671         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
6672         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
6673         (gl_PREREQ_STRNDUP): Delete.
6674         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
6675         * modules/string (Makefile.am): Substitute it.
6676         * lib/string.in.h (strndup): Modernize prototype.
6677
6678         getcwd: port to mingw
6679         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
6680         different from the POSIX assumptions made throughout the getcwd
6681         module; fortunately, the mingw getcwd does not need replacement.
6682         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
6683         * modules/getcwd-tests: New test.
6684         * tests/test-getcwd.c: Likewise.
6685
6686         link: fix platform bugs
6687         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
6688         * lib/link.c (link): Work around them.  Fix related mingw bug.
6689         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
6690         * modules/unistd (Makefile.am): Substitute it.
6691         * lib/unistd.in.h (link): Declare replacement.
6692         * doc/posix-functions/link.texi (link): Document this.
6693         * modules/link (Depends-on): Add strdup-posix, sys_stat.
6694
6695         test-link: consolidate into single C program, test more cases
6696         * tests/test-link.sh: Delete.
6697         * tests/test-link.c: Test more error conditions.  Exposes bugs on
6698         at least Cygwin and Solaris.
6699         * modules/link-tests (Files): Remove unused file.
6700         (Depends-on): Add errno, sys_stat.
6701         (Makefile.am): Simplify.
6702
6703 2009-09-08  Bruno Haible  <bruno@clisp.org>
6704
6705         Work around towlower, towupper bug on mingw.
6706         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
6707         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
6708         * doc/posix-functions/towlower.texi: Mention the mingw bug.
6709         * doc/posix-functions/towupper.texi: Likewise.
6710         Reported by Eric Blake.
6711
6712 2009-09-08  Jim Meyering  <meyering@redhat.com>
6713
6714         build: don't try to run autoheader if we don't use it
6715         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
6716         is not used in configure.ac.
6717
6718 2009-09-08  Eric Blake  <ebb9@byu.net>
6719
6720         euidaccess: fix compilation error
6721         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
6722
6723         rawmemchr: relax license
6724         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
6725         okay.
6726         Reported by Jim Meyering.
6727
6728         mkfifoat: new module
6729         * modules/mkfifoat: New file.
6730         * lib/mkfifoat.c: Likewise.
6731         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
6732         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
6733         * modules/sys_stat (Makefile.am): Use them.
6734         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
6735         * MODULES.html.sh (File system functions): Mention module.
6736         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
6737         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
6738         * modules/mkfifoat-tests: New test.
6739         * tests/test-mkfifoat.c: Likewise.
6740
6741         strchrnul: relax license
6742         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
6743         okay.
6744         Reported by Jim Meyering.
6745
6746 2009-09-08  Eric Blake  <ebb9@byu.net>
6747
6748         fstatat: fix compilation on Solaris
6749         * lib/fstatat.c (includes): Add fcntl.h.
6750         Reported by Pádraig Brady.
6751
6752 2009-09-07  Eric Blake  <ebb9@byu.net>
6753
6754         rename: modernize replacement
6755         * modules/rename (Depends-on): Add stdio.
6756         (configure.ac): Declare witness.
6757         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
6758         stdio take care of replacement.
6759         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
6760         * modules/stdio (Makefile.am): Substitute them.
6761         * lib/stdio.in.h (rename): Declare replacement.
6762         * lib/rename.c (includes): Allow cross-compilation to non-windows
6763         machines.
6764         * doc/posix-functions/rename.texi (rename): Improve
6765         documentation.
6766
6767         stdio: sort witness names
6768         * modules/stdio (Makefile.am): Sort replacements.
6769         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6770         * lib/stdio.in.h: Likewise.
6771
6772         getcwd: minor cleanups
6773         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
6774         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
6775
6776         openat: provide more convenience names
6777         * modules/faccessat (configure.ac): Add C witness.
6778         * lib/unistd.in.h (readlinkat): Fix typo.
6779         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
6780         convenience wrappers.
6781         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
6782         wrappers in syntax checks.
6783
6784 2009-09-06  Eric Blake  <ebb9@byu.net>
6785
6786         doc: fix comments in recent patches
6787         * lib/faccessat.c: Mention correct function.
6788         * lib/fchmodat.c: Likewise.
6789         * lib/fchownat.c: Likewise.
6790         * lib/symlinkat.c: Likewise.
6791         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
6792         constants.
6793
6794         faccessat, symlinkat: continue cleanup of previous patch
6795         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
6796         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
6797         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
6798         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
6799         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
6800         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
6801         set.
6802
6803 2009-09-06  Bruno Haible  <bruno@clisp.org>
6804
6805         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
6806         (fstatat): Declare if GNULIB_FSTATAT is set.
6807         (mkdirat): Declare if GNULIB_MKDIRAT is set.
6808         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
6809         (unlinkat): Declare if GNULIB_UNLINKAT is set.
6810         * modules/fcntl-h (Files): Remove m4/openat.m4.
6811         * modules/sys_stat (Files): Remove m4/openat.m4.
6812         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
6813         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
6814         * modules/unistd (Files): Remove m4/openat.m4.
6815         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
6816         GNULIB_OPENAT.
6817         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
6818         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
6819         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
6820         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
6821         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
6822         gl_OPENAT_DEFAULTS.
6823         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
6824         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
6825         Don't require gl_OPENAT_DEFAULTS.
6826         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
6827         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
6828         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
6829         (gl_OPENAT_DEFAULTS): Remove macro.
6830
6831 2009-09-06  Bruno Haible  <bruno@clisp.org>
6832
6833         * modules/openat (configure.ac): Remove unneeded witness.
6834
6835 2009-09-06  Bruno Haible  <bruno@clisp.org>
6836
6837         Set errno to ENOSYS when a function is entirely unsupported.
6838         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
6839         EOPNOTSUPP.
6840         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
6841         * modules/chown (Depends-on): Remove errno.
6842
6843 2009-09-06  Bruno Haible  <bruno@clisp.org>
6844
6845         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
6846
6847 2009-09-06  Bruno Haible  <bruno@clisp.org>
6848
6849         * lib/sys_stat.in.h: Fix preprocessor command indentation.
6850
6851 2009-09-06  Ben Pfaff  <blp@gnu.org>
6852             Bruno Haible  <bruno@clisp.org>
6853
6854         Work around a glibc bug in strtok_r.
6855         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
6856         Undefine if UNDEFINE_STRTOK_R is set.
6857         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
6858         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6859         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
6860         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
6861         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
6862         UNDEFINE_STRTOK_R.
6863         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
6864
6865 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
6866
6867         exclude: minor fix
6868         * lib/exclude.c: Include wctype.h
6869
6870 2009-09-06  Akim Demaille  <demaille@gostai.com>
6871
6872         bootstrap: improve error message
6873         * build-aux/bootstrap (find_tool): Upon failure, report the list
6874         of candidates.
6875         Honor the initial value of the envvar.
6876
6877 2009-09-05  Eric Blake  <ebb9@byu.net>
6878
6879         symlinkat: new module
6880         * modules/symlinkat: New file.
6881         * lib/symlinkat.c: Likewise.
6882         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
6883         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
6884         * modules/unistd (Makefile.am): Use them.
6885         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
6886         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
6887         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
6888         * MODULES.html.sh (File system functions): Mention module.
6889         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
6890         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
6891         * modules/symlinkat-tests: New test.
6892         * tests/test-symlinkat.c: Likewise.
6893
6894         test-openat-safer: add more checks
6895         * tests/test-openat-safer.c (main): Check more code paths.
6896
6897 2009-09-05  Jim Meyering  <meyering@redhat.com>
6898
6899         syntax-check: detect unnecessary inclusion of openat.h
6900         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
6901
6902 2009-09-05  Bruno Haible  <bruno@clisp.org>
6903
6904         Support towlower, towupper.
6905         * doc/posix-functions/towlower.texi: Mention module wctype.
6906         * doc/posix-functions/towupper.texi: Likewise.
6907         * lib/wctype.in.h (towlower, towupper): New functions.
6908         * tests/test-wctype.c: Include stdio.h, stdlib.h.
6909         (ASSERT): New macro.
6910         (e): New variable.
6911         (main): Test also towlower, towupper. Test WEOF argument.
6912         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
6913
6914 2009-09-05  Bruno Haible  <bruno@clisp.org>
6915
6916         Fix conversion behaviour when the input is invalid.
6917         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
6918         mark occurring in first pass of indirect conversion.
6919         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
6920         input.
6921         Found by clang's static analyzer.
6922
6923 2009-09-05  Bruno Haible  <bruno@clisp.org>
6924
6925         * tests/test-striconveh.c (main): Test indirect conversion on platforms
6926         where direct conversion is possible.
6927
6928 2009-09-04  Eric Blake  <ebb9@byu.net>
6929
6930         openat: fail with ENOENT on empty name
6931         * lib/openat-proc.c (openat_proc_name): Special-case the empty
6932         buffer.
6933
6934         link-follow: fix logic bug in prior patch
6935         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
6936         reversed sense of yes and no in prior patch.  Avoid confusing
6937         compilation failure with desired semantics.
6938
6939         link-follow: accomodate mingw and cross-compilation
6940         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
6941         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
6942         cross-compilation results to -1, to make linkat easier to
6943         implement when cross-compiling.  Trivially support mingw.
6944         * modules/link-follow (configure.ac): Call new name.
6945         * NEWS: Mention this.
6946
6947 2009-09-03  Eric Blake  <ebb9@byu.net>
6948
6949         faccessat: compile replacement
6950         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
6951         needed.
6952
6953         fts: fix compilation error
6954         * lib/fts.c (includes): Re-add "openat.h", for
6955         openat_needs_fchdir.
6956
6957         faccessat: new module
6958         * modules/faccessat: New file.
6959         * lib/faccessat.c: Likewise.
6960         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
6961         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6962         * modules/unistd (Makefile.am): Use it.
6963         * lib/unistd.in.h (faccessat): Declare it.
6964         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
6965         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
6966         * MODULES.html.sh (File system functions): Mention it.
6967         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
6968         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
6969
6970         euidaccess: prefer POSIX over non-standard implementation
6971         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
6972         * lib/euidaccess.c (euidaccess): Use it if available.
6973
6974         openat: make template easier to use
6975         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
6976         AT_FUNC_F2 to be undefined.
6977         (VALIDATE_FLAG): New macro; use it to reject bad flags.
6978         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
6979         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
6980         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
6981         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
6982         Likewise.
6983         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
6984         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
6985         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
6986         Likewise.
6987
6988         openat: declare in POSIX headers
6989         * NEWS: Mention this.
6990         * modules/openat (configure.ac): Declare witnesses.
6991         (Depends-on): Add fcntl-h, sys_stat, unistd.
6992         (Include): Mention correct headers.
6993         * modules/fcntl-h (Depends-on): Add link-warning.
6994         (Files): Add openat.m4.
6995         (Makefile.am): Substitute witnesses.
6996         * modules/sys_stat (Files, Makefile.am): Likewise.
6997         * modules/unistd (Files, Makefile.am): Likewise.
6998         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
6999         (gl_OPENAT_DEFAULTS): New macro.
7000         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
7001         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
7002         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
7003         (SYS_STAT_H): Remove unused variable.
7004         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
7005         * lib/fcntl--.h (includes): Remove unneeded header.
7006         * lib/openat-safer.c (includes): Likewise.
7007         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
7008         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
7009         appropriate headers.
7010         (__OPENAT_PREFIX): Delete.
7011         * lib/fcntl.in.h (openat): Provide declaration.
7012         (AT_FDCWD): Fix Solaris bug.
7013         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
7014         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
7015         * lib/fchmodat.c (includes):  Adjust to find declaration.
7016         * lib/fchownat.c (includes): Likewise.
7017         * lib/mkdirat.c (includes): Likewise.
7018         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
7019         still visible.
7020
7021 2009-09-02  Eric Blake  <ebb9@byu.net>
7022
7023         errno: use consistently
7024         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
7025         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
7026         * lib/canonicalize.c (ELOOP): Likewise.
7027         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
7028         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
7029         * lib/lchown.c (EOPNOTSUPP): Likewise.
7030         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
7031         * lib/savewd.c (ESTALE): Likewise.
7032         * lib/settime.c (ENOSYS): Likewise.
7033         * lib/utimens.c (ENOSYS): Likewise.
7034         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
7035         * lib/chdir-safer.c (ELOOP): Likewise.
7036         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
7037         * modules/c-stack (Depends-on): Add errno.
7038         * modules/canonicalize (Depends-on): Likewise.
7039         * modules/chdir-safer (Depends-on): Likewise.
7040         * modules/fdopendir (Depends-on): Likewise.
7041         * modules/inet_ntop (Depends-on): Likewise.
7042         * modules/inet_pton (Depends-on): Likewise.
7043         * modules/lchown (Depends-on): Likewise.
7044         * modules/openat (Depends-on): Likewise.
7045         * modules/savewd (Depends-on): Likewise.
7046         * modules/settime (Depends-on): Likewise.
7047         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
7048
7049         fts: avoid leaking fds
7050         * modules/fts (Depends-on): Add cloexec.
7051         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
7052         flag.
7053
7054         fts: make directory fds more robust
7055         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
7056         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
7057
7058         backupfile, chdir-long, fts, savedir: make safer
7059         * lib/backupfile.c (includes): Use "dirent--.h", since
7060         numbered_backup can write to stderr during readdir.
7061         * lib/savedir.c (includes): Likewise.
7062         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
7063         emulation can write to stderr on failure.
7064         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
7065         * lib/getcwd.c: Document why opendir_safer is unused.
7066         * lib/glob.c: Likewise.
7067         * lib/scandir.c: Likewise.
7068         * lib/openat-proc.c: Likewise, for open_safer.
7069         * modules/backupfile (Depends-on): Add dirent-safer.
7070         * modules/savedir (Depends-on): Likewise.
7071         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
7072         * modules/chdir-long (Depends-on): Add openat-safer.
7073
7074         openat-safer: new module
7075         * modules/openat-safer: New file.
7076         * lib/openat-safer.c: Likewise.
7077         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
7078         * lib/fcntl-safer.h (openat_safer): Declare.
7079         * lib/fcntl--.h (openat): Override.
7080         * MODULES.html.sh (File descriptor based I/O): Mention it.
7081         * lib/openat.h: Add double-inclusion guards.
7082         * lib/openat.c (includes): Only include "fcntl-safer.h", not
7083         "fcntl--.h", so we can implement openat.
7084         * modules/openat-safer-tests: New test.
7085         * tests/test-openat-safer.c: New file.
7086
7087         dirent-safer: new module
7088         * modules/dirent-safer: New file.
7089         * lib/dirent--.h: Likewise.
7090         * lib/dirent-safer.h: Likewise.
7091         * lib/opendir-safer.c: Likewise.
7092         * m4/dirent-safer.m4: Likewise.
7093         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
7094         * modules/dirent-safer-tests: New test.
7095         * tests/test-dirent-safer.c: New file.
7096         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
7097
7098         fdopendir: optimize on mingw
7099         * lib/unistd.in.h (_gl_directory_name): New prototype.
7100         * lib/fchdir.c (_gl_directory_name): Implement it.
7101         (fchdir): Use it to simplify implementation.
7102         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
7103         fchdir, when available, to avoid calling [f]chdir().
7104
7105         fdopendir: split into its own module
7106         * lib/openat.c (fdopendir): Move...
7107         * lib/fdopendir.c: ...into new file.
7108         * modules/fdopendir: New module.
7109         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
7110         * modules/openat (Depends-on): Add fdopendir.
7111         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
7112         fdopendir here.
7113         * modules/savedir (Depends-on): Only need fdopendir, not full
7114         openat.
7115         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
7116         * lib/openat.h (fdopendir): Drop prototype.
7117         * lib/dirent.in.h (fdopendir): Provide prototype.
7118         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
7119         * modules/dirent (Makefile.am): Substitute them.
7120         * MODULES.html.sh (File system functions): Mention it.
7121         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
7122         * modules/fdopendir-tests: New file.
7123         * tests/test-fdopendir.c: Likewise.
7124
7125         fchdir: use more consistent macro convention
7126         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
7127         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
7128         REPLACE_FCHDIR, rather than relying on config.h macros.
7129         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
7130         inside a single make-time REPLACE_FCHDIR block, rather than using
7131         the config.h FCHDIR_REPLACEMENT.
7132         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
7133         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
7134         Manage fstat replacement.
7135         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
7136         REPLACE_FCHDIR.
7137         * modules/sys_stat (Files): Add m4/unistd_h.m4.
7138         (Makefile.am): Substitute REPLACE_FCHDIR.
7139         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
7140         FCHDIR_REPLACEMENT.
7141         * lib/dup-safer.c (dup_safer): Likewise.
7142         * lib/dup2.c (rpl_dup2): Likewise.
7143         * lib/dup3.c (rpl_dup3): Likewise.
7144         * lib/open.c (rpl_open): Likewise.
7145
7146         fchdir: simplify error handling, and support dup3
7147         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
7148         stdbool, malloc-posix, realloc-posix.
7149         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
7150         (ensure_dirs_slot): Return false on allocation failure.
7151         (rpl_dup2): Delete.
7152         (_gl_register_dup): New function.
7153         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
7154         (_gl_register_fd): Close fd on allocation failure.
7155         * lib/fcntl.in.h (_gl_register_fd): Update signature.
7156         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
7157         prototype.
7158         (rpl_dup2_fchdir): Delete prototype.
7159         * lib/open.c (open): Update caller.
7160         * lib/dup2.c (dup2): Track fchdir metadata.
7161         * lib/dup3.c (dup3): Likewise.
7162         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
7163         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
7164
7165 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7166
7167         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
7168         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
7169         don't pass arguments to AC_OUTPUT.
7170
7171 2009-09-02  Bruno Haible  <bruno@clisp.org>
7172
7173         * modules/mkdtemp (License): Relicense under LGPLv2+.
7174         Reported by Paolo Bonzini.
7175
7176 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7177
7178         Replace uses of obsolete autoconf macros in Jim's modules.
7179         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
7180         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
7181         can evoke a warning from autoconf when run with -Wobsolete
7182         enabled.  They were declared obsolete for good reasons (see
7183         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
7184         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
7185         should not continue using the deprecated macros.
7186         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
7187         obsolete Autoconf macros with modern counterparts.
7188         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7189         * m4/dos.m4 (gl_AC_DOS): Likewise.
7190         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
7191         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
7192         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
7193         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
7194         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
7195         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
7196         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
7197         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
7198         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
7199         Likewise.
7200         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
7201         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
7202         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
7203         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
7204         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
7205         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
7206
7207 2009-09-01  Eric Blake  <ebb9@byu.net>
7208
7209         fchdir: fix off-by-one bug in previous patch
7210         * lib/fchdir.c (rpl_fstat): Use correct bounds.
7211         (_gl_unregister_fd): Delete useless if.
7212
7213 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
7214
7215         maint.mk: sort the list of syntax-check rules
7216         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
7217         easier to get a sense of progress when the rules are run sequentially
7218         and take a long time.
7219
7220 2009-09-01  Simon Josefsson  <simon@josefsson.org>
7221
7222         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
7223         * modules/netinet_in: Likewise.
7224         * modules/sys_file: Likewise.
7225         * modules/sys_ioctl: Likewise.
7226         * modules/sys_select: Likewise.
7227         * modules/sys_socket: Likewise.
7228         * modules/sys_stat: Likewise.
7229         * modules/sys_time: Likewise.
7230         * modules/sys_times: Likewise.
7231         * modules/sys_utsname: Likewise.
7232         * modules/sys_wait: Likewise.
7233
7234 2009-09-01  Jim Meyering  <meyering@redhat.com>
7235
7236         fts: help ensure that return values are not ignored
7237         * lib/fts_.h (__GNUC_PREREQ): Define.
7238         (__attribute_warn_unused_result__): Define.
7239         (fts_children, fts_close, fts_open, fts_read): Declare with
7240         __attribute_warn_unused_result__.
7241
7242         fts: fts_close now fails also when closing a dir file descriptor fails
7243         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
7244         and propagate to caller, along with errno.
7245
7246         announce-gen: correct formatting in --help output
7247         * build-aux/announce-gen (usage): Move the one-line description in
7248         --help output "up", to where it belongs, just after Usage:.
7249
7250 2009-08-31  Eric Blake  <ebb9@byu.net>
7251
7252         fchdir: port to mingw
7253         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
7254         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
7255         opened, then use a substitute.
7256         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
7257         replacement.
7258         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
7259         (_gl_register_fd): No need to check stat if open already filters
7260         all directories.
7261         (fchdir): Fix error condition to match POSIX.
7262         * modules/fchdir (Depends-on): Add sys_stat.
7263         * doc/posix-functions/open.texi (open): Document the limitation.
7264         * modules/fchdir-tests: New file.
7265         * tests/test-fchdir.c: Likewise.
7266
7267         canonicalize: allow cross-testing from cygwin to mingw
7268         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
7269         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
7270         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
7271         Likewise.
7272         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
7273         target does not support symlinks.
7274         * tests/test-canonicalize-lgpl.sh: Likewise.
7275
7276         chown: avoid compilation warning on mingw
7277         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
7278         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
7279         mingw.
7280         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
7281         * modules/chown (Depends-on): Add errno.
7282
7283 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
7284
7285         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
7286         command.
7287
7288 2009-08-31  Jim Meyering  <meyering@redhat.com>
7289
7290         canonicalize: remove useless initialization
7291         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
7292         initialization of local, "end".
7293
7294 2009-08-30  Bruno Haible  <bruno@clisp.org>
7295
7296         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
7297         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
7298         ENOSYS.
7299
7300 2009-08-30  Bruno Haible  <bruno@clisp.org>
7301
7302         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
7303         /usr/xpg4/bin/tr when it exists.
7304         * tests/test-pipe-filter-gi1.sh: Likewise.
7305
7306 2009-08-30  Bruno Haible  <bruno@clisp.org>
7307
7308         Work around deficient /usr/bin/id program on Solaris.
7309         * tests/test-file-has-acl.sh (ID): New variable.
7310         * tests/test-set-mode-acl.sh (ID): Likewise.
7311         * tests/test-copy-acl.sh (ID): Likewise.
7312         * tests/test-copy-file.sh (ID): Likewise.
7313
7314 2009-08-30  Bruno Haible  <bruno@clisp.org>
7315
7316         New module 'xstriconveh'.
7317         * lib/xstriconveh.h: New file.
7318         * lib/xstriconveh.c: New file.
7319         * modules/xstriconveh: New file.
7320
7321 2009-08-30  Bruno Haible  <bruno@clisp.org>
7322
7323         Make it easier to use mem_cd_iconveh.
7324         * lib/striconveh.h (iconveh_t): New type.
7325         (iconveh_open, iconveh_close): New declarations.
7326         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
7327         with a single 'const iconveh_t *' argument.
7328         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
7329         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
7330         with a single 'const iconveh_t *' argument.
7331         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
7332         * tests/test-striconveh.c (main): Update.
7333         * NEWS: Mention the change.
7334
7335 2009-08-30  Bruno Haible  <bruno@clisp.org>
7336
7337         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
7338         problem.
7339
7340 2009-08-30  Bruno Haible  <bruno@clisp.org>
7341
7342         Work around iconv_open problem on Solaris.
7343         * lib/iconv_open-solaris.gperf: New file.
7344         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
7345         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
7346         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
7347         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
7348         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
7349         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
7350
7351 2009-08-29  Jim Meyering  <meyering@redhat.com>
7352
7353         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
7354         * top/maint.mk (cvs-check): Remove target; it was just an alias
7355         to the better-named vc-diff-check.
7356         (maintainer-distcheck): Remove rule.  It was used only from
7357         the (alpha/beta/major) target, and all of its commands but one
7358         were coreutils-specific.
7359         (vc-dist): Remove rule.
7360         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
7361         Run vc-diff-check, not vc-dist.
7362         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
7363
7364 2009-08-27  Bruno Haible  <bruno@clisp.org>
7365
7366         * tests/test-bitrotate.c (main): Remove test that uses a shift count
7367         of 0.
7368
7369 2009-08-27  Bruno Haible  <bruno@clisp.org>
7370
7371         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
7372         compilers.
7373         * doc/func.texi: Document the SunPRO C bug.
7374
7375 2009-08-27  Bruno Haible  <bruno@clisp.org>
7376
7377         Fix link error on Solaris.
7378         * tests/test-parse-duration.c (xstrdup): Remove function.
7379
7380 2009-08-26  Pádraig Brady  <P@draigbrady.com>
7381
7382         ignore-value: handle pointer types, too
7383         * lib/ignore-value.h (__attribute__): Remove definition.
7384         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
7385         of a more concise and more-often effective "(void) i" statement.
7386         (ignore_ptr): New function to suppress warnings from functions that
7387         return pointers, and to make it explicit that one function doesn't
7388         handle all cases.
7389
7390 2009-08-25  Bruno Haible  <bruno@clisp.org>
7391
7392         dup2: work around a Linux bug.
7393         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
7394         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
7395         * doc/posix-functions/dup2.texi: Mention the Linux bug.
7396         Reported by Simon Josefsson.
7397
7398 2009-08-25  Jim Meyering  <meyering@redhat.com>
7399
7400         libguestfs uses gnulib
7401         * users.txt: Add libguestfs.
7402
7403 2009-08-24  Eric Blake  <ebb9@byu.net>
7404
7405         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
7406         * lib/pipe2.c (includes): Add binary-io.h.
7407         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
7408
7409 2009-08-24  Bruno Haible  <bruno@clisp.org>
7410
7411         Tolerate declared but missing accept4 syscall.
7412         * lib/accept4.c (accept4): Invoke original accept4 function first, if
7413         available.
7414         * lib/sys_socket.in.h (accept4): If the function is already present,
7415         override it.
7416         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
7417         * modules/accept4 (Makefile.am): Compile accept4.c always.
7418         Reported by Paolo Bonzini and Eric Blake.
7419
7420 2009-08-23  Bruno Haible  <bruno@clisp.org>
7421
7422         New module 'accept4'.
7423         * lib/sys_socket.in.h (accept4): New declaration.
7424         * lib/accept4.c: New file.
7425         * m4/accept4.m4: New file.
7426         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
7427         GNULIB_ACCEPT4, HAVE_ACCEPT4.
7428         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
7429         HAVE_ACCEPT4.
7430         * modules/accept4: New file.
7431         * doc/glibc-functions/accept4.texi: Mention the new module.
7432
7433 2009-08-24  Jim Meyering  <meyering@redhat.com>
7434
7435         progname: also set global program_invocation_name, when possible
7436         Before this change, a libtool-enabled program that calls glibc's
7437         error function would report the program name as
7438         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
7439         * modules/progname (configure.ac): Check for a declaration of
7440         program_invocation_name.
7441         * lib/progname.c:  Include <errno.h>.
7442         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
7443         Set program_invocation_name.
7444
7445 2009-08-23  Bruno Haible  <bruno@clisp.org>
7446
7447         * lib/dup3.c: Include <string.h>.
7448
7449 2009-08-23  Bruno Haible  <bruno@clisp.org>
7450
7451         * lib/dup3.c (dup3): Test only once whether the system actually exists.
7452         * lib/pipe2.c (pipe2): Likewise.
7453         Suggested by Eric Blake.
7454
7455 2009-08-23  Bruno Haible  <bruno@clisp.org>
7456
7457         Tolerate declared but missing dup3 syscall.
7458         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
7459         * lib/unistd.in.h (dup3): If the function is already present,
7460         override it.
7461         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
7462         * modules/dup3 (Makefile.am): Compile dup3.c always.
7463         Reported by Paolo Bonzini.
7464
7465 2009-08-23  Bruno Haible  <bruno@clisp.org>
7466
7467         Tolerate declared but missing pipe2 syscall.
7468         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
7469         available.
7470         * lib/unistd.in.h (pipe2): If the function is already present,
7471         override it.
7472         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
7473         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
7474         Reported by Paolo Bonzini.
7475
7476 2009-08-23  Bruno Haible  <bruno@clisp.org>
7477
7478         * lib/pipe2.c (pipe2): Move #ifs inside function.
7479
7480 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
7481
7482         quotearg: document limitations of quote_these_too
7483         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
7484         those limitations are created.
7485         * lib/quotearg.h (set_char_quoting): Document that digits and
7486         letters that are special after backslash are not permitted.
7487         (quotearg_char): Cross-reference set_char_quoting documentation.
7488
7489 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
7490
7491         quotearg: implement custom_quoting_style
7492         * lib/quotearg.c: (struct quoting_options): Add left_quote and
7493         right_quote fields.
7494         (set_custom_quoting): New public function.
7495         (quotearg_buffer_restyled): Add left_quote and right_quote
7496         arguments, handle them very much like locale quoting, and update
7497         all uses.
7498         (quotearg_n_custom): New public function.
7499         (quotearg_n_custom_mem): New public function.
7500         (quotearg_custom): New public function.
7501         (quotearg_custom_mem): New public function.
7502         * lib/quotearg.h: Prototype and document new public functions.
7503         (enum quoting_style): For escape_quoting_style and
7504         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
7505         ignored even though they're otherwise like c_quoting_style.
7506         Add custom_quoting_style member and document with comparison to
7507         clocale_quoting_style.
7508         * tests/test-quotearg.c (custom_quotes): New array.
7509         (custom_results): New array.
7510         (main): Extend to test custom quoting.
7511
7512 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
7513
7514         quotearg: fix right quote escaping when it's in quote_these_too
7515         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
7516         quote, be sure to prepend only one backslash.
7517         * tests/test-quotearg.c (use_quote_double_quotes): New function.
7518         (main): Test it.
7519
7520 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
7521
7522         quotearg-tests: test escaping of embedded locale quotes
7523         * tests/test-quotearg.c (struct result_strings): Add member for
7524         new input.
7525         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
7526         (inputs): Add new input.
7527         (results_g): Add expected results.
7528         (flag_results): Likewise.
7529         (locale_results): Likewise.
7530         (compare_strings): Check those.
7531
7532 2009-08-23  Bruno Haible  <bruno@clisp.org>
7533
7534         Tests for module 'dup3'.
7535         * modules/dup3-tests: New file.
7536         * tests/test-dup3.c: New file.
7537
7538         New module 'dup3'.
7539         * lib/unistd.in.h (dup3): New declaration.
7540         * lib/dup3.c: New file.
7541         * m4/dup3.m4: New file.
7542         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
7543         HAVE_DUP3.
7544         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
7545         * modules/dup3: New file.
7546         * doc/glibc-functions/dup3.texi: Mention the new module.
7547
7548 2009-08-23  Bruno Haible  <bruno@clisp.org>
7549
7550         Tweak the dup2 test.
7551         * tests/test-dup2.c (main): Create the test file empty. Verify that an
7552         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
7553         the test file is still empty. Fix argument order of lseek.
7554
7555 2009-08-23  Bruno Haible  <bruno@clisp.org>
7556
7557         Avoid test link errors when the modules getopt-gnu, gettext are used.
7558         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
7559         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
7560
7561 2009-08-23  Bruno Haible  <bruno@clisp.org>
7562
7563         Fix getdtablesize() on mingw.
7564         * lib/getdtablesize.c (getdtablesize): Implement differently.
7565         * lib/unistd.in.h (getdtablesize): Improve comment.
7566
7567 2009-08-23  Bruno Haible  <bruno@clisp.org>
7568
7569         New module 'mkostemp'.
7570         Based on Ulrich Drepper's 2007-08-10 change in glibc.
7571         * lib/stdlib.in.h (mksotemp): New declaration.
7572         * lib/mkostemp.c: New file, from glibc with modifications.
7573         * lib/tempname.h (GT_FILE): Remove outdated comment.
7574         (gen_tempname): Add flags argument.
7575         * lib/tempname.c (__GT_BIGFILE): Remove macro.
7576         (__GT_FILE): Map to 1.
7577         (small_open, large_open): Remove macros.
7578         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
7579         * lib/mkstemp.c (mkstemp): Update.
7580         * lib/mkdtemp.c (mkdtemp): Likewise.
7581         * m4/mkostemp.m4: New file.
7582         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
7583         HAVE_MKOSTEMP.
7584         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
7585         HAVE_MKOSTEMP.
7586         * modules/mkostemp: New file, based on modules/mkstemp.
7587         * doc/glibc-functions/mkostemp.texi: Mention the new module.
7588         * NEWS: Mention the change.
7589
7590 2009-08-23  Bruno Haible  <bruno@clisp.org>
7591
7592         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
7593         Reported by Eric Blake.
7594
7595 2009-08-23  Bruno Haible  <bruno@clisp.org>
7596
7597         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
7598         Reported by Eric Blake.
7599
7600 2009-08-23  Bruno Haible  <bruno@clisp.org>
7601
7602         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
7603         * modules/pipe2 (Depends-on): Likewise.
7604
7605 2009-08-23  Eric Blake  <ebb9@byu.net>
7606
7607         fcntl-h: add O_TTY_INIT support
7608         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
7609         * tests/test-fcntl-h.c (o): Test it.
7610         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
7611
7612         fcntl-h: rename from fcntl, in preparation for fcntl(2)
7613         * modules/fcntl: Move <fcntl.h> header replacement...
7614         * modules/fcntl-h: ...to new name, so as not to collide with
7615         like-named function.
7616         * tests/test-fcntl.c: Rename...
7617         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
7618         * modules/fcntl-tests: Rename...
7619         * modules/fcntl-h-tests: ...to this.  Update test file name.
7620         * modules/chdir-long (Depends-on): Update clients.
7621         * modules/chdir-safer (Depends-on): Likewise.
7622         * modules/fcntl-safer (Depends-on): Likewise.
7623         * modules/fts (Depends-on): Likewise.
7624         * modules/mkancesdirs (Depends-on): Likewise.
7625         * modules/mkdir-p (Depends-on): Likewise.
7626         * modules/open (Depends-on): Likewise.
7627         * modules/savewd (Depends-on): Likewise.
7628         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
7629         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
7630
7631 2009-08-22  Bruno Haible  <bruno@clisp.org>
7632
7633         * modules/binary-io (License): Relicense under LGPL.
7634         * modules/pipe2 (License): Likewise.
7635
7636 2009-08-22  Bruno Haible  <bruno@clisp.org>
7637
7638         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
7639         return value.
7640         * lib/pipe-filter-gi.c (filter_init): Likewise.
7641         Reported by Eric Blake.
7642
7643 2009-08-22  Bruno Haible  <bruno@clisp.org>
7644
7645         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
7646         * modules/pipe (Depends-on): Add pipe2.
7647
7648 2009-08-22  Bruno Haible  <bruno@clisp.org>
7649
7650         Tests for module 'pipe2'.
7651         * modules/pipe2-tests: New file.
7652         * tests/test-pipe2.c: New file.
7653
7654         New module 'pipe2'.
7655         * lib/unistd.in.h (pipe2): New declaration.
7656         * lib/pipe2.c: New file.
7657         * m4/pipe2.m4: New file.
7658         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
7659         HAVE_PIPE2.
7660         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
7661         * modules/pipe2: New file.
7662         * doc/glibc-functions/pipe2.texi: Mention the new module.
7663
7664 2009-08-22  Bruno Haible  <bruno@clisp.org>
7665
7666         Reference some new glibc functions.
7667         * doc/glibc-functions/accept4.texi: New file.
7668         * doc/glibc-functions/dup3.texi: New file.
7669         * doc/glibc-functions/mkostemp.texi: New file.
7670         * doc/glibc-functions/pipe2.texi: New file.
7671         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
7672         (Glibc sys/socket.h): Refer to accept4.
7673         (Glibc unistd.h): Refer to dup3, pipe2.
7674         Reported by Eric Blake.
7675
7676 2009-08-22  Jim Meyering  <meyering@redhat.com>
7677             Bruno Haible  <bruno@clisp.org>
7678
7679         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
7680         This makes it so packages using automake-1.11's silent-rules option
7681         can print e.g., a single "GEN    configmake.h" line, rather than
7682         the 30+ statements that perform the job.  If you want to see the
7683         actual commands, you can still run "make V=1".
7684         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
7685         so that make output is abbreviated when those variables are defined
7686         appropriately.
7687         * modules/argz: Likewise.
7688         * modules/arpa_inet: Likewise.
7689         * modules/byteswap: Likewise.
7690         * modules/configmake: Likewise.
7691         * modules/dirent: Likewise.
7692         * modules/errno: Likewise.
7693         * modules/fcntl: Likewise.
7694         * modules/float: Likewise.
7695         * modules/fnmatch: Likewise.
7696         * modules/getopt-posix: Likewise.
7697         * modules/glob: Likewise.
7698         * modules/iconv_open: Likewise.
7699         * modules/inttypes: Likewise.
7700         * modules/localcharset: Likewise.
7701         * modules/locale: Likewise.
7702         * modules/math: Likewise.
7703         * modules/netdb: Likewise.
7704         * modules/netinet_in: Likewise.
7705         * modules/poll: Likewise.
7706         * modules/posix_spawnp-tests: Likewise.
7707         * modules/sched: Likewise.
7708         * modules/search: Likewise.
7709         * modules/selinux-h: Likewise.
7710         * modules/signal: Likewise.
7711         * modules/spawn: Likewise.
7712         * modules/stdarg: Likewise.
7713         * modules/stdbool: Likewise.
7714         * modules/stddef: Likewise.
7715         * modules/stdint: Likewise.
7716         * modules/stdio: Likewise.
7717         * modules/stdlib: Likewise.
7718         * modules/string: Likewise.
7719         * modules/strings: Likewise.
7720         * modules/sys_file: Likewise.
7721         * modules/sys_ioctl: Likewise.
7722         * modules/sys_select: Likewise.
7723         * modules/sys_socket: Likewise.
7724         * modules/sys_stat: Likewise.
7725         * modules/sys_time: Likewise.
7726         * modules/sys_times: Likewise.
7727         * modules/sys_utsname: Likewise.
7728         * modules/sys_wait: Likewise.
7729         * modules/sysexits: Likewise.
7730         * modules/time: Likewise.
7731         * modules/unistd: Likewise.
7732         * modules/wchar: Likewise.
7733         * modules/wctype: Likewise.
7734
7735 2009-08-22  Jim Meyering  <meyering@redhat.com>
7736
7737         announce-gen: detect write failure
7738         * build-aux/announce-gen: Add Coda at end.
7739         Remove equivalent-but-more-verbose block at top.
7740
7741 2009-08-19  Akim Demaille  <demaille@gostai.com>
7742
7743         bootstrap: --help to stdout.
7744         * bootstrap (usage): Don't send --help to stderr.
7745         Use a here doc instead of a long string.
7746
7747 2009-08-21  Eric Blake  <ebb9@byu.net>
7748
7749         test-popen-safer: split from test-popen
7750         * tests/test-popen.c (main): Move...
7751         * tests/test-popen.h: ...into new file.
7752         * tests/test-popen-safer2.c: New file.
7753         * modules/popen-tests (Files): Add test-popen.h.
7754         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
7755         Suggested by Bruno Haible.
7756
7757         test-fcntl-safer: split from test-open
7758         * tests/test-open.c (main): Move...
7759         * tests/test-open.h: ...into new file.
7760         * tests/test-fcntl-safer.c: New file.
7761         * modules/open-tests (Files): Add test-open.h.
7762         * modules/fcntl-safer-tests: New file.
7763         Suggested by Bruno Haible.
7764
7765         test-fopen-safer: split from test-fopen
7766         * tests/test-fopen.c (main): Move...
7767         * tests/test-fopen.h: ...into new file.
7768         * tests/test-fopen-safer.c: New file.
7769         * modules/fopen-tests (Files): Add test-fopen.h.
7770         * modules/fopen-safer-tests: New file.
7771         Suggested by Bruno Haible.
7772
7773 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
7774
7775         popen-safer: test O_CLOEXEC at run-time.
7776         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
7777
7778 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
7779
7780         fcntl: move more flags to the header
7781         * lib/cloexec.c: Do not define FD_CLOEXEC here.
7782         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
7783         * lib/fcntl.in.h: Do both things here.
7784
7785 2009-08-21  Jim Meyering  <meyering@redhat.com>
7786
7787         consistently remove $@-t before redirecting to it
7788         * modules/argz: Remove $@-t and $@ before redirecting to the former.
7789         * modules/alloca-opt: Likewise.
7790         * modules/byteswap: Likewise.
7791         * modules/fnmatch: Likewise.
7792         * modules/getopt-posix: Likewise.
7793         * modules/glob: Likewise.
7794         * modules/poll: Likewise.
7795         * modules/posix_spawnp-tests: Likewise.
7796         * modules/sys_socket: Likewise.
7797         * modules/sysexits: Likewise.
7798
7799 2009-08-21  Eric Blake  <ebb9@byu.net>
7800
7801         popen: simplify access to original popen
7802         * lib/popen.c (rpl_popen): No need to worry about popen being a
7803         macro.
7804         Reported by Bruno Haible.
7805
7806 2009-08-20  Eric Blake  <ebb9@byu.net>
7807
7808         build: avoid some compiler warnings
7809         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
7810         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
7811         type.
7812         (new_exclude_segment, excluded_file_pattern_p)
7813         (excluded_file_name_p): Reduce scope.
7814         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
7815         old-style declaration.
7816
7817 2009-08-20  Simon Josefsson  <simon@josefsson.org>
7818
7819         * tests/test-exclude1.sh: Handle Windows EOL.
7820         * tests/test-exclude2.sh: Likewise.
7821         * tests/test-exclude3.sh: Likewise.
7822         * tests/test-exclude4.sh: Likewise.
7823         * tests/test-exclude5.sh: Likewise.
7824         * tests/test-exclude6.sh: Likewise.
7825         * tests/test-exclude7.sh: Likewise.
7826
7827 2009-08-19  Akim Demaille  <demaille@gostai.com>
7828
7829         bootstrap: find sha1sum when named gsha1sum.
7830         * bootstrap (find_tool): New.
7831         ($SHA1SUM): New.
7832         Use it.
7833
7834 2009-08-20  Jim Meyering  <meyering@redhat.com>
7835
7836         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
7837         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
7838         expression that converts "." in a file name to "\." in the resulting
7839         regexp.  Start with a dummy statement, so that prior shell variable
7840         definitions are expanded portably.  Reported by Simon Josefsson.
7841
7842 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
7843
7844         Fix polling for writeability of a screen buffer.
7845         * lib/poll.c: Distinguish input and screen buffers for the
7846         Win32 implementation.
7847         * lib/select.c: Likewise.
7848
7849 2009-08-19  Eric Blake  <ebb9@byu.net>
7850
7851         popen-safer: prevent popen from clobbering std descriptors
7852         * modules/popen-safer: New file.
7853         * lib/popen-safer.c: Likewise.
7854         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
7855         * lib/stdio--.h (popen): Provide override.
7856         * lib/stdio-safer.h (popen_safer): Provide declaration.
7857         * tests/test-popen.c (includes): Partially test this.
7858         * modules/popen-safer-tests: New file, for more tests.
7859         * tests/test-popen-safer.c: Likewise.
7860         * MODULES.html.sh (file stream based Input/Output): Mention it.
7861
7862         tests: test some of the *-safer modules
7863         * modules/fopen-safer (Depends-on): Add fopen.
7864         * modules/fcntl-safer (Depends-on): Add fcntl.
7865         * modules/stdlib-safer (Depends-on): Add stdlib.
7866         (configure.ac): Set indicator.
7867         * modules/unistd-safer (configure.ac): Likewise.
7868         * modules/tmpfile-safer (configure.ac): Likewise.
7869         (Depends-on): Add tmpfile.
7870         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
7871         active.
7872         * tests/test-fopen.c (includes): Test safer versions when they are
7873         in use.
7874         * tests/test-open.c (includes): Likewise.
7875
7876         popen: fix cygwin 1.5 bug when stdin closed
7877         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
7878         * modules/popen: New file.
7879         * modules/popen-tests: Likewise.
7880         * tests/test-popen.c: Likewise.
7881         * m4/popen.m4: Likewise.
7882         * lib/popen.c: Likewise.
7883         * lib/stdio.in.h (popen): New declaration.
7884         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
7885         * modules/stdio (Makefile.am): Likewise.
7886         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
7887
7888 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
7889
7890         maint.mk: give full control over update-copyright exclusions
7891         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
7892         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
7893         (update-copyright): Don't force inclusion of top-level
7894         ChangeLog.  Don't force exclusion of all COPYING files, but make
7895         them the default exclusion instead.
7896
7897 2009-08-16  Bruno Haible  <bruno@clisp.org>
7898
7899         Fix test failures on Solaris 10.
7900         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
7901         tests when Solaris iconv() is used.
7902         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
7903         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
7904         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
7905         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
7906         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
7907
7908 2009-08-16  Bruno Haible  <bruno@clisp.org>
7909
7910         Fix test failures on Solaris 10.
7911         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
7912         'tr' program and pass it as first argument.
7913         * tests/test-pipe-filter-gi1.sh: Likewise.
7914         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
7915         program as first argument.
7916         * tests/test-pipe-filter-gi1.c (main): Likewise.
7917
7918 2009-08-16  Eric Blake  <ebb9@byu.net>
7919
7920         fpurge: fix previous commits
7921         * modules/fpurge (Makefile.am): Make replacement conditional,
7922         partially reverting 2007-04-29 change; missed in previous
7923         attempt.
7924         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
7925         is missing.
7926
7927 2009-08-16  Bruno Haible  <bruno@clisp.org>
7928
7929         Clarify fpurge's effect on the file position.
7930         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
7931         * tests/test-fpurge.c (main): Make a second pass for checking the file
7932         position.
7933
7934 2009-08-16  Bruno Haible  <bruno@clisp.org>
7935
7936         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
7937         declaration of fpurge is missing.
7938         * tests/test-fpurge.c (main): Check that the file has not more contents
7939         than expected. Close the file before removing it.
7940
7941 2009-08-15  Eric Blake  <ebb9@byu.net>
7942
7943         fpurge: don't wrap working cygwin implementation
7944         * lib/fpurge.c (fpurge): Fix comment typo.
7945         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
7946         1.7 to avoid replacement.
7947         * tests/test-fpurge.c (main): Enhance test.
7948
7949 2009-08-15  Eric Blake  <ebb9@byu.net>
7950         and Jim Meyering  <meyering@redhat.com>
7951
7952         test-update-copyright: skip if perl is insufficient
7953         * tests/test-update-copyright.sh: Failure to run maintainer tool
7954         should not cause testsuite failure on cygwin 1.5.
7955
7956 2009-08-14  Eric Blake  <ebb9@byu.net>
7957
7958         doc: mention more functions added in cygwin 1.7.0
7959         * doc/posix-headers/limits.texi (limits.h): Update for recent
7960         cygwin additions.
7961         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
7962         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
7963         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
7964         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
7965         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
7966
7967 2009-08-14  Eric Blake  <ebb9@byu.net>
7968
7969         maint.mk: simplify update-copyright rule
7970         * top/maint.mk (update-copyright-local): Delete, and document how
7971         to do it in cfg.mk instead.
7972         (update-copyright-exclude-regexp): Delete, and document how to do
7973         it in .x-update-copyright instead.
7974         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
7975         exclude ChangeLog.
7976
7977 2009-08-14  Bruno Haible  <bruno@clisp.org>
7978
7979         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
7980
7981 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
7982
7983         maint.mk: support update-copyright-env
7984         * top/maint.mk (update-copyright-env): Define place-holder.
7985         (update-copyright): Expand $(update-copyright-env) before
7986         invoking update-copyright.
7987
7988 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
7989
7990         update-copyright: implement forced reformatting
7991         * build-aux/update-copyright: Implement and document
7992         UPDATE_COPYRIGHT_FORCE.
7993         * tests/test-update-copyright.sh: Test it.
7994
7995 2009-08-14  Eric Blake  <ebb9@byu.net>
7996         and Bruno Haible  <bruno@clisp.org>
7997
7998         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
7999         * tests/test-locale.c: Revert previous patch related to NULL.
8000         * tests/test-stdio.c: Likewise.
8001         * tests/test-stdlib.c: Likewise.
8002         * tests/test-string.c: Likewise.
8003         * tests/test-unistd.c: Likewise.
8004         * modules/time-tests (Depends-on): Add verify.
8005         * modules/wchar-tests (Depends-on): Likewise.
8006         * tests/test-time.c: Test for NULL compliance.
8007         * tests/test-wchar.c: Likewise.
8008         * modules/locale (Depends-on): Add stddef.
8009         * modules/stdio (Depends-on): Likewise.
8010         * modules/stdlib (Depends-on): Likewise.
8011         * modules/string (Depends-on): Likewise.
8012         * modules/time (Depends-on): Likewise.
8013         * modules/unistd (Depends-on): Likewise.
8014         * modules/wchar (Depends-on): Likewise.
8015         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
8016         * lib/stdlib.in.h (includes): Likewise.
8017         * lib/string.in.h (includes): Likewise.
8018         * lib/time.in.h (includes): Likewise.
8019         * lib/unistd.in.h (includes): Likewise.
8020         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
8021         replaced.
8022         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8023         * m4/stddef_h.m4: New file.
8024         * modules/stddef: Likewise.
8025         * lib/stddef.in.h: Likewise.
8026         * modules/stddef-tests: Likewise.
8027         * tests/test-stddef.c: Likewise.
8028         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
8029         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
8030         * doc/posix-headers/locale.texi (locale.h): Likewise.
8031         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
8032         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
8033         * doc/posix-headers/string.texi (string.h): Likewise.
8034         * doc/posix-headers/time.texi (time.h): Likewise.
8035         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
8036         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
8037
8038 2009-08-14  Eric Blake  <ebb9@byu.net>
8039
8040         doc: improve git diff of texinfo files
8041         * .gitattributes: Add rule for *.texi files, with hint on how to
8042         use it.
8043         Copied from m4, and based on a report by Bruno Haible.
8044
8045 2009-08-14  Bruno Haible  <bruno@clisp.org>
8046
8047         Disable multithread support by default on Cygwin 1.5.x for real.
8048         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
8049
8050 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
8051
8052         update-copyright: much ado about intervals
8053         * build-aux/update-copyright: Implement and document
8054         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
8055         of copyright year intervals.
8056         Also, document UPDATE_COPYRIGHT_YEAR.
8057         * tests/test-update-copyright.sh: Test it.
8058
8059         update-copyright: convert 2-digit to 4-digit years
8060         * build-aux/update-copyright: Implement and document.
8061         * tests/test-update-copyright.sh: Update.
8062
8063 2009-08-14  Jim Meyering  <meyering@redhat.com>
8064
8065         test-exclude: avoid coreutils "make check" failure
8066         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
8067         just as in test-argmatch.c.
8068
8069 2009-08-13  Eric Blake  <ebb9@byu.net>
8070
8071         test-dup2: fix bad assumption
8072         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
8073         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
8074
8075         test-version-etc: fix CRLF portability issue
8076         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
8077         recognize \r.
8078         * tests/test-argp-version-etc-1.sh: Likewise.
8079
8080         getopt: update client modules
8081         * modules/argp (Depends-on): Use getopt-gnu.
8082         * modules/git-merge-changelog (Depends-on): Likewise.
8083         * modules/long-options (Depends-on): Likewise.
8084         * modules/xstrtol (Depends-on): Likewise.
8085
8086 2009-08-13  Simon Josefsson  <simon@josefsson.org>
8087
8088         * tests/test-version-etc.sh: Don't fail on different
8089         project/version.  Don't fail on CRLF differences.  Rewrite to use
8090         multiple -e instead of multiple sed forks, suggested by Eric Blake
8091         <ebb9@byu.net>.
8092         * tests/test-argp-version-etc-1.sh: Likewise.
8093
8094 2009-08-13  Simon Josefsson  <simon@josefsson.org>
8095
8096         * tests/test-version-etc.sh: Don't fail on different
8097         project/version.
8098
8099 2009-08-12  Bruno Haible  <bruno@clisp.org>
8100
8101         Tests for modules 'getopt-posix', 'getopt-gnu'.
8102         * modules/getopt-posix-tests: New file.
8103         * tests/test-getopt.c: New file.
8104         * tests/test-getopt.h: New file.
8105         * tests/test-getopt_long.h: New file.
8106
8107         New modules 'getopt-posix', 'getopt-gnu'.
8108         * modules/getopt-gnu: New file, renamed from modules/getopt.
8109         * modules/getopt-posix: New file.
8110         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
8111         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
8112         (gl_GETOPT): Remove macro.
8113         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
8114         Disable the test against BSD systems that declare optreset. Test
8115         against mingw bug. Test against lack of support of optional arguments
8116         on many platforms.
8117         * doc/glibc-headers/getopt.texi: Update module name and list of
8118         relevant platforms.
8119         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
8120         'getopt-gnu' and more portability problems.
8121         * NEWS: Mention the changes.
8122
8123 2009-08-12  Bruno Haible  <bruno@clisp.org>
8124
8125         Ensure that optarg etc. get declared by <unistd.h>.
8126         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
8127         AC_USE_SYSTEM_EXTENSIONS.
8128         * modules/getopt (Depends-on): Add 'extensions'.
8129
8130 2009-08-12  Bruno Haible  <bruno@clisp.org>
8131
8132         Avoid test link errors.
8133         * modules/pipe-filter-ii-tests (Makefile.am): Define
8134         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
8135         * modules/pipe-filter-gi-tests (Makefile.am): Define
8136         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
8137         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8138
8139 2009-08-12  Bruno Haible  <bruno@clisp.org>
8140
8141         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
8142         gl_GETOPT_SUBSTITUTE before.
8143         (gl_GETOPT): Use it.
8144         * m4/argp.m4 (gl_ARGP): Update.
8145         Reported by Sergey Poznyakoff.
8146
8147         * m4/getopt.m4: Reorder macros.
8148         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
8149         (gl_GETOPT_SUBSTITUTE): Remove macro.
8150
8151 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
8152
8153         Minor improvement in gitlog-to-changelog
8154
8155         * build-aux/gitlog-to-changelog: New option `--format' makes
8156         output format string configurable.
8157
8158 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
8159
8160         Optimize exclude: use hash tables for non-wildcard patterns.
8161
8162         * lib/exclude.c: Include hash.h and mbuiter.h
8163         (struct exclude_pattern, exclude_segment): New data types.
8164         (struct exclude): Rewrite.
8165         (fnmatch_pattern_has_wildcards): New function.
8166         (new_exclude_segment, free_exclude_segment): New functions.
8167         (excluded_file_pattern_p, excluded_file_name_p): New functions.
8168         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
8169         * lib/exclude.h (is_fnmatch_pattern): New prototype.
8170         * modules/exclude: Depend on hash and mbuiter.
8171
8172         * modules/exclude-tests: New file.
8173         * tests/test-exclude.c: New file.
8174         * tests/test-exclude1.sh: New file.
8175         * tests/test-exclude2.sh: New file.
8176         * tests/test-exclude3.sh: New file.
8177         * tests/test-exclude4.sh: New file.
8178         * tests/test-exclude5.sh: New file.
8179         * tests/test-exclude6.sh: New file.
8180         * tests/test-exclude7.sh: New file.
8181
8182 2009-08-12  Bruno Haible  <bruno@clisp.org>
8183
8184         Ensure that getopt() gets declared by <unistd.h>.
8185         * lib/unistd.in.h: Conditionally include getopt.h.
8186         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
8187         Set GNULIB_UNISTD_H_GETOPT.
8188         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8189         GNULIB_UNISTD_H_GETOPT.
8190         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
8191
8192 2009-08-12  Bruno Haible  <bruno@clisp.org>
8193
8194         Clarify logic.
8195         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
8196         gl_replace_getopt instead of GETOPT_H.
8197
8198 2009-08-12  Bruno Haible  <bruno@clisp.org>
8199
8200         * m4/getopt.m4: Add comments.
8201
8202 2009-08-12  Bruno Haible  <bruno@clisp.org>
8203
8204         Disable multithread support by default on Cygwin 1.5.x.
8205         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
8206         set gl_use_threads=no if not specified otherwise.
8207
8208 2009-08-11  Bruno Haible  <bruno@clisp.org>
8209
8210         Avoid compilation error on NetBSD 5.0.
8211         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
8212         * tests/test-stdio.c: Likewise.
8213         * tests/test-stdlib.c: Likewise.
8214         * tests/test-string.c: Likewise.
8215         * tests/test-unistd.c: Likewise.
8216         Reported by Greg Troxel <gdt@ir.bbn.com>
8217         at <https://savannah.gnu.org/support/?106973>.
8218
8219 2009-08-11  Bruno Haible  <bruno@clisp.org>
8220
8221         * modules/dup2-tests (Depends-on): Remove close.
8222
8223         Undo 2009-07-19 commit.
8224         * modules/acl-tests (Depends-on): Remove close.
8225         * modules/binary-io-tests (Depends-on): Likewise.
8226         * modules/closein-tests (Depends-on): Likewise.
8227         * modules/flock-tests (Depends-on): Likewise.
8228         * modules/fsync-tests (Depends-on): Likewise.
8229         * modules/lseek-tests (Depends-on): Likewise.
8230         * modules/pipe-tests (Depends-on): Likewise.
8231         * modules/posix_spawn-tests (Depends-on): Likewise.
8232         * modules/posix_spawnp-tests (Depends-on): Likewise.
8233         * modules/stat-time-tests (Depends-on): Likewise.
8234         * modules/yesno-tests (Depends-on): Likewise.
8235
8236 2009-08-10  Bruno Haible  <bruno@clisp.org>
8237
8238         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
8239
8240 2009-08-10  Bruno Haible  <bruno@clisp.org>
8241
8242         Fix a gcc warning.
8243         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
8244
8245 2009-08-10  Bruno Haible  <bruno@clisp.org>
8246
8247         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
8248         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
8249         not only the first time.
8250         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
8251         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
8252         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
8253         is 1, not only the the first time.
8254
8255 2009-08-10  Bruno Haible  <bruno@clisp.org>
8256
8257         Make it possible to use module 'gethostname' without module 'close'.
8258         * lib/unistd.in.h (close): Evoke a link error only if
8259         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
8260         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8261         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
8262         * modules/unistd (Makefile.am): Substitute
8263         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
8264         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
8265         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
8266         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
8267         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
8268         * modules/sys_ioctl (Makefile.am): Substitute
8269         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
8270         * modules/socket (configure.ac): On native Windows, set
8271         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
8272         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
8273         Reported by Sam Steingold <sds@gnu.org>.
8274
8275 2009-08-10  Bruno Haible  <bruno@clisp.org>
8276
8277         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
8278         * modules/ioctl (configure.ac): Likewise.
8279
8280 2009-08-10  Bruno Haible  <bruno@clisp.org>
8281
8282         Avoid collision between gnulib wrapper and libintl wrapper.
8283         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
8284         already defined in intl/printf.c.
8285         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
8286         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
8287
8288 2009-08-09  Bruno Haible  <bruno@clisp.org>
8289
8290         Make <sys/select.h> really self-contained, also on Solaris 10.
8291         * lib/sys_select.in.h: Include <string.h>.
8292         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
8293         Solaris 10 problem.
8294         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
8295         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
8296         Reported by Jim Meyering.
8297
8298 2009-08-09  Bruno Haible  <bruno@clisp.org>
8299
8300         Avoid warnings from 'aclocal' that are due to a use of macro name
8301         AM_XGETTEXT_OPTION that is not defined in automake.
8302         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
8303         automake.
8304         * modules/error (configure.ac): Likewise.
8305         * modules/propername (configure.ac): Likewise.
8306         * modules/vasprintf (configure.ac): Likewise.
8307         * modules/verror (configure.ac): Likewise.
8308         * modules/xprintf (configure.ac): Likewise.
8309         * modules/xvasprintf (configure.ac): Likewise.
8310
8311 2009-08-08  Bruno Haible  <bruno@clisp.org>
8312
8313         Avoid compilation error in C++ mode.
8314         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
8315         Reported by Sam Steingold <sds@gnu.org>.
8316
8317 2009-08-08  Bruno Haible  <bruno@clisp.org>
8318
8319         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
8320         for the various Unix platforms.
8321         * doc/posix-headers/limits.texi: Update platforms list regarding
8322         HOST_NAME_MAX.
8323         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8324
8325 2009-08-07  Jim Meyering  <meyering@redhat.com>
8326
8327         selinux-at: fix typo in a comment
8328         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
8329         Spotted by Paolo Bonzini.
8330
8331         selinux-at: remove redundant m4 code, add documentation
8332         * modules/selinux-at (configure.ac): Remove redundant code.
8333         LIB_SELINUX is already set via the dependent module, selinux-h.
8334         (Include): Add quotes around selinux-at.h.
8335         * lib/selinux-at.h: Add documentation.
8336         Reported by Bruno Haible in
8337         http://marc.info/?l=gnulib-bug&m=124958988300749
8338
8339 2009-08-07  Bruno Haible  <bruno@clisp.org>
8340
8341         Avoid link error on MacOS X 10.3 and 10.4.
8342         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
8343         on non-ELF systems.
8344         * lib/argp-pv.c (argp_program_version): Likewise.
8345         Reported by Simon Josefsson.
8346
8347 2009-08-07  Simon Josefsson  <simon@josefsson.org>
8348
8349         * tests/test-version-etc.sh: Use $EXEEXT.
8350
8351 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
8352
8353         update-copyright: update documentation to point to maint.mk
8354         * build-aux/update-copyright: Here.
8355
8356 2009-08-06  Jim Meyering  <meyering@redhat.com>
8357
8358         maint.mk: support update-copyright-local
8359         * top/maint.mk (update-copyright-local): Define place-holder.
8360         (update-copyright): Depend on $(update-copyright-local).
8361
8362 2009-08-06  Jim Meyering  <meyering@redhat.com>
8363
8364         selinux-at: new module
8365         Initially written for coreutils, this module will soon be
8366         used by findutils, too.
8367         * MODULES.html.sh [Misc]: Add selinux-at.
8368         * lib/selinux-at.h: New file, from coreutils.
8369         * lib/selinux-at.c: Likewise.
8370         * modules/selinux-at: Likewise.
8371         (License): Change from LGPL to GPL, since it depends
8372         on the GPL'd openat module.
8373
8374         doc: update README
8375         * README: Remove references to cogito.
8376         Remove cvs-repo-updating instructions from 2007.
8377         Don't imply that CVS is better if you have limited disk space.
8378
8379 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
8380
8381         update-copyright: support C-style comments
8382         * build-aux/update-copyright: Implement and document.
8383         * tests/test-update-copyright.sh: Test.
8384
8385 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
8386
8387         update-copyright: support omitted "(C)"
8388         * build-aux/update-copyright: Implement and document.  Also,
8389         allow variable whitespace before "(C)".
8390         * tests/test-update-copyright.sh: Test.
8391
8392 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
8393
8394         update-copyright: don't trip on non-FSF copyright statements
8395         * build-aux/update-copyright: Fix so that the first correctly
8396         formatted FSF copyright statement is recognized no matter what
8397         appears before it.  Update documentation.
8398         * tests/test-update-copyright.sh: Test that.
8399
8400 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
8401
8402         update-copyright: clean up code a little
8403         * build-aux/update-copyright: Append "_re" to the name of any
8404         variable holding a regular expression.
8405         Replace "old" and "new" with "stmt" in variable names.
8406         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
8407         handled correctly.
8408         Format code more consistently.
8409
8410 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
8411
8412         update-copyright-tests: improve portability
8413         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
8414         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
8415
8416 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
8417
8418         update-copyright: support @copyright{} and &copy;
8419         * build-aux/update-copyright: Implement and document.
8420         * tests/test-update-copyright.sh: Test.
8421
8422 2009-08-04  Jim Meyering  <meyering@redhat.com>
8423
8424         update-copyright-tests: correctly test EOL=\r\n handling
8425         * tests/test-update-copyright.sh: Put \r at the end of some lines
8426         for the dos-eol tests.  Based on a patch by Joel E. Denny.
8427
8428         maint.mk: make update-copyright exclusion list more configurable
8429         * top/maint.mk (update-copyright): Default to excluding COPYING,
8430         but allow an override, in case someone does want to update that file.
8431
8432         maint.mk: don't update copyright date in COPYING
8433         * top/maint.mk (update-copyright): Exclude COPYING.
8434
8435         maint.mk: add a copyright-updating rule
8436         * top/maint.mk (update-copyright): New rule.
8437         Derived from coreutils/Makefile.am.
8438
8439         update-copyright: rename some variables
8440         * build-aux/update-copyright: Rename a few variables for clarity.
8441         Tweak syntax.  List Joel E. Denny as coauthor.
8442
8443 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
8444
8445         update-copyright: fix bug for 2-digit last year and add tests
8446         * build-aux/update-copyright: Fix bug.
8447         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
8448         specified.
8449         * modules/update-copyright-tests: New
8450         * tests/test-update-copyright.sh: New.
8451
8452 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
8453
8454         update-copyright: handle leading tabs in line prefix
8455         * build-aux/update-copyright: Count leading tabs as 8 spaces
8456         when computing margin.  This helps with the formatting of
8457         ChangeLogs, for example.
8458         Fix documentation a little.
8459
8460 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
8461
8462         update-copyright: support EOL=\r\n
8463         * build-aux/update-copyright: Implement that.
8464
8465 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
8466
8467         update-copyright: automatically format copyright statements
8468         * build-aux/update-copyright: Implement that.
8469         Also, be a little more predictable and safer by always failing
8470         when the full copyright format is not perfectly recognized as an
8471         unbroken whole.  Discussed at
8472         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
8473         Rewrite documentation.
8474
8475 2009-08-03  Bruno Haible  <bruno@clisp.org>
8476
8477         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
8478
8479 2009-08-02  Bruno Haible  <bruno@clisp.org>
8480
8481         Tests for module 'uname'.
8482         * modules/uname-tests: New file.
8483         * tests/test-uname.c: New file.
8484
8485         New module 'uname'.
8486         * lib/uname.c: New file.
8487         * m4/uname.m4: New file.
8488         * modules/uname: New file.
8489         * doc/posix-functions/uname.texi: Mention the new module.
8490
8491 2009-08-02  Bruno Haible  <bruno@clisp.org>
8492
8493         Tests for module 'sys_utsname'.
8494         * modules/sys_utsname-tests: New file.
8495         * tests/test-sys_utsname.c: New file.
8496
8497         New module 'sys_utsname'.
8498         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
8499         * m4/sys_utsname_h.m4: New file.
8500         * modules/sys_utsname: New file.
8501         * doc/posix-headers/sys_utsname.texi: Mention the new module.
8502
8503 2009-08-02  Bruno Haible  <bruno@clisp.org>
8504
8505         Implicitly initialize the sockets library.
8506         * lib/gethostname.c: Include sockets.h.
8507         (rpl_gethostname): Invoke gl_sockets_startup.
8508         * lib/socket.c: Include sockets.h.
8509         (rpl_socket): Invoke gl_sockets_startup.
8510         * modules/gethostname (Depends-on): Add sockets.
8511         * modules/socket (Depends-on): Likewise.
8512         * tests/test-poll.c: Don't include sockets.h.
8513         (main): Don't invoke gl_sockets_startup.
8514         * tests/test-select.c: Don't include sockets.h.
8515         (main): Don't invoke gl_sockets_startup.
8516
8517 2009-08-02  Bruno Haible  <bruno@clisp.org>
8518
8519         Allow multiple calls to gl_sockets_startup.
8520         * lib/sockets.c (initialized_sockets_version): New variable.
8521         (gl_sockets_startup): Do nothing if already called for this or a higher
8522         version.
8523         (gl_sockets_cleanup): Reset initialized_sockets_version.
8524
8525 2009-08-03  Simon Josefsson  <simon@josefsson.org>
8526
8527         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
8528         different project/version.
8529
8530 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
8531             Bruno Haible  <bruno@clisp.org>
8532
8533         Tests for module 'pipe-filter-gi'.
8534         * modules/pipe-filter-gi-tests: New file.
8535         * tests/test-pipe-filter-gi1.sh: New file.
8536         * tests/test-pipe-filter-gi1.c: New file.
8537         * tests/test-pipe-filter-gi2.sh: New file.
8538         * tests/test-pipe-filter-gi2-main.c: New file.
8539         * tests/test-pipe-filter-gi2-child.c: New file.
8540
8541         New module 'pipe-filter-gi'.
8542         * lib/pipe-filter-gi.c: New file.
8543         * modules/pipe-filter-gi: New file.
8544
8545 2009-08-02  Bruno Haible  <bruno@clisp.org>
8546             Paolo Bonzini  <bonzini@gnu.org>
8547
8548         Tests for module 'pipe-filter-ii'.
8549         * modules/pipe-filter-ii-tests: New file.
8550         * tests/test-pipe-filter-ii1.sh: New file.
8551         * tests/test-pipe-filter-ii1.c: New file.
8552         * tests/test-pipe-filter-ii2.sh: New file.
8553         * tests/test-pipe-filter-ii2-main.c: New file.
8554         * tests/test-pipe-filter-ii2-child.c: New file.
8555
8556         New module 'pipe-filter-ii'.
8557         * lib/pipe-filter.h: New file.
8558         * lib/pipe-filter-ii.c: New file.
8559         * lib/pipe-filter-aux.h: New file.
8560         * modules/pipe-filter-ii: New file.
8561
8562 2009-08-02  Simon Josefsson  <simon@josefsson.org>
8563
8564         * lib/gc-libgcrypt.c: Change copyright to FSF.
8565         * lib/gc-gnulib.c: Likewise.
8566
8567 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
8568
8569         * lib/gethostname.c: Include limits.h.
8570
8571 2009-08-02  Simon Josefsson  <simon@josefsson.org>
8572             Bruno Haible  <bruno@clisp.org>
8573
8574         Ensure HOST_NAME_MAX as part of the gethostname module.
8575         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
8576         define also HOST_NAME_MAX.
8577         * tests/test-gethostname.c: Include <limits.h>.
8578         (main): Check also HOST_NAME_MAX.
8579         * doc/posix-headers/limits.texi: Document the mingw problem.
8580
8581 2009-08-02  Bruno Haible  <bruno@clisp.org>
8582
8583         * lib/gethostname.c (gethostname): Fix handling of large len argument.
8584         Add comments.
8585
8586 2009-03-31  Simon Josefsson  <simon@josefsson.org>
8587
8588         * lib/gethostname.c: Add Windows wrapper.
8589         * m4/gethostname.m4: Look for gethostname in -lws2_32.
8590         * modules/gethostname: Depend on sys_socket & errno, for also
8591         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
8592         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
8593
8594 2009-07-31  Jim Meyering  <meyering@redhat.com>
8595
8596         getloadavg: fix symbol name in comment
8597         * lib/getloadavg.c: Correct a typo I introduced when adding
8598         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
8599         Matt Kraai spotted the problem.
8600
8601 2009-07-29  Matt Kraai  <mkraai@beckman.com>
8602
8603         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
8604         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
8605         code also if ! defined N_NAME_POINTER.
8606         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
8607         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
8608         but the n_name member is a 12-byte array.
8609
8610 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
8611
8612         update-copyright: generalize comment handling
8613         * build-aux/update-copyright: Handle copyright statements
8614         within more comment styles.
8615         Document usage.
8616         Report any file with an external copyright holder or parse failure.
8617
8618 2009-07-29  Jim Meyering  <meyering@redhat.com>
8619
8620         mktime: correct setting of REPLACE_MKTIME
8621         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
8622
8623         update-copyright: new module
8624         * modules/update-copyright: New file.
8625         * build-aux/update-copyright: New file.
8626         * MODULES.html.sh (maint+release support): Add update-copyright.
8627
8628 2009-07-27  Bruno Haible  <bruno@clisp.org>
8629
8630         Fix compilation error when <ctime> is used and mktime is replaced.
8631         * lib/time.in.h (mktime): New declaration.
8632         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
8633         REPLACE_MKTIME instead of defining mktime in config.h.
8634         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
8635         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
8636         Reported by Ross McFarland <rwmcfa1@neces.com>.
8637
8638 2009-07-27  Bruno Haible  <bruno@clisp.org>
8639
8640         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
8641         Reported by Matt Kraai <mkraai@beckman.com>.
8642
8643 2009-07-25  Jim Meyering  <meyering@redhat.com>
8644
8645         maint.mk: avoid warnings about missing files
8646         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
8647         diagnostic when .prev-version does not exist.
8648         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
8649         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
8650         nonexistent cfg.mk.
8651         Suggestions from Simon Josefsson.
8652
8653 2009-07-25  Bruno Haible  <bruno@clisp.org>
8654
8655         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
8656         defined as macros. Needed on QNX 6.4.1.
8657         Reported by Matt Kraai <mkraai@beckman.com>.
8658
8659 2009-07-23  Jim Meyering  <meyering@redhat.com>
8660
8661         maint.mk: invoke "make dist" with a working value of XZ_OPT
8662         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
8663
8664 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
8665
8666         Make fseeko.c compile on QNX.
8667         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
8668
8669 2009-07-22  Peter Simons  <simons@cryp.to>
8670
8671         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
8672         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
8673         * lib/md4.h: Likewise.
8674         * lib/md5.h: Likewise.
8675         * lib/sha1.h: Likewise.
8676         * lib/sha256.h: Likewise.
8677         * lib/sha512.h: Likewise.
8678
8679         tests-sha1: don't assign literal string to 'char *' variable
8680         * tests/test-sha1.c (main): Declare locals with "const" to match
8681         attributes of the right hand side.
8682
8683 2009-07-21  Eric Blake  <ebb9@byu.net>
8684
8685         dup2: fix more mingw problems
8686         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
8687         fd to itself.
8688         * doc/posix-functions/dup2.texi (dup2): Document the bug.
8689         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
8690         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
8691         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
8692         care of mingw bugs.
8693
8694 2009-07-21  Jim Meyering  <meyering@redhat.com>
8695
8696         vc-list-files: avoid failure when /bin/sh is dash
8697         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
8698         On some Debian based systems, /bin/sh is a symlink to dash, and running
8699         this command would omit the "/" following each 'tests' prefix:
8700           dash -x build-aux/vc-list-files -C . tests
8701         That is because bash and dash work differently:
8702           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
8703           bash ok
8704           dash odd
8705
8706 2009-07-21  Eric Blake  <ebb9@byu.net>
8707
8708         dup2-tests: test previous patch
8709         * modules/dup2-tests: New file.
8710         * tests/test-dup2.c: Likewise.
8711         * tests/test-open.c (main): Avoid unspecified behavior.
8712         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
8713         test.
8714
8715         dup2: work around mingw and cygwin 1.5 bug
8716         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
8717         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
8718         * modules/unistd (Makefile.am): Substitute it.
8719         * lib/unistd.in.h (dup2): Declare the replacement.
8720         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
8721         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
8722         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
8723         * modules/execute (Depends-on): Add dup2.
8724         * modules/fseterr (Depends-on): Likewise.
8725         * modules/pipe (Depends-on): Likewise.
8726         * modules/posix_spawn-internal (Depends-on): Likewise.
8727
8728 2009-07-21  Bruno Haible  <bruno@clisp.org>
8729
8730         * modules/.gitattributes: New file.
8731
8732 2009-07-20  Bruno Haible  <bruno@clisp.org>
8733
8734         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
8735         (main): Use it.
8736
8737 2009-07-20  Eric Blake  <ebb9@byu.net>
8738
8739         test-pipe: make a bit more robust.
8740         * tests/test-pipe.c (myerr): Allow error messages regardless of
8741         what we do to stderr.
8742         (test_pipe): Rearrange to avoid deadlock.
8743         (child_main): Try a larger read, to ensure we avoided deadlock.
8744         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
8745         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
8746         if misused.
8747
8748 2009-07-19  Jim Meyering  <meyering@redhat.com>
8749
8750         fts: avoid false-positive cycle-detection
8751         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
8752         for each new command line argument.
8753
8754 2009-07-19  Bruno Haible  <bruno@clisp.org>
8755
8756         Fix build error on mingw with the modules sys_select and unistd.
8757         * modules/acl-tests (Depends-on): Add close.
8758         * modules/binary-io-tests (Depends-on): Likewise.
8759         * modules/closein-tests (Depends-on): Likewise.
8760         * modules/flock-tests (Depends-on): Likewise.
8761         * modules/fsync-tests (Depends-on): Likewise.
8762         * modules/lseek-tests (Depends-on): Likewise.
8763         * modules/pipe-tests (Depends-on): Likewise.
8764         * modules/posix_spawn-tests (Depends-on): Likewise.
8765         * modules/posix_spawnp-tests (Depends-on): Likewise.
8766         * modules/stat-time-tests (Depends-on): Likewise.
8767         * modules/yesno-tests (Depends-on): Likewise.
8768
8769 2009-07-19  Bruno Haible  <bruno@clisp.org>
8770
8771         Unify conditionals.
8772         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
8773         macros, not at the compiler macros.
8774         * lib/pipe.c: Likewise.
8775         * lib/execute.c: Likewise.
8776         * lib/spawni.c: Likewise.
8777
8778 2009-07-19  Bruno Haible  <bruno@clisp.org>
8779
8780         Fix handling of closed stdin/stdout/stderr on mingw.
8781         * lib/w32spawn.h: Include unistd.h.
8782         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
8783         file descriptor with O_NOINHERIT flag.
8784         (fd_safer_noinherit): New function, based on fd-safer.c.
8785         (dup_safer_noinherit): New function, based on dup-safer.c.
8786         (undup_safer_noinherit): New function.
8787         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
8788         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
8789         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
8790         instead of fd_safer.
8791         * tests/test-pipe.c: Include <windows.h>.
8792         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
8793
8794         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
8795         from main.
8796         (test_pipe): Pass an extra argument for disambiguation.
8797         (main): Invoke parent_main or child_main.
8798
8799         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
8800         consistently.
8801
8802 2009-07-18  Eric Blake  <ebb9@byu.net>
8803
8804         test-pipe: fix mingw build
8805         * tests/test-pipe.c (main): Avoid fcntl on mingw.
8806
8807 2009-07-18  Bruno Haible  <bruno@clisp.org>
8808
8809         * modules/pipe-tests (Makefile.am): Fix typo.
8810
8811 2009-07-18  Eric Blake  <ebb9@byu.net>
8812
8813         error: fix mingw build
8814         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
8815         Reported by Bruno Haible.
8816
8817         error: avoid undefined use of stdout
8818         * lib/error.c (error, error_at_line): Check that fd 1 is open
8819         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
8820         is handling faults and the close_stdout module wants to report the
8821         detection of closed stdout as an error.
8822
8823 2009-07-17  Eric Blake  <ebb9@byu.net>
8824
8825         pipe: be robust in face of closed fds
8826         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
8827         should cause child to misbehave.
8828         * modules/pipe-tests: New module.
8829         * tests/test-pipe.c: New file.
8830         * tests/test-pipe.sh: New file.
8831         Reported by Akim Demaille.
8832
8833 2009-07-14  Bruno Haible  <bruno@clisp.org>
8834
8835         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
8836         Reported by anonymous kc.
8837
8838 2009-07-07  Jim Meyering  <meyering@redhat.com>
8839
8840         maint.mk: don't look for translatable strings in *.m4 or *.mk
8841         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
8842         when searching for translatable strings.
8843
8844 2009-07-05  Jim Meyering  <meyering@redhat.com>
8845
8846         remove superfluous parentheses in STREQ definition
8847         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
8848         * lib/getugroups.c (STREQ): Likewise.
8849         * lib/fnmatch.c (STREQ): Likewise.
8850         Spotted by Bruno Haible.
8851
8852 2009-07-04  Jim Meyering  <meyering@redhat.com>
8853
8854         argv-iter: new module
8855         * MODULES.html.sh: Add argv-iter.
8856         * lib/argv-iter.c, lib/argv-iter.h: New files.
8857         * modules/argv-iter: New file.
8858         * modules/argv-iter-tests: New file.
8859         * tests/test-argv-iter.c: Test it.
8860
8861 2009-07-04  Bruno Haible  <bruno@clisp.org>
8862
8863         Fix assertion.
8864         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
8865         contains more exact copies of a given entry than file2, leave the extra
8866         copies unpaired rather than aborting.
8867         Reported by Eric Blake.
8868
8869 2009-07-02  Bruno Haible  <bruno@clisp.org>
8870
8871         Speedup git-merge-changelog for git cherry-pick.
8872         * lib/git-merge-changelog.c (struct entries_mapping): New type.
8873         (entries_mapping_get): New function, extracted from compute_mapping.
8874         (entries_mapping_reverse_get): New function.
8875         (compute_mapping): Add a 'full' argument. Return the result in a
8876         'struct entries_mapping'.
8877         (main): Update. Access the mappings through entries_mapping_get.
8878         Reported by Eric Blake.
8879
8880 2009-07-02  Bruno Haible  <bruno@clisp.org>
8881
8882         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
8883         best_i.
8884
8885 2009-07-02  Bruno Haible  <bruno@clisp.org>
8886
8887         Speed up approximate search for matching ChangeLog entries.
8888         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
8889         argument. Call fstrcmp_bounded instead of fstrcmp.
8890         (compute_mapping, try_split_merged_entry, main): Update callers.
8891
8892 2009-07-02  Bruno Haible  <bruno@clisp.org>
8893
8894         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
8895
8896 2009-06-30  Bruno Haible  <bruno@clisp.org>
8897
8898         Reduce the number of uc_is_cased calls.
8899         * lib/unicase.h (casing_suffix_context_t): Add
8900         'first_char_except_ignorable' field.
8901         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
8902         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
8903         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
8904         Update initializer.
8905         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
8906         case-ignorable characters.
8907         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
8908         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
8909         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
8910         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
8911         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
8912
8913 2009-06-30  Bruno Haible  <bruno@clisp.org>
8914
8915         Tests for module 'unicase/ignorable'.
8916         * modules/unicase/ignorable-tests: New file.
8917         * tests/unicase/test-ignorable.c: New file, generated by
8918         gen-uni-tables.
8919
8920         Tests for module 'unicase/cased'.
8921         * modules/unicase/cased-tests: New file.
8922         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
8923         * tests/unicase/test-predicate-part1.h: New file, derived from
8924         tests/unictype/test-predicate-part1.h.
8925         * tests/unicase/test-predicate-part2.h: New file, same as
8926         tests/unictype/test-predicate-part2.h.
8927
8928         Fix evaluation of "Before C" condition of FINAL_SIGMA.
8929         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
8930         (output_casing_properties): New function.
8931         (main): Call it.
8932         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
8933         * lib/unicase/cased.c: Include unictype/bitmap.h.
8934         (uc_is_cased): Define through a bitmap lookup.
8935         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
8936         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
8937         (uc_is_case_ignorable): Define through a bitmap lookup.
8938         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
8939         lib/unictype/bitmap.h.
8940         (Depends-on): Add inline. Clean up.
8941         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
8942         lib/unictype/bitmap.h.
8943         (Depends-on): Add inline. Clean up.
8944         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
8945         recognition.
8946         * tests/unicase/test-u16-tolower.c (main): Likewise.
8947         * tests/unicase/test-u32-tolower.c (main): Likewise.
8948
8949 2009-06-30  Bruno Haible  <bruno@clisp.org>
8950
8951         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
8952         * lib/unicase/u16-casemap.c: Likewise.
8953         * lib/unicase/u32-casemap.c: Likewise.
8954
8955 2009-06-29  Bruno Haible  <bruno@clisp.org>
8956
8957         Define u32_casefold as a wrapper around u32_ct_casefold.
8958         * lib/unicase/u32-casefold.c: Update.
8959         * modules/unicase/u32-casefold (Depends-on): Add
8960         unicase/u32-ct-casefold, unicase/empty-prefix-context,
8961         unicase/empty-suffix-context. Clean up.
8962
8963         Define u16_casefold as a wrapper around u16_ct_casefold.
8964         * lib/unicase/u16-casefold.c: Update.
8965         * modules/unicase/u16-casefold (Depends-on): Add
8966         unicase/u16-ct-casefold, unicase/empty-prefix-context,
8967         unicase/empty-suffix-context. Clean up.
8968
8969         Define u8_casefold as a wrapper around u8_ct_casefold.
8970         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
8971         * lib/unicase/u8-casefold.c: Update.
8972         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
8973         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
8974
8975         Define u32_totitle as a wrapper around u32_ct_totitle.
8976         * lib/unicase/u32-totitle.c: Update.
8977         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
8978         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
8979
8980         Define u16_totitle as a wrapper around u16_ct_totitle.
8981         * lib/unicase/u16-totitle.c: Update.
8982         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
8983         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
8984
8985         Define u8_totitle as a wrapper around u8_ct_totitle.
8986         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
8987         functions.
8988         (FUNC): Delegate to U_CT_TOTITLE.
8989         * lib/unicase/u8-totitle.c: Update.
8990         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
8991         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
8992
8993         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
8994         invocation.
8995         * modules/unicase/u32-tolower (Depends-on): Add
8996         unicase/empty-prefix-context, unicase/empty-suffix-context.
8997
8998         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
8999         invocation.
9000         * modules/unicase/u16-tolower (Depends-on): Add
9001         unicase/empty-prefix-context, unicase/empty-suffix-context.
9002
9003         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
9004         * modules/unicase/u8-tolower (Depends-on): Add
9005         unicase/empty-prefix-context, unicase/empty-suffix-context.
9006
9007         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
9008         invocation.
9009         * modules/unicase/u32-toupper (Depends-on): Add
9010         unicase/empty-prefix-context, unicase/empty-suffix-context.
9011
9012         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
9013         invocation.
9014         * modules/unicase/u16-toupper (Depends-on): Add
9015         unicase/empty-prefix-context, unicase/empty-suffix-context.
9016
9017         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
9018         * modules/unicase/u8-toupper (Depends-on): Add
9019         unicase/empty-prefix-context, unicase/empty-suffix-context.
9020
9021         New module 'unicase/u32-ct-casefold'.
9022         * lib/unicase/u32-ct-casefold.c: New file.
9023         * modules/unicase/u32-ct-casefold: New file.
9024
9025         New module 'unicase/u16-ct-casefold'.
9026         * lib/unicase/u16-ct-casefold.c: New file.
9027         * modules/unicase/u16-ct-casefold: New file.
9028
9029         New module 'unicase/u8-ct-casefold'.
9030         * lib/unicase/u8-ct-casefold.c: New file.
9031         * lib/unicase/u-ct-casefold.h: New file, derived from
9032         lib/unicase/u-casefold.h.
9033         * modules/unicase/u8-ct-casefold: New file.
9034
9035         New module 'unicase/u32-ct-totitle'.
9036         * lib/unicase/u32-ct-totitle.c: New file.
9037         * modules/unicase/u32-ct-totitle: New file.
9038
9039         New module 'unicase/u16-ct-totitle'.
9040         * lib/unicase/u16-ct-totitle.c: New file.
9041         * modules/unicase/u16-ct-totitle: New file.
9042
9043         New module 'unicase/u8-ct-totitle'.
9044         * lib/unicase/u8-ct-totitle.c: New file.
9045         * lib/unicase/u-ct-totitle.h: New file, derived from
9046         lib/unicase/u-totitle.h.
9047         * modules/unicase/u8-ct-totitle: New file.
9048
9049         New module 'unicase/u32-ct-tolower'.
9050         * lib/unicase/u32-ct-tolower.c: New file.
9051         * modules/unicase/u32-ct-tolower: New file.
9052
9053         New module 'unicase/u16-ct-tolower'.
9054         * lib/unicase/u16-ct-tolower.c: New file.
9055         * modules/unicase/u16-ct-tolower: New file.
9056
9057         New module 'unicase/u8-ct-tolower'.
9058         * lib/unicase/u8-ct-tolower.c: New file.
9059         * modules/unicase/u8-ct-tolower: New file.
9060
9061         New module 'unicase/u32-ct-toupper'.
9062         * lib/unicase/u32-ct-toupper.c: New file.
9063         * modules/unicase/u32-ct-toupper: New file.
9064
9065         New module 'unicase/u16-ct-toupper'.
9066         * lib/unicase/u16-ct-toupper.c: New file.
9067         * modules/unicase/u16-ct-toupper: New file.
9068
9069         New module 'unicase/u8-ct-toupper'.
9070         * lib/unicase/u8-ct-toupper.c: New file.
9071         * modules/unicase/u8-ct-toupper: New file.
9072
9073         Add context arguments to u*_casemap functions.
9074         * lib/unicase/unicasemap.h: Include unicase.h.
9075         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
9076         suffix_context arguments.
9077         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
9078         functions.
9079         (FUNC): Add prefix_context and suffix_context arguments. Use
9080         uc_is_cased and uc_is_case_ignorable.
9081         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
9082         * lib/unicase/u16-casemap.c: Likewise.
9083         * lib/unicase/u32-casemap.c: Likewise.
9084         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
9085         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
9086         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
9087         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
9088         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
9089         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
9090
9091         New module 'unicase/u32-suffix-context'.
9092         * lib/unicase/u32-suffix-context.c: New file.
9093         * modules/unicase/u32-suffix-context: New file.
9094
9095         New module 'unicase/u16-suffix-context'.
9096         * lib/unicase/u16-suffix-context.c: New file.
9097         * modules/unicase/u16-suffix-context: New file.
9098
9099         New module 'unicase/u8-suffix-context'.
9100         * lib/unicase/u8-suffix-context.c: New file.
9101         * lib/unicase/u-suffix-context.h: New file.
9102         * modules/unicase/u8-suffix-context: New file.
9103
9104         New module 'unicase/empty-suffix-context'.
9105         * lib/unicase/empty-suffix-context.c: New file.
9106         * modules/unicase/empty-suffix-context: New file.
9107
9108         New module 'unicase/u32-prefix-context'.
9109         * lib/unicase/u32-prefix-context.c: New file.
9110         * modules/unicase/u32-prefix-context: New file.
9111
9112         New module 'unicase/u16-prefix-context'.
9113         * lib/unicase/u16-prefix-context.c: New file.
9114         * modules/unicase/u16-prefix-context: New file.
9115
9116         New module 'unicase/u8-prefix-context'.
9117         * lib/unicase/u8-prefix-context.c: New file.
9118         * lib/unicase/u-prefix-context.h: New file.
9119         * lib/unicase/context.h: New file.
9120         * modules/unicase/u8-prefix-context: New file.
9121
9122         New module 'unicase/empty-prefix-context'.
9123         * lib/unicase/empty-prefix-context.c: New file.
9124         * modules/unicase/empty-prefix-context: New file.
9125
9126         New module 'unicase/ignorable'.
9127         * lib/unicase/ignorable.c: New file.
9128         * modules/unicase/ignorable: New file.
9129
9130         New module 'unicase/cased'.
9131         * lib/unicase/caseprop.h: New file.
9132         * lib/unicase/cased.c: New file.
9133         * modules/unicase/cased: New file.
9134
9135         New functions for case mapping of substrings.
9136         * lib/unicase.h (casing_prefix_context_t): New type.
9137         (unicase_empty_prefix_context): New variable.
9138         (u8_casing_prefix_context, u16_casing_prefix_context,
9139         u32_casing_prefix_context, u8_casing_prefixes_context,
9140         u16_casing_prefixes_context, u32_casing_prefixes_context): New
9141         declarations.
9142         (casing_suffix_context_t): New type.
9143         (unicase_empty_suffix_context): New variable.
9144         (u8_casing_suffix_context, u16_casing_suffix_context,
9145         u32_casing_suffix_context, u8_casing_suffixes_context,
9146         u16_casing_suffixes_context, u32_casing_suffixes_context,
9147         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
9148         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
9149         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
9150         declarations.
9151
9152 2009-06-28  Jim Meyering  <meyering@redhat.com>
9153
9154         boostrap: indent only with spaces
9155         * build-aux/bootstrap: Indent only with spaces, never TABs.
9156
9157         bootstrap: split long lines
9158         * build-aux/bootstrap: Keep line length < 80.
9159
9160         bootstrap: sync from coreutils
9161         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
9162         just as autoreconf does.  Verify a list of prerequisite
9163         package-name,version-number pairs if defined in bootstrap.conf.
9164         Refer to README-prereq, if prerequisites are not satisfied.
9165
9166 2009-06-27  Eric Blake  <ebb9@byu.net>
9167
9168         tests: add test for bogus NULL definition
9169         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
9170         * tests/test-stdlib.c: Likewise.
9171         * tests/test-string.c: Likewise.
9172         * tests/test-locale.c: Likewise.
9173         * tests/test-unistd.c: Likewise.
9174         * modules/stdio-tests (Depends-on): Add verify.
9175         * modules/stdlib-tests (Depends-on): Likewise.
9176         * modules/string-tests (Depends-on): Likewise.
9177         * modules/locale-tests (Depends-on): Likewise.
9178         * modules/unistd-tests (Depends-on): Likewise.
9179
9180 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
9181
9182         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
9183         self-explaining comment.
9184         * m4/selinux-selinux-h: Update serial.
9185         (gl_LIBSELINUX): New macro, adding a warning for missing development
9186         packages to code extracted from...
9187         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
9188         Add warning for missing development packages here, too.
9189
9190 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
9191
9192         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
9193
9194 2009-06-25  Eric Blake  <ebb9@byu.net>
9195
9196         version-etc: fix regression
9197         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
9198         gcc.
9199         (version_etc): Use it, to catch bugs with trailing NULL.
9200         * lib/version-etc.c (version_etc_arn): Delete unused argument.
9201         (version_etc_va): Fix logic bug.
9202         * modules/version-etc-tests: Add test.
9203         * tests/test-version-etc.c: New file.
9204         * tests/test-version-etc.sh: Likewise.
9205
9206 2009-06-25  Sam Steingold  <sds@gnu.org>
9207
9208         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
9209         mbtowc declaration.
9210
9211 2009-06-25  Eric Blake  <ebb9@byu.net>
9212
9213         fpurge: migrate into <stdio.h>
9214         * lib/fpurge.h: Delete...
9215         * lib/stdio.in.h (fpurge): ...and declare here, instead.
9216         * lib/fpurge.c (fpurge): Change declaring header.
9217         * modules/fpurge (Files): Drop deleted file.
9218         (Depends-on): Add stdio.
9219         (configure.ac): Set witness.
9220         * modules/stdio (Makefile.am): Support fpurge macros.
9221         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
9222         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
9223         * lib/fflush.c: Update client.
9224         * tests/test-fpurge.c: Likewise.
9225         * NEWS: Mention the change.
9226
9227 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9228
9229         * lib/argp-version-etc.c (program_authors): Add const
9230         qualifier.
9231         * lib/version-etc.c: Fix typos in the comments.
9232         * modules/argp-version-etc: Depends on version-etc.
9233
9234 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9235
9236         argp-version-etc: new module.
9237
9238         * lib/argp-version-etc.c: New file.
9239         * lib/argp-version-etc.h: New file.
9240         * modules/argp-version-etc: New file.
9241         * modules/argp-version-etc-tests: New file.
9242         * tests/test-argp-version-etc.c: New test.
9243         * tests/test-argp-version-etc-1.sh: New test.
9244
9245 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9246
9247         Provide additional interfaces and documentation for version-etc
9248         module.
9249
9250         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
9251         interfaces.
9252         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
9253         prototypes.
9254
9255 2009-06-24  Bruno Haible  <bruno@clisp.org>
9256
9257         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
9258         HAVE_LIB${NAME} macro.
9259         Reported by Sam Steingold <sds@gnu.org>.
9260
9261 2009-06-23  Simon Josefsson  <simon@josefsson.org>
9262
9263         * modules/hash-tests (test_hash_LDADD): Link to libintl when
9264         needed.
9265
9266 2009-06-21  Bruno Haible  <bruno@clisp.org>
9267
9268         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
9269         work.
9270         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
9271         together with LIB${NAME}, LTLIB${NAME}.
9272         Reported by Sam Steingold <sds@gnu.org>.
9273
9274 2009-06-20  Jim Meyering  <meyering@redhat.com>
9275
9276         tests: make sc_require_test_exit_idiom more generic
9277         * top/maint.mk (Exit_witness_file): New overridable variable.
9278         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
9279         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
9280
9281 2009-06-19  Jim Meyering  <meyering@redhat.com>
9282
9283         hash: reverse order of src/dst parameters in an internal interface
9284         * lib/hash.c (transfer_entries): Reverse order of parameters to
9285         put DST before SRC.  Adjust callers.
9286
9287         tests: test-hash: avoid wholesale duplication
9288         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
9289         Instead, use a loop and add a single conditional.
9290
9291         tests: test-hash: allow seed selection via a command line argument
9292         * tests/test-hash.c (get_seed): New function.
9293         (main): Use it.
9294
9295 2009-06-19  Eric Blake  <ebb9@byu.net>
9296
9297         hash: avoid memory leak on allocation failure
9298         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
9299         failure.  Factor repeated algorithm...
9300         (transfer_entries): ...into new helper routine.
9301         (hash_delete): React to hash_rehash return value.
9302
9303         hash: reduce memory pressure in hash_rehash no-op case
9304         * lib/hash.c (next_prime): Avoid overflow.
9305         (hash_initialize): Factor bucket size computation...
9306         (compute_bucket_size): ...into new helper function.
9307         (hash_rehash): Use new function and open coding to reduce memory
9308         pressure, and avoid a memory leak in USE_OBSTACK code.
9309         Reported by Jim Meyering.
9310
9311 2009-06-18  Eric Blake  <ebb9@byu.net>
9312
9313         hash: make rotation more obvious
9314         * modules/hash (Depends-on): Add bitrotate and stdint.
9315         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
9316         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
9317         (SIZE_MAX): Rely on headers for definition.
9318         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
9319         (raw_hasher): Use rotr_sz.
9320         Suggested by Jim Meyering.
9321
9322         hash: fix memory leak in last patch
9323         * lib/hash.c (hash_rehash): Avoid memory leak.
9324
9325         hash: avoid no-op rehashing
9326         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
9327
9328         hash: provide default callback functions
9329         * lib/hash.c (raw_hasher, raw_comparator): New functions.
9330         (hash_initialize): Use them as defaults.
9331         * tests/test-hash.c (main): Test this.
9332
9333         hash: minor optimization
9334         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
9335         when possible.
9336         (hash_initialize): Document this promise.
9337         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
9338         * tests/test-hash.c (hash_compare_strings): Test this.
9339
9340 2009-06-18  Bruno Haible  <bruno@clisp.org>
9341
9342         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
9343         going to be replaced anyway.
9344
9345 2009-06-18  Bruno Haible  <bruno@clisp.org>
9346
9347         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
9348         in one place.
9349         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
9350         be replaced anyway.
9351
9352 2009-06-18  Eric Blake  <ebb9@byu.net>
9353
9354         hash: check for resize before insertion
9355         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
9356         threshold before insertion, so that a pathological hash_rehash
9357         that fills every bucket can still trigger another rehash.
9358
9359 2009-06-18  Jim Meyering  <meyering@redhat.com>
9360
9361         hash-tests: add a loop around the small tests
9362         * tests/test-hash.c (main): Repeat small tests with selected
9363         small initial table sizes.
9364
9365 2009-06-17  Eric Blake  <ebb9@byu.net>
9366
9367         hash: minor cleanups
9368         * lib/hash.h (hash_entry): Make opaque, by moving...
9369         * lib/hash.c (hash_entry): ...here.
9370         (hash_insert): Clarify restrictions on what can be inserted.
9371         (hash_get_next): Clarify when it is safe to remove an element
9372         during traversal.
9373         (check_tuning): Skip verification when tuning is known safe.
9374         (hash_initialize): Clarify restrictions on tuning.
9375
9376 2009-06-17  Jim Meyering  <jim@meyering.net>
9377         and Eric Blake  <ebb9@byu.net>
9378
9379         hash-tests: new module
9380         * modules/hash-tests: New file.
9381         * tests/test-hash.c: New file.
9382
9383 2009-06-17  Eric Blake  <ebb9@byu.net>
9384
9385         strstr-simple: document new module
9386         * MODULES.html.sh: Document new module.
9387
9388         strstr, strcasestr: replace on platforms with broken memchr
9389         * modules/strstr: Split into...
9390         * modules/strstr-simple: ...new module that does not care about
9391         performance, but does care about glibc bug.
9392         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
9393         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
9394         if platform memchr is broken, per Debian bug 521737.
9395         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
9396         memchr.
9397         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
9398         * doc/posix-functions/strstr.texi (strstr): Document the fix.
9399         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
9400         * modules/mountlist (Depends-on): Add strstr-simple.
9401         * modules/gen-uni-tables (Depends-on): Likewise.
9402         * modules/argz (Depends-on): Add strstr.
9403
9404 2009-06-17  Bruno Haible  <bruno@clisp.org>
9405
9406         * modules/posix_spawn-internal (Depends-on): Add errno.
9407
9408 2009-06-17  Bruno Haible  <bruno@clisp.org>
9409
9410         Define missing ESTALE on Interix 3.5.
9411         * lib/errno.in.h (ESTALE): Assign a value if missing.
9412         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
9413         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
9414         missing.
9415         * doc/posix-headers/errno.texi: Mention the Interix bug.
9416         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
9417
9418 2009-06-15  Eric Blake  <ebb9@byu.net>
9419
9420         memchr, memchr2: add valgrind exception
9421         * lib/memchr.valgrind: New file.
9422         * lib/memchr2.valgrind: New file.
9423         * modules/memchr (Files): Distribute valgrind file.
9424         * modules/memchr2 (Files): Likewise.
9425
9426         docs: memchr is no longer obsolete
9427         * MODULES.html.sh: Move memchr from obsolete to string.h section.
9428         * lib/string.in.h (memchr): Simplify logic.
9429
9430 2009-06-14  Jim Meyering  <meyering@redhat.com>
9431
9432         link-follow: fix the "checking..." message to not mention trailing slash
9433         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
9434         never considered trailing slashes.
9435
9436 2009-06-14  Bruno Haible  <bruno@clisp.org>
9437
9438         * m4/memchr.m4: Mention also the bug on IA-64.
9439         * doc/posix-functions/memchr.texi: Likewise.
9440
9441 2009-06-12  Eric Blake  <ebb9@byu.net>
9442
9443         memchr: detect broken x86_64 and alpha implementations
9444         * modules/memchr-tests (Depends-on): Move mmap detection...
9445         * modules/memchr (Depends-on): ...here.
9446         (configure.ac): Set indicator.
9447         * lib/string.in.h (memchr): Declare replacement.
9448         * modules/string (Makefile.am): Trigger replacement.
9449         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
9450         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
9451         bugs.
9452         * doc/posix-functions/memchr.texi (memchr): Document the bug.
9453         * modules/getpagesize (License): Relax license.
9454
9455 2009-06-11  Bruno Haible  <bruno@clisp.org>
9456
9457         * lib/idpriv.h: Add more references.
9458
9459 2009-06-08  Bruno Haible  <bruno@clisp.org>
9460
9461         Tests for module 'idpriv-droptemp'.
9462         * modules/idpriv-droptemp-tests: New file.
9463         * tests/test-idpriv-droptemp.sh: New file.
9464         * tests/test-idpriv-droptemp.su.sh: New file.
9465         * tests/test-idpriv-droptemp.c: New file.
9466
9467         New module 'idpriv-droptemp'.
9468         * lib/idpriv-droptemp.c: New file.
9469         * modules/idpriv-droptemp: New file.
9470
9471 2009-06-08  Bruno Haible  <bruno@clisp.org>
9472
9473         Tests for module 'idpriv-drop'.
9474         * modules/idpriv-drop-tests: New file.
9475         * tests/test-idpriv-drop.sh: New file.
9476         * tests/test-idpriv-drop.su.sh: New file.
9477         * tests/test-idpriv-drop.c: New file.
9478
9479         New module 'idpriv-drop'.
9480         * lib/idpriv.h: New file.
9481         * lib-idpriv-drop.c: New file.
9482         * m4/idpriv.m4: New file.
9483         * modules/idpriv-drop: New file.
9484
9485 2009-06-08  Bruno Haible  <bruno@clisp.org>
9486
9487         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
9488         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
9489         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
9490         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
9491         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
9492         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
9493         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
9494
9495 2009-06-08  Eric Blake  <ebb9@byu.net>
9496
9497         test-strstr: use memory fence, when possible
9498         * tests/test-strstr.c (main): Use memory fence, in order to be
9499         more likely to trigger Debian bug 521737.
9500         * modules/strstr-tests (Files): Pull in additional files.
9501
9502         memchr: no longer obsolete, for wider field testing
9503         * modules/memchr (Status, Notice): Delete, this module is no
9504         longer obsolete.
9505         * modules/vasnprintf (Depends-on): Add memchr.
9506
9507 2009-06-07  Jim Meyering  <meyering@redhat.com>
9508
9509         hash: declare some functions with the warn_unused_result attribute
9510         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
9511
9512 2009-06-07  Bruno Haible  <bruno@clisp.org>
9513
9514         * tests/test-alignof.c: Don't test int64_t if it does not exist.
9515         Reported by Eric Blake.
9516
9517 2009-06-06  Eric Blake  <ebb9@byu.net>
9518
9519         test-alignof: fix typo with long double
9520         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
9521         compiler error.
9522
9523 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
9524
9525         Escape non-texinfo { and }s.
9526         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
9527         markup error.
9528
9529 2009-06-04  Jim Meyering  <meyering@redhat.com>
9530
9531         gitlog-to-changelog: don't infloop on an empty commit log
9532         * build-aux/gitlog-to-changelog: Warn about an empty log message.
9533         Reported by Boris Petersen <transacid@centerim.org>.
9534
9535 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
9536
9537         version-etc: extend for packagers
9538         Add three new configure options, intended for packagers:
9539           --with-packager="packager name"
9540           --with-packager-version="packager-specific version"
9541           --with-packager-bug-reports="packager bug reporting"
9542         An example with coreutils:
9543           $ ./configure \
9544             --with-packager=Gentoo \
9545             --with-packager-bug-report=http://bugs.gentoo.org/ \
9546             --with-packager-version="patchset 1.6"
9547           $ ./src/ls --version | head -n2
9548           ls (GNU coreutils) 7.1-dirty
9549           Packaged by Gentoo (patchset 1.6)
9550         Note that the bug reporting info via --help doesn't show up because
9551         coreutils uses its own custom emit_bug_reporting_address() implementation
9552         in src/system.h.  If it didn't, it'd look like:
9553           $ ./src/ls --help | tail -n4
9554           Report bugs to <bug-coreutils@gnu.org>.
9555           Report Gentoo bugs to <http://bugs.gentoo.org/>.
9556           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
9557           General help using GNU software: <http://www.gnu.org/gethelp/>.
9558         * lib/version-etc.c: Print new information, if provided.
9559         * m4/version-etc.m4: New file.
9560         * modules/version-etc (Files): Add m4/version-etc.m4.
9561         (configure.ac): Add gl_VERSION_ETC.
9562
9563 2009-05-31  Bruno Haible  <bruno@clisp.org>
9564
9565         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
9566         and 'int64_t'.
9567         * modules/alignof-tests (Dependencies): Add stdint.
9568         Reported by Eric Blake.
9569
9570 2009-05-31  Bruno Haible  <bruno@clisp.org>
9571
9572         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
9573         restriction due to compiler bugs.
9574         Reported by Eric Blake.
9575
9576 2009-05-31  Simon Josefsson  <simon@josefsson.org>
9577             Bruno Haible  <bruno@clisp.org>
9578
9579         Fix test-alignof failure.
9580         * lib/alignof.h (alignof_slot): New macro.
9581         (alignof_type): New macro, with the same semantics as the previous
9582         'alignof'.
9583         (alignof): Alias to alignof_slot.
9584         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
9585         check that the results are usable as constant expressions.
9586
9587 2009-05-31  Bruno Haible  <bruno@clisp.org>
9588
9589         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
9590         * tests/test-memchr.c (main): Check that memchr does not read past the
9591         first occurrence of the byte.
9592         * tests/test-strstr.c (main): Update comment.
9593         Suggested by Eric Blake.
9594
9595 2009-05-30  Bruno Haible  <bruno@clisp.org>
9596
9597         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
9598         detail how to use dumpbin.
9599         Reported by David Byron <dbyron@dbyron.com>.
9600
9601 2009-06-02  Simon Josefsson  <simon@josefsson.org>
9602
9603         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
9604
9605 2009-06-02  Simon Josefsson  <simon@josefsson.org>
9606
9607         * m4/manywarnings.m4: Add GCC 4.4 warnings.
9608
9609 2009-05-28  Bruno Haible  <bruno@clisp.org>
9610
9611         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
9612         build-aux/ files.
9613
9614 2009-05-28  Simon Josefsson  <simon@josefsson.org>
9615
9616         * gnulib-tool (func_import): Transform license on build-aux/ files too.
9617
9618 2009-05-27  Simon Josefsson  <simon@josefsson.org>
9619
9620         * gnulib-tool (sed_transform_main_lib_file)
9621         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
9622         regexps.
9623
9624 2009-05-26  Simon Josefsson  <simon@josefsson.org>
9625
9626         * tests/test-strstr.c: Add another self-test.
9627         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
9628         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
9629
9630 2009-05-23  Bruno Haible  <bruno@clisp.org>
9631
9632         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
9633         change.
9634
9635 2009-05-21  Bruno Haible  <bruno@clisp.org>
9636
9637         Simplify use of mode_t varargs.
9638         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
9639         uses 'mode_t' or 'int'.
9640         * lib/openat.c (openat): Likewise.
9641         * lib/open-safer.c (open_safer): Likewise.
9642         * m4/mode_t.m4: New file.
9643         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
9644         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
9645         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
9646         * modules/open (Files): Add m4/mode_t.m4.
9647         * modules/openat (Files): Likewise.
9648         * modules/fcntl-safer (Files): Likewise.
9649         Suggested by Eric Blake.
9650
9651 2009-05-21  Pádraig Brady  <P@draigbrady.com>
9652
9653         * doc/glibc-functions/fallocate.texi: New file.
9654         * doc/gnulib.texi: Include it.
9655
9656 2009-05-21  Eric Blake  <ebb9@byu.net>
9657             Bruno Haible  <bruno@clisp.org>
9658
9659         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
9660         invocations.
9661         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
9662
9663 2009-05-21  Eric Blake  <ebb9@byu.net>
9664             Bruno Haible  <bruno@clisp.org>
9665
9666         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
9667         include_next. Fix of 2008-11-20 commit.
9668         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
9669         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
9670         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
9671         NEXT_MATH_H.
9672         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
9673         instead of NEXT_MATH_H.
9674
9675 2009-05-21  Bruno Haible  <bruno@clisp.org>
9676
9677         Avoid redefinition warnings for SIZE_MAX.
9678         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
9679         Reported by Simon Josefsson.
9680
9681 2009-05-21  Bruno Haible  <bruno@clisp.org>
9682
9683         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
9684         AC_CACHE_VAL.
9685
9686 2009-05-20  Bruno Haible  <bruno@clisp.org>
9687
9688         Make zeroptr.h work on mingw.
9689         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
9690         mprotect.
9691         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
9692         * modules/memchr2-tests (configure.ac): Likewise.
9693         * modules/memcmp-tests (configure.ac): Likewise.
9694         * modules/memmem-tests (configure.ac): Likewise.
9695         * modules/memrchr-tests (configure.ac): Likewise.
9696         Reported by Simon Josefsson.
9697
9698 2009-05-20  Simon Josefsson  <simon@josefsson.org>
9699
9700         * tests/test-glob.c: Include string.h for strcmp prototype.
9701
9702 2009-05-20  Simon Josefsson  <simon@josefsson.org>
9703
9704         * modules/getdelim (Depends-on): Add explicit stdint, although it
9705         was implicitly already pulled in via realloc-posix.
9706         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
9707
9708 2009-05-20  Simon Josefsson  <simon@josefsson.org>
9709
9710         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
9711         G. Christensen" <tgc@jupiterrise.com>.
9712         * m4/sys_socket_h.m4: Check for sa_family_t.
9713         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
9714         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
9715         * tests/test-sys_socket.c: Check that sa_family_t works.
9716
9717 2009-05-18  Eric Blake  <ebb9@byu.net>
9718
9719         maint.mk: allow gnulib_dir in VPATH build
9720         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
9721
9722 2009-05-15  Jim Meyering  <meyering@redhat.com>
9723
9724         maint.mk: Give gnulib_dir a default definition.
9725         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
9726         Thus, most packages no longer need to specify this variable in cfg.mk
9727
9728 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
9729
9730         rename.m4: fix typos that would make non-mingw cross-configure fail
9731         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
9732
9733 2009-05-13  Eric Blake  <ebb9@byu.net>
9734
9735         mmap-anon: avoid out-of-order autoconf expansion
9736         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
9737         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
9738         * modules/memchr-tests (Depends-on): Add extensions.
9739         * modules/memchr2-tests (Depends-on): Add extensions.
9740         * modules/memcmp-tests (Depends-on): Add extensions.
9741         * modules/memmem-tests (Depends-on): Add extensions.
9742         * modules/memrchr-tests (Depends-on): Add extensions.
9743
9744 2009-05-13  Bruno Haible  <bruno@clisp.org>
9745
9746         Make some tests ISO C 99 compliant.
9747         * tests/zerosize-ptr.h: New file.
9748         * tests/test-memchr.c: Include zerosize-ptr.h.
9749         (main): Use a zero-size object pointer instead of NULL.
9750         * tests/test-memchr2.c: Include zerosize-ptr.h.
9751         (main): Use a zero-size object pointer instead of NULL.
9752         * tests/test-memcmp.c: Include zerosize-ptr.h.
9753         (main): Use a zero-size object pointer instead of NULL.
9754         * tests/test-memmem.c: Include zerosize-ptr.h.
9755         (main): Use a zero-size object pointer instead of NULL.
9756         * tests/test-memrchr.c: Include zerosize-ptr.h.
9757         (main): Use a zero-size object pointer instead of NULL.
9758         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
9759         m4/mmap-anon.m4.
9760         (Depends-on): Add getpagesize.
9761         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
9762         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
9763         m4/mmap-anon.m4.
9764         (Depends-on): Add getpagesize.
9765         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
9766         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
9767         m4/mmap-anon.m4.
9768         (Depends-on): Add getpagesize.
9769         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
9770         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
9771         m4/mmap-anon.m4.
9772         (Depends-on): Add getpagesize.
9773         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
9774         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
9775         m4/mmap-anon.m4.
9776         (Depends-on): Add getpagesize.
9777         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
9778
9779 2009-05-12  Bruno Haible  <bruno@clisp.org>
9780
9781         Tests for module 'alignof'.
9782         * modules/alignof-tests: New file.
9783         * tests/test-alignof.c: New file.
9784
9785 2009-05-12  Bruno Haible  <bruno@clisp.org>
9786
9787         Fix alignof macro.
9788         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
9789         vendor compilers that are always correct.
9790
9791 2009-05-12  Bruno Haible  <bruno@clisp.org>
9792
9793         Make the MAP_ANONYMOUS detection work on HP-UX 11.
9794         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
9795         not whether its fully works.
9796
9797 2009-05-12  Bruno Haible  <bruno@clisp.org>
9798
9799         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
9800
9801 2009-05-12  Jim Meyering  <meyering@redhat.com>
9802
9803         * top/maint.mk: Adjust backslash alignment.
9804
9805 2009-05-11  Simon Josefsson  <simon@josefsson.org>
9806
9807         * top/maint.mk: Make $(srcdir)/build-aux configurable.
9808
9809 2009-05-11  Eric Blake  <ebb9@byu.net>
9810
9811         argp: avoid undefined behavior
9812         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
9813         macros.
9814
9815 2009-05-08  Simon Josefsson  <simon@josefsson.org>
9816
9817         * tests/test-vc-list-files-git.sh: Do git config of user.email and
9818         user.name to prevent git commit from complaining.
9819
9820 2009-05-10  Bruno Haible  <bruno@clisp.org>
9821
9822         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
9823         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
9824         it rewrites every file name only once.
9825         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
9826
9827 2009-05-08  Bruno Haible  <bruno@clisp.org>
9828
9829         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
9830         instead of 'max'.
9831
9832 2009-05-08  Simon Josefsson  <simon@josefsson.org>
9833
9834         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
9835         sockaddr_storage test.
9836
9837 2009-05-07  Simon Josefsson  <simon@josefsson.org>
9838
9839         * modules/sys_socket (Makefile.am): Substitute
9840         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
9841         * m4/sys_socket_h.m4: Check for sockaddr_storage.
9842         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
9843         * tests/test-sys_socket.c: Check sockaddr_storage.
9844
9845 2009-05-08  Bruno Haible  <bruno@clisp.org>
9846
9847         New module 'alignof'.
9848         * lib/alignof.h: New file.
9849         * modules/alignof: New file.
9850
9851 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
9852             Bruno Haible  <bruno@clisp.org>
9853
9854         Fix test-file-has-acl on FreeBSD.
9855         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
9856         mask is implicitly added.
9857         * tests/test-file-has-acl.c: Include <signal.h>.
9858         (main): Terminate the test after 5 seconds.
9859         * modules/acl-tests (configure.ac): Check for alarm function.
9860
9861 2009-05-04  Bruno Haible  <bruno@clisp.org>
9862
9863         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
9864         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
9865         * modules/errno (configure.ac): Drop AC_REQUIRE.
9866         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
9867         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
9868
9869 2009-05-04  Simon Josefsson  <simon@josefsson.org>
9870
9871         * modules/glob-tests: New module.
9872         * tests/test-glob.c: Add.
9873
9874 2009-05-04  Simon Josefsson  <simon@josefsson.org>
9875
9876         * modules/fnmatch-tests: New module.
9877         * tests/test-fnmatch.c: Add.
9878
9879 2009-05-04  Eric Blake  <ebb9@byu.net>
9880
9881         maint: make the new no-submodule-changes rule VPATH-safe
9882         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
9883
9884 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
9885             Bruno Haible  <bruno@clisp.org>
9886
9887         acl: Fix infinite loop on FreeBSD.
9888         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
9889         of return value from acl_get_entry.
9890         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
9891         Likewise.
9892
9893 2009-05-03  Bruno Haible  <bruno@clisp.org>
9894
9895         * lib/acl-internal.h (acl_entries): Clarify return value.
9896         * lib/acl_entries.c (acl_entries): Likewise.
9897
9898 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
9899
9900         Bug fix in acl module.
9901         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
9902
9903 2009-05-03  Bruno Haible  <bruno@clisp.org>
9904
9905         Create gperf-generated file in the source dir, not in the build dir.
9906         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
9907         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
9908         * modules/unicase/locale-language (unicase/locale-languages.h):
9909         Likewise.
9910         * modules/unicase/special-casing (unicase/special-casing-table.h):
9911         Likewise.
9912         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
9913         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
9914         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
9915         Reported by Ralf Wildenhues.
9916
9917 2009-05-03  Bruno Haible  <bruno@clisp.org>
9918
9919         * modules/fnmatch (Description, configure.ac): Taken from
9920         fnmatch-posix.
9921         * modules/fnmatch-posix: Turn into a symbolic reference to the
9922         'fnmatch' module, and deprecate.
9923         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
9924
9925 2009-05-03  Bruno Haible  <bruno@clisp.org>
9926
9927         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
9928         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
9929         Reported by Ralf Wildenhues.
9930
9931 2009-05-04  Simon Josefsson  <simon@josefsson.org>
9932
9933         * m4/fnmatch.m4: Fix fnmatch re-define.
9934
9935 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
9936
9937         priv-set: new module and tests; adapt write-any-file
9938         * lib/priv-set.c: New file.
9939         * lib/priv-set.h: New file.
9940         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
9941         * lib/write-any-file.c: Simplify by using priv-set module.
9942         * m4/priv-set.m4: New file.
9943         * modules/priv-set: New file.
9944         * modules/unlinkdir: Add dependency on priv-set module.
9945         * modules/write-any-file: Likewise.
9946
9947         Tests for module 'priv-set'.
9948         * modules/priv-set-tests: New file.
9949         * tests/test-priv-set.c: New file.
9950
9951 2009-05-03  Jim Meyering  <meyering@redhat.com>
9952             Bruno Haible  <bruno@clisp.org>
9953
9954         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
9955         use the converted UTF-8 variant of the name instead.
9956
9957 2009-05-03  Jim Meyering  <meyering@redhat.com>
9958
9959         tests: tighten some getdate tests
9960         * tests/test-getdate.c (main): Tighten tests: require equality,
9961         not just greater than.  Set TZ envvar to UTC0.
9962
9963 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
9964
9965         getdate: correctly interpret "next monday" when run on a Monday
9966         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
9967         that e.g., "next tues" (when run on a tuesday) results in a date
9968         that is one week in the future, and not today's date.
9969         I.e., add a week when the wday is the same as the current one.
9970         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
9971         and earlier by Martin Bernreuther and Jan Minář.
9972         * tests/test-getdate.c (main): Check that "next DAY" is always in
9973         the future and that "last DAY" is always in the past.
9974
9975 2009-05-02  Jim Meyering  <meyering@redhat.com>
9976
9977         build: ensure that a release build fails when a submodule is unclean
9978         * top/maint.mk (no-submodule-changes): New rule.
9979         (alpha beta major): Depend on it.
9980
9981 2009-05-02  Bruno Haible  <bruno@clisp.org>
9982
9983         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
9984         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
9985         shell variable gl_fnmatch_required to detect which variant is
9986         requested.
9987         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
9988         gl_FUNC_FNMATCH_POSIX.
9989         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
9990         exclude fnmatch-posix.
9991
9992 2009-05-02  Bruno Haible  <bruno@clisp.org>
9993
9994         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
9995         * modules/mbsrtowcs (License): Change to LGPLv2+.
9996         * modules/strnlen1 (License): Likewise.
9997         Reported by Simon Josefsson.
9998
9999 2009-05-02  Bruno Haible  <bruno@clisp.org>
10000
10001         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
10002         "cross".
10003         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
10004         gnulib-tool was called with option --source-base=lib.
10005
10006 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10007
10008         Use automake *-local hooks without commands, for extensibility.
10009         * modules/localcharset (Makefile.am): Rename install-exec-local
10010         rule to install-exec-localcharset, and make it a prerequisite of
10011         install-exec-local.  Likewise, rename the uninstall-local rule to
10012         uninstall-localcharset, and make it a prerequisite of the former.
10013
10014 2009-05-01  Bruno Haible  <bruno@clisp.org>
10015
10016         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
10017         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
10018         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
10019         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
10020         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
10021         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
10022         m4/locale-zh.m4, m4/codeset.m4.
10023
10024         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
10025         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
10026         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
10027         m4/locale-zh.m4.
10028
10029         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
10030         REPLACE_WCRTOMB if mbstate_t must be replaced.
10031         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
10032         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
10033
10034 2009-05-01  Bruno Haible  <bruno@clisp.org>
10035
10036         Avoid compiler warnings when redefining macros defined by <libintl.h>.
10037         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
10038         dngettext, dcngettext, textdomain, bindtextdomain,
10039         bind_textdomain_codeset): Undefine before redefining.
10040
10041 2009-04-30  Bruno Haible  <bruno@clisp.org>
10042
10043         Fix bug introduced on 2009-04-25.
10044         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
10045         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
10046         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
10047         is defined.
10048         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
10049         is defined.
10050         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
10051         is defined.
10052         Reported by Elbert_Pol <elbert.pol@gmail.com>.
10053
10054 2009-04-28  Bruno Haible  <bruno@clisp.org>
10055
10056         Comment tweaks.
10057         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
10058         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
10059         * lib/unicase.h (u*_casexfrm): Likewise.
10060         Reported by Paolo Bonzini.
10061
10062 2009-04-28  Bruno Haible  <bruno@clisp.org>
10063
10064         Fix a compilation error.
10065         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
10066         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10067         Reported by Jim Meyering.
10068
10069 2009-04-27  Bruno Haible  <bruno@clisp.org>
10070
10071         New module 'libunistring'.
10072         * modules/libunistring: New file.
10073         * m4/libunistring.m4: New file.
10074         * MODULES.html.sh (Unicode string functions): Add it.
10075
10076 2009-04-27  Eric Blake  <ebb9@byu.net>
10077
10078         maint.mk: allow package-specific header to provide <config.h>
10079         * top/maint.mk (sc_require_config_h): New variable.
10080         (sc_require_config_h, sc_require_config_h_first): Use it.
10081
10082 2009-04-27  Simon Josefsson  <simon@josefsson.org>
10083
10084         * top/maint.mk (sc_avoid_if_before_free): Except
10085         useless-if-before-free script.
10086
10087 2009-04-27  Eric Blake  <ebb9@byu.net>
10088
10089         maintainer-makefile: depend on all required helper scripts
10090         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
10091         useless-if-before-free.
10092         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
10093         version, rather than assuming gnulib checkout is available.
10094         Reported by Simen Josefsson.
10095
10096 2009-04-26  Bruno Haible  <bruno@clisp.org>
10097
10098         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
10099         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
10100         "../" or "..".
10101
10102 2009-04-26  Bruno Haible  <bruno@clisp.org>
10103
10104         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
10105         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
10106         AC_LIB_HAVE_LINKFLAGS.
10107
10108 2009-04-26  Bruno Haible  <bruno@clisp.org>
10109
10110         Simplify calling convention of u*_conv_from_encoding.
10111         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
10112         u32_conv_from_encoding): Expect a resultbuf argument and return the
10113         result directly as a pointer.
10114         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
10115         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
10116         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
10117         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
10118         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
10119         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
10120         Update.
10121         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
10122         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
10123         * lib/vasnprintf.c (VASNPRINTF): Update.
10124         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
10125         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
10126         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
10127         * NEWS: Mention the change.
10128
10129 2009-04-26  Bruno Haible  <bruno@clisp.org>
10130
10131         Simplify calling convention of u*_conv_to_encoding.
10132         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
10133         u32_conv_to_encoding): Expect a resultbuf argument and return the
10134         result directly as a pointer.
10135         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
10136         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
10137         freeing scaled_offsets if mem_iconveha failed.
10138         * lib/unicase/u-casexfrm.h (FUNC): Update.
10139         * lib/uninorm/u-normxfrm.h (FUNC): Update.
10140         * lib/vasnprintf.c (VASNPRINTF): Update.
10141         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
10142         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
10143         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
10144         * NEWS: Mention the change.
10145
10146 2009-04-26  Bruno Haible  <bruno@clisp.org>
10147
10148         Avoid test failures on AIX and OSF/1.
10149         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
10150         malloc(0).
10151         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
10152         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
10153         Likewise.
10154         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
10155         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
10156         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
10157         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
10158         * doc/posix-functions/malloc.texi: Document the portability problem
10159         related to malloc(0).
10160
10161 2009-04-26  Bruno Haible  <bruno@clisp.org>
10162
10163         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
10164         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
10165         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
10166
10167 2009-04-25  Bruno Haible  <bruno@clisp.org>
10168
10169         Avoid link error when creating a namespace clean library.
10170         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
10171         as macro with arguments if already defined as an alias.
10172         * lib/signbitf.c (gl_signbitf): Don't undefine.
10173         * lib/signbitd.c (gl_signbitd): Don't undefine.
10174         * lib/signbitl.c (gl_signbitl): Don't undefine.
10175
10176 2009-04-25  Jim Meyering  <meyering@redhat.com>
10177
10178         vc-list-files: fix another quoting bug
10179         * build-aux/vc-list-files: Avoid sed backslash expansion
10180         of pathological directory names.
10181
10182 2009-04-25  Eric Blake  <ebb9@byu.net>
10183
10184         vc-list-files: fix shell quoting error
10185         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
10186         timestamp.
10187
10188 2009-04-25  Jim Meyering  <meyering@redhat.com>
10189
10190         vc-list-files: restore lost functionality with subdir argument
10191         * build-aux/vc-list-files: When given a non-"." sub-directory
10192         argument, substitute the $dir/ prefix back onto each resulting name.
10193         Otherwise, coreutils' root_tests check would fail.
10194
10195 2009-04-24  Eric Blake  <ebb9@byu.net>
10196
10197         vc-list-files: ignore git symlinks
10198         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
10199         than ls-files, to ignore git symlinks.
10200
10201         maint.mk: import improvements from m4
10202         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
10203         (move_if_change): Delete unused macro.
10204         (news-date-check, vc-diff-check): Support VPATH builds.
10205         (announcement): Likewise.  Split --bootstrap-tools list...
10206         (boostrap-tools): ...into separate list, which can be overridden
10207         in cfg.mk.
10208         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
10209         requiring dependency on useless-if-before-free module.
10210         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
10211         Support VPATH builds.
10212
10213 2009-04-24  Jim Meyering  <meyering@redhat.com>
10214
10215         maint.mk: remove coreutils-specific rules and variables
10216         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
10217         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
10218         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
10219
10220         maint.mk: remove obsolete rule
10221         * top/maint.mk (rel-check): Remove rule.
10222         (WGET, WGETFLAGS): Remove now-unused variables.
10223
10224 2009-04-24  Simon Josefsson  <simon@josefsson.org>
10225
10226         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
10227         consistency.
10228
10229         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
10230         '$(PATH_SEPARATOR)' instead of ':'.
10231
10232 2009-04-24  Simon Josefsson  <simon@josefsson.org>
10233
10234         * lib/getopt1.c (main): Use 'const' for static array.
10235
10236 2009-04-24  Simon Josefsson  <simon@josefsson.org>
10237
10238         * top/maint.mk: Sync with coreutils.
10239         * NEWS: Explain incompatibilities.
10240
10241 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10242             Bruno Haible  <bruno@clisp.org>
10243
10244         Fix cross-compilation results.
10245         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
10246         statement, as third argument of AC_TRY_RUN.
10247         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
10248         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
10249         Likewise.
10250         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
10251         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
10252         Likewise.
10253         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
10254         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
10255         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
10256
10257 2009-04-20  Bruno Haible  <bruno@clisp.org>
10258
10259         Avoid test failure on mingw.
10260         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
10261
10262 2009-04-20  Bruno Haible  <bruno@clisp.org>
10263
10264         Avoid compilation error on mingw.
10265         * modules/localename-tests (Depends-on): Add locale.
10266
10267 2009-04-19  Bruno Haible  <bruno@clisp.org>
10268
10269         Support for building a shared library on Windows platforms.
10270         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
10271         (main): Test the presence of UNINORM_NFC here.
10272         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
10273         (main): Test the presence of UNINORM_NFD here.
10274         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
10275         (main): Test the presence of UNINORM_NFKC here.
10276         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
10277         (main): Test the presence of UNINORM_NFKD here.
10278
10279 2009-04-19  Bruno Haible  <bruno@clisp.org>
10280
10281         Avoid a compiler warning.
10282         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
10283         Change type of variable 'sequence'.
10284
10285 2009-04-19  Bruno Haible  <bruno@clisp.org>
10286
10287         * modules/configmake (Makefile.am): When the contents of configmake.h
10288         does not change, arrange to preserve its modification time.
10289
10290 2009-04-17  Simon Josefsson  <simon@josefsson.org>
10291
10292         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
10293         gettext domain.
10294
10295 2009-04-16  Jim Meyering  <meyering@redhat.com>
10296
10297         useless-if-before-free: improve conversion code
10298         * build-aux/useless-if-before-free: Adjust code-in-comment to match
10299         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
10300
10301 2009-04-14  Bruno Haible  <bruno@clisp.org>
10302
10303         * modules/fcntl (Depends-on): Add extensions.
10304         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
10305
10306 2009-04-12  Ben Pfaff  <blp@gnu.org>
10307
10308         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
10309         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
10310
10311 2009-03-20  Ben Pfaff  <blp@gnu.org>
10312
10313         Make rename replace existing destinations on Windows.
10314         * m4/rename.m4: Add test for Mingw.
10315         * lib/rename.c: Add rename replacement that uses MoveFileEx with
10316         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
10317         * doc/posix-functions/rename.texi: Document.
10318
10319 2009-04-10  Bruno Haible  <bruno@clisp.org>
10320
10321         New include file "iconveh.h".
10322         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
10323         * lib/striconveh.h: Include it.
10324         (enum iconv_ilseq_handler): Remove definition.
10325         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
10326         striconveh.h.
10327         * lib/striconveha.c: Include striconveh.h.
10328         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
10329         * modules/striconveh (Files): Add lib/iconveh.h.
10330         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
10331         lib/striconveh.h.
10332
10333 2009-04-10  Bruno Haible  <bruno@clisp.org>
10334
10335         * lib/uniconv.h: Update comment.
10336
10337 2009-04-10  Bruno Haible  <bruno@clisp.org>
10338
10339         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
10340         always.
10341         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
10342         * lib/unistr/u16-mbtouc-aux.c: Likewise.
10343         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
10344         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
10345         "unistring-notinline.h", so that the function gets defined always.
10346         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
10347         * lib/unistr/u8-uctomb.c: Likewise.
10348         * lib/unistr/u16-mbtouc.c: Likewise.
10349         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
10350         * lib/unistr/u16-uctomb.c: Likewise.
10351         * lib/unistr/u32-mbtouc.c: Likewise.
10352         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
10353         * lib/unistr/u32-uctomb.c: Likewise.
10354
10355 2009-04-10  Bruno Haible  <bruno@clisp.org>
10356
10357         Mark 'utime' obsolete.
10358         * modules/utime (Status, Notice): New sections.
10359         Suggested by Jim Meyering.
10360
10361         Fix cross-compile guess for utime test.
10362         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
10363         autoconf.
10364         * doc/posix-functions/utime.texi: Give more precisions.
10365         Reported by Jan <ipif@ymail.com>.
10366
10367 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
10368
10369         filevercmp: correct today's change
10370         * lib/filevercmp.c: Also handle coreutils' test inputs.
10371         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
10372
10373         Fix regression in 'filevercmp' module. Thanks Sven Joachim
10374         for reporting it.
10375         * lib/filevercmp.c: Special handle for "", "." and "..".
10376         * tests/test-filevercmp.c: Enlarge the set suite.
10377
10378 2009-04-07  Jim Meyering  <meyering@redhat.com>
10379
10380         useless-if-before-free: show how to remove braced useless free, too
10381         * build-aux/useless-if-before-free: still only in a comment, though.
10382
10383 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
10384
10385         maint.mk: import changes to syntax-check macros from coreutils
10386         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
10387         Use them in the relevant macros.
10388
10389 2009-04-06  Bruno Haible  <bruno@clisp.org>
10390
10391         Fix unportable use of bit-fields.
10392         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
10393         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
10394         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
10395
10396 2009-04-06  Bruno Haible  <bruno@clisp.org>
10397
10398         Avoid test failures on AIX and OSF/1.
10399         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
10400         that malloc(0) = NULL.
10401         * tests/unicase/test-u8-tolower.c (check): Likewise.
10402         * tests/unicase/test-u8-totitle.c (check): Likewise.
10403         * tests/unicase/test-u8-toupper.c (check): Likewise.
10404         * tests/unicase/test-u16-casefold.c (check): Likewise.
10405         * tests/unicase/test-u16-tolower.c (check): Likewise.
10406         * tests/unicase/test-u16-totitle.c (check): Likewise.
10407         * tests/unicase/test-u16-toupper.c (check): Likewise.
10408         * tests/unicase/test-u32-casefold.c (check): Likewise.
10409         * tests/unicase/test-u32-tolower.c (check): Likewise.
10410         * tests/unicase/test-u32-totitle.c (check): Likewise.
10411         * tests/unicase/test-u32-toupper.c (check): Likewise.
10412         * tests/uninorm/test-u8-nfc.c (check): Likewise.
10413         * tests/uninorm/test-u8-nfd.c (check): Likewise.
10414         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
10415         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
10416         * tests/uninorm/test-u16-nfc.c (check): Likewise.
10417         * tests/uninorm/test-u16-nfd.c (check): Likewise.
10418         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
10419         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
10420         * tests/uninorm/test-u32-nfc.c (check): Likewise.
10421         * tests/uninorm/test-u32-nfd.c (check): Likewise.
10422         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
10423         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
10424
10425 2009-04-05  Bruno Haible  <bruno@clisp.org>
10426
10427         Work around an autoconf limitation.
10428         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
10429         comment line if it would be longer than 3 KB.
10430
10431 2009-04-05  Bruno Haible  <bruno@clisp.org>
10432
10433         Avoid test failure with libiconv-1.13.
10434         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
10435         of the expected test results.
10436
10437 2009-04-05  Bruno Haible  <bruno@clisp.org>
10438
10439         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
10440         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
10441         that it should be installed.
10442
10443 2009-04-05  Bruno Haible  <bruno@clisp.org>
10444
10445         * gnulib-tool: New option --copy-file.
10446         (func_usage): Document it.
10447         (func_dest_tmpfilename): Moved out of func_import.
10448         (func_add_file, func_update_file): New functions, extracted from
10449         func_import.
10450         (func_import): Update.
10451
10452 2009-04-05  Karl Berry  <karl@gnu.org>
10453
10454         * README: prominently mention gnulib-tool.
10455         Rearrange sections so getting the code is near the top.
10456
10457 2009-04-05  Bruno Haible  <bruno@clisp.org>
10458
10459         * lib/unicase.h: Mention u*_cmp2.
10460         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
10461         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
10462         * lib/unicase/ulc-casecmp.c: Likewise.
10463         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
10464         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
10465         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
10466         unistr/u8-cmp.
10467         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
10468         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
10469         unistr/u16-cmp.
10470         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
10471         unistr/u32-cmp.
10472
10473         * lib/uninorm.h: Mention u*_cmp2.
10474         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
10475         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
10476         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
10477         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
10478         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
10479         unistr/u8-cmp.
10480         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
10481         unistr/u16-cmp.
10482         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
10483         unistr/u32-cmp.
10484
10485         New module 'unistr/u32-cmp2'.
10486         * lib/unistr/u32-cmp2.c: New file.
10487         * modules/unistr/u32-cmp2: New file.
10488
10489         New module 'unistr/u16-cmp2'.
10490         * lib/unistr/u16-cmp2.c: New file.
10491         * modules/unistr/u16-cmp2: New file.
10492
10493         New module 'unistr/u8-cmp2'.
10494         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
10495         * lib/unistr/u8-cmp2.c: New file.
10496         * lib/unistr/u-cmp2.h: New file.
10497         * modules/unistr/u8-cmp2: New file.
10498
10499 2009-04-05  Bruno Haible  <bruno@clisp.org>
10500
10501         * lib/unictype.h (uc_property_is_valid): New macro.
10502         * tests/unictype/test-pr_byname.c (main): Use it.
10503
10504         * lib/unistr.h: Doc fixes.
10505         * lib/uniconv.h: Doc fixes.
10506         * lib/unictype.h: Doc fixes.
10507
10508 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
10509
10510         Port coreutils 7.2 to Solaris 8.
10511
10512         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
10513         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
10514         for Solaris 8.  This is a bit of a hack, as it means it's the
10515         caller's responsibility to add -lnsl if needed, but most likely it
10516         won't be needed since only getaddrinfo uses this and getaddrinfo
10517         isn't needed on Solaris 8.
10518
10519         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
10520         problem to Solaris 8 encountered with coreutils 7.2, which
10521         resulted in a message "fnmatch.c:292: warning: passing argument 4
10522         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
10523         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
10524
10525 2009-04-03  Simon Josefsson  <simon@josefsson.org>
10526
10527         * m4/ld-version-script.m4: Add FIXME comment.
10528
10529 2009-04-02  Simon Josefsson  <simon@josefsson.org>
10530
10531         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
10532         SOVERSION variable.
10533
10534 2009-04-02  Bruno Haible  <bruno@clisp.org>
10535
10536         * Makefile (info, html, dvi, pdf): Combine the rules.
10537         Suggested by Jim Meyering.
10538
10539 2009-04-01  Bruno Haible  <bruno@clisp.org>
10540
10541         * Makefile (info, html, dvi, pdf): New targets.
10542         Reported by Reuben Thomas <rrt@sc3d.org>.
10543
10544 2009-04-01  Bruno Haible  <bruno@clisp.org>
10545
10546         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
10547         can be put into PATH.
10548         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
10549
10550 2009-04-01  Bruno Haible  <bruno@clisp.org>
10551
10552         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
10553
10554 2009-04-01  Bruno Haible  <bruno@clisp.org>
10555
10556         Rename module 'visibility'.
10557         * modules/lib-symbol-visibility: Renamed from modules/visibility.
10558         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
10559         * doc/gnulib.texi: Update.
10560         * MODULES.html.sh (Misc): Update.
10561         * NEWS: Mention the change.
10562
10563 2009-04-01  Simon Josefsson  <simon@josefsson.org>
10564
10565         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
10566         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
10567         Eric Blake <ebb9@byu.net> for review.
10568         * MODULES.html.sh: Add lib-msvc-compat.
10569         * doc/gnulib.texi: Link to new section.
10570         * m4/ld-output-def.m4: New file.
10571         * doc/ld-output-def.texi: New file.
10572
10573 2009-04-01  Simon Josefsson  <simon@josefsson.org>
10574
10575         Rename ld-version-script to lib-symbol-versions.  Suggested by
10576         Bruno Haible <bruno@clisp.org>.
10577         * modules/ld-version-script: Renamed to lib-symbol-versions.
10578         * doc/ld-version-script.texi: Fix module name.
10579         * MODULES.html.sh: Add lib-symbol-versions.
10580
10581 2009-03-31  Simon Josefsson  <simon@josefsson.org>
10582
10583         * modules/u64-tests: New file.
10584         * tests/test-u64.c: New file.
10585
10586 2009-03-04  Simon Josefsson  <simon@josefsson.org>
10587
10588         * MODULES.html.sh: Mention u64.
10589         * modules/u64: New module.
10590         * modules/crypto/sha512: Depend on u64 module instead of providing
10591         u64.h.
10592
10593 2009-03-27  Eric Blake  <ebb9@byu.net>
10594
10595         test-strerror: make debugging EAI_SYSTEM easier
10596         * modules/getaddrinfo-tests (Depends-on): Add strerror.
10597         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
10598         failure was EAI_SYSTEM.
10599
10600 2009-03-25  Bruno Haible  <bruno@clisp.org>
10601
10602         Fix a problem with --enable-relocatable on Solaris 7.
10603         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
10604         since 2008-02-24.
10605
10606 2009-03-25  Eric Blake  <ebb9@byu.net>
10607
10608         test-sockets: avoid gcc warning
10609         * tests/test-sockets.c (main): Silence compiler warning.
10610
10611 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
10612
10613         New modules nproc, pthread, contributed by Glen Lenker.
10614
10615         * MODULES.html.sh: Add pthread, nproc.
10616         * lib/nproc.c: New file.
10617         * lib/nproc.h: New file.
10618         * lib/pthread.in.h: New file.
10619         * m4/pthread.m4: New file.
10620         * modules/nproc: New file.
10621         * modules/pthread: New file.
10622
10623 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10624
10625         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
10626         New variable.
10627
10628 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
10629
10630         filevercmp: handle simple~ and numbered.~3~ backup suffixes
10631         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
10632         * tests/test-filevercmp.c: Add tests for backup suffixes.
10633
10634 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10635
10636         * modules/stdlib (Depends-on): Add stdint, needed when defining
10637         struct random_data on, for example, HP-UX 10.20.  Reported by
10638         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10639
10640 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10641
10642         * lib/readline.c (readline): Call fflush on stdout after printing
10643         prompt.
10644
10645 2009-03-20  Bruno Haible  <bruno@clisp.org>
10646
10647         Remove dependency from 'close' module to -lws2_32 on native Windows.
10648         * lib/close-hook.h: New file.
10649         * lib/close-hook.c: New file.
10650         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
10651         w32sock.h.
10652         (_gl_close_fd_maybe_socket): Remove function.
10653         (rpl_close): Invoke execute_all_close_hooks instead of
10654         _gl_close_fd_maybe_socket.
10655         * lib/sockets.c: Include close-hook.h, w32sock.h.
10656         (close_fd_maybe_socket): New function, essentially from lib/close.c.
10657         (close_sockets_hook): New variable.
10658         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
10659         (gl_sockets_cleanup): Unregister it.
10660         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
10661         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
10662         * modules/close-hook: New file.
10663         * modules/close (Files): Remove lib/w32sock.h.
10664         (Depends-on): Add close-hook.
10665         (Link): Remove section.
10666         * modules/sockets (Files): Add lib/w32sock.h.
10667         (Depends-on): Add close-hook.
10668         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
10669         invocation.
10670         * NEWS: Mention that LIB_CLOSE is gone.
10671
10672 2009-03-23  Eric Blake  <ebb9@byu.net>
10673
10674         signal-tests: test previous patch
10675         * tests/test-signal.c: New file.
10676         * modules/signal-tests: Likewise.
10677
10678         signal.h: always support 'volatile sig_atomic_t'
10679         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
10680         (gl_SIGNAL_H_DEFAULTS): Add a default.
10681         * modules/signal (Makefile.am): Substitute if needed.
10682         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
10683         users can blindly add volatile.
10684         * doc/posix-headers/signal.texi (signal.h): Document it.
10685         Reported by Matthew Woehlke.
10686
10687 2009-03-23  Jim Meyering  <meyering@redhat.com>
10688
10689         pathmax: PATH_MAX: use pathconf only when available
10690         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
10691         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
10692         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
10693         This avoids a link failure in a PSP cross-compilation environment
10694         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
10695
10696         * lib/vasnprintf.c (divide): Fix typo in comment.
10697
10698 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10699
10700         * gnulib-tool (func_filter_filelist): Fix comment.
10701
10702 2009-03-20  Bruno Haible  <bruno@clisp.org>
10703
10704         Make sockets.h self-contained.
10705         * lib/sockets.c: Include sockets.h first.
10706         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
10707
10708 2009-03-19  Eric Blake  <ebb9@byu.net>
10709
10710         doc: mention more functions added in cygwin 1.7.0
10711         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
10712         addition.
10713         * doc/posix-functions/log2f.texi: Likewise.
10714
10715 2009-03-19  Jim Meyering  <meyering@redhat.com>
10716
10717         fsusage: avoid syntax error due to statement-before-declaration
10718         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
10719         after all declarations.  Reported by Matthew Woehlke in
10720         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
10721
10722 2009-03-18  Eric Blake  <ebb9@byu.net>
10723
10724         build-aux/compile: sync from automake
10725         * build-aux/compile: New file, from automake.
10726         * config/srclist.txt: Mention build-aux/compile.
10727
10728 2009-03-17  Bruno Haible  <bruno@clisp.org>
10729
10730         * lib/git-merge-changelog.c: Fix typo in comment.
10731         Reported by Reuben Thomas <rrt@sc3d.org>.
10732
10733 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
10734
10735         * m4/regex.m4: update and improve help for
10736         --without-included-regex.
10737
10738 2009-03-17  Simon Josefsson  <simon@josefsson.org>
10739
10740         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
10741         failure on missing include files.
10742
10743 2009-03-17  Eric Blake  <ebb9@byu.net>
10744
10745         doc: mention more functions added in cygwin 1.7.0
10746         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
10747         addition.
10748         * doc/posix-functions/fwscanf.texi: Likewise.
10749         * doc/posix-functions/swprintf.texi: Likewise.
10750         * doc/posix-functions/swscanf.texi: Likewise.
10751         * doc/posix-functions/vfwprintf.texi: Likewise.
10752         * doc/posix-functions/vfwscanf.texi: Likewise.
10753         * doc/posix-functions/vswprintf.texi: Likewise.
10754         * doc/posix-functions/vswscanf.texi: Likewise.
10755         * doc/posix-functions/vwprintf.texi: Likewise.
10756         * doc/posix-functions/vwscanf.texi: Likewise.
10757         * doc/posix-functions/wcscasecmp.texi: Likewise.
10758         * doc/posix-functions/wcsdup.texi: Likewise.
10759         * doc/posix-functions/wcsftime.texi: Likewise.
10760         * doc/posix-functions/wcsncasecmp.texi: Likewise.
10761         * doc/posix-functions/wprintf.texi: Likewise.
10762         * doc/posix-functions/wscanf.texi: Likewise.
10763         * doc/glibc-functions/gethostbyname2.texi: Likewise.
10764
10765 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10766
10767         maint.mk: really add $(AM_MAKEFLAGS)
10768         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
10769         was inadvertently omitted in the last commit.
10770         Spotted by Bruno Haible.
10771
10772         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
10773         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
10774         $(AM_MAKEFLAGS)' rather than plain `make'.
10775
10776         gnulib-tool: execute $MAKE not make
10777         * gnulib-tool: Default $MAKE to 'make'.
10778         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
10779         than make.  Initialize $MAKE in the do-autobuild script.
10780
10781         gnulib-tool: use $MAKE not make in generated files
10782         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
10783         make, in generated files.  Initialize $MAKE in the do-autobuild
10784         script.
10785
10786         * top/GNUmakefile (_have-git-version-gen): Fix typo.
10787
10788         GNUmakefile: disable parallelism only for multiple, recursive targets
10789         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
10790         additions in the Makefile.
10791         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
10792         by Automake.
10793         (.NOTPARALLEL): Only disable parallel builds if multiple targets
10794         are listed on the command line and at least one of them is
10795         listed in $(ALL_RECURSIVE_TARGETS).
10796
10797 2009-03-14  Bruno Haible  <bruno@clisp.org>
10798
10799         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
10800         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
10801         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
10802         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
10803         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
10804         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
10805         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
10806         unistr/u8-uctomb.
10807         * modules/unistr/u8-strchr (Depends-on): Likewise.
10808         * modules/unistr/u8-strrchr (Depends-on): Likewise.
10809         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
10810         unistr/u16-uctomb.
10811         * modules/unistr/u16-strchr (Depends-on): Likewise.
10812         * modules/unistr/u16-strrchr (Depends-on): Likewise.
10813
10814 2009-03-12  Bruno Haible  <bruno@clisp.org>
10815
10816         Work around select() bug on Interix 3.5.
10817         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
10818         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
10819         * m4/select.m4: New file.
10820         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
10821         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
10822         * modules/select (Files): Add m4/select.m4.
10823         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
10824         * modules/nanosleep (Depends-on): Add select.
10825         * modules/poll (Depends-on): Likewise.
10826         * doc/posix-functions/select.texi: Mention the Interix bug.
10827         Reported by Markus Duft <mduft@gentoo.org>.
10828
10829         * lib/select.c: Renamed from lib/winsock-select.c.
10830         * modules/select (Files): Add lib/select.c, remove
10831         lib/winsock-select.c.
10832         (configure.ac): Update.
10833
10834 2009-03-12  Jim Meyering  <meyering@redhat.com>
10835
10836         avoid gcc warnings about unused macro definitions
10837         * lib/readtokens.c (STREQ): Remove unused definition.
10838         * lib/xmalloc.c (SIZE_MAX): Likewise.
10839         * lib/openat-die.c (N_): Likewise.
10840         * lib/mountlist.c (SIZE_MAX): Remove definition.
10841         Instead, include <stdint.h>.
10842         * lib/readutmp.c: Likewise.
10843         * modules/readutmp (Depends-on): Add stdint.
10844         * modules/mountlist (Depends-on): Add stdint.
10845         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
10846
10847 2009-03-10  Bruno Haible  <bruno@clisp.org>
10848
10849         Tests for module 'mbmemcasecoll'.
10850         * modules/mbmemcasecoll-tests: New file.
10851         * tests/test-mbmemcasecoll1.sh: New file.
10852         * tests/test-mbmemcasecoll2.sh: New file.
10853         * tests/test-mbmemcasecoll3.sh: New file.
10854         * tests/test-mbmemcasecoll.c: New file.
10855
10856         New module 'mbmemcasecoll'.
10857         * lib/mbmemcasecoll.h: New file.
10858         * lib/mbmemcasecoll.c: New file.
10859         * modules/mbmemcasecoll: New file.
10860
10861         * tests/test-mbmemcasecmp.h: New file, extracted from
10862         tests/test-mbmemcasecmp.c.
10863         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
10864         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
10865         (main): Update.
10866         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
10867
10868 2009-03-09  Bruno Haible  <bruno@clisp.org>
10869
10870         Tests for module 'mbmemcasecmp'.
10871         * modules/mbmemcasecmp-tests: New file.
10872         * tests/test-mbmemcasecmp1.sh: New file.
10873         * tests/test-mbmemcasecmp2.sh: New file.
10874         * tests/test-mbmemcasecmp3.sh: New file.
10875         * tests/test-mbmemcasecmp.c: New file.
10876
10877         New module 'mbmemcasecmp'.
10878         * lib/mbmemcasecmp.h: New file.
10879         * lib/mbmemcasecmp.c: New file.
10880         * modules/mbmemcasecmp: New file.
10881
10882 2009-03-09  Bruno Haible  <bruno@clisp.org>
10883
10884         Tests for module 'unicase/ulc-casecoll'.
10885         * modules/unicase/ulc-casecoll-tests: New file.
10886         * tests/unicase/test-ulc-casecoll1.sh: New file.
10887         * tests/unicase/test-ulc-casecoll2.sh: New file.
10888         * tests/unicase/test-ulc-casecoll.c: New file.
10889
10890         New module 'unicase/ulc-casecoll'.
10891         * lib/unicase.h (ulc_casecoll): New declaration.
10892         * lib/unicase/ulc-casecoll.c: New file.
10893         * modules/unicase/ulc-casecoll: New file.
10894
10895         New module 'unicase/ulc-casexfrm'.
10896         * lib/unicase.h (ulc_casexfrm): New declaration.
10897         * lib/unicase/ulc-casexfrm.c: New file.
10898         * modules/unicase/ulc-casexfrm: New file.
10899
10900 2009-03-09  Bruno Haible  <bruno@clisp.org>
10901
10902         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
10903         invocations.
10904
10905         * m4/mbscasecmp.m4: Remove file.
10906         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
10907         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
10908
10909         * m4/mbscasestr.m4: Remove file.
10910         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
10911         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
10912
10913         * m4/mbschr.m4: Remove file.
10914         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
10915         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
10916
10917         * m4/mbscspn.m4: Remove file.
10918         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
10919         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
10920
10921         * m4/mbslen.m4: Remove file.
10922         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
10923         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
10924
10925         * m4/mbsncasecmp.m4: Remove file.
10926         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
10927         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
10928
10929         * m4/mbsnlen.m4: Remove file.
10930         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
10931         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
10932
10933         * m4/mbspbrk.m4: Remove file.
10934         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
10935         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
10936
10937         * m4/mbspcasecmp.m4: Remove file.
10938         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
10939         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
10940
10941         * m4/mbsrchr.m4: Remove file.
10942         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
10943         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
10944
10945         * m4/mbssep.m4: Remove file.
10946         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
10947         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
10948
10949         * m4/mbsspn.m4: Remove file.
10950         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
10951         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
10952
10953         * m4/mbsstr.m4: Remove file.
10954         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
10955         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
10956
10957         * m4/mbstok_r.m4: Remove file.
10958         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
10959         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
10960
10961         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
10962
10963         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
10964         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
10965
10966         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
10967
10968 2009-03-08  Bruno Haible  <bruno@clisp.org>
10969
10970         Tests for module 'unicase/ulc-casecmp'.
10971         * modules/unicase/ulc-casecmp-tests: New file.
10972         * tests/unicase/test-ulc-casecmp1.sh: New file.
10973         * tests/unicase/test-ulc-casecmp2.sh: New file.
10974         * tests/unicase/test-ulc-casecmp.c: New file.
10975
10976         New module 'unicase/ulc-casecmp'.
10977         * lib/unicase.h (ulc_casecmp): New declaration.
10978         * lib/unicase/ulc-casecmp.c: New file.
10979         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
10980         'const SRC_UNIT *'.
10981         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
10982         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
10983         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
10984         * modules/unicase/ulc-casecmp: New file.
10985
10986         Tests for module 'unicase/u32-is-cased'.
10987         * modules/unicase/u32-is-cased-tests: New file.
10988         * tests/unicase/test-u32-is-cased.c: New file.
10989
10990         Tests for module 'unicase/u16-is-cased'.
10991         * modules/unicase/u16-is-cased-tests: New file.
10992         * tests/unicase/test-u16-is-cased.c: New file.
10993
10994         Tests for module 'unicase/u8-is-cased'.
10995         * modules/unicase/u8-is-cased-tests: New file.
10996         * tests/unicase/test-u8-is-cased.c: New file.
10997         * tests/unicase/test-is-cased.h: New file.
10998
10999         New module 'unicase/u32-is-cased'.
11000         * lib/unicase/u32-is-cased.c: New file.
11001         * modules/unicase/u32-is-cased: New file.
11002
11003         New module 'unicase/u16-is-cased'.
11004         * lib/unicase/u16-is-cased.c: New file.
11005         * modules/unicase/u16-is-cased: New file.
11006
11007         New module 'unicase/u8-is-cased'.
11008         * lib/unicase/u8-is-cased.c: New file.
11009         * lib/unicase/u-is-cased.h: New file.
11010         * modules/unicase/u8-is-cased: New file.
11011
11012         Tests for module 'unicase/u32-is-casefolded'.
11013         * modules/unicase/u32-is-casefolded-tests: New file.
11014         * tests/unicase/test-u32-is-casefolded.c: New file.
11015
11016         Tests for module 'unicase/u16-is-casefolded'.
11017         * modules/unicase/u16-is-casefolded-tests: New file.
11018         * tests/unicase/test-u16-is-casefolded.c: New file.
11019
11020         Tests for module 'unicase/u8-is-casefolded'.
11021         * modules/unicase/u8-is-casefolded-tests: New file.
11022         * tests/unicase/test-u8-is-casefolded.c: New file.
11023         * tests/unicase/test-is-casefolded.h: New file.
11024
11025         New module 'unicase/u32-is-casefolded'.
11026         * lib/unicase/u32-is-casefolded.c: New file.
11027         * modules/unicase/u32-is-casefolded: New file.
11028
11029         New module 'unicase/u16-is-casefolded'.
11030         * lib/unicase/u16-is-casefolded.c: New file.
11031         * modules/unicase/u16-is-casefolded: New file.
11032
11033         New module 'unicase/u8-is-casefolded'.
11034         * lib/unicase/u8-is-casefolded.c: New file.
11035         * modules/unicase/u8-is-casefolded: New file.
11036
11037         Tests for module 'unicase/u32-is-titlecase'.
11038         * modules/unicase/u32-is-titlecase-tests: New file.
11039         * tests/unicase/test-u32-is-titlecase.c: New file.
11040
11041         Tests for module 'unicase/u16-is-titlecase'.
11042         * modules/unicase/u16-is-titlecase-tests: New file.
11043         * tests/unicase/test-u16-is-titlecase.c: New file.
11044
11045         Tests for module 'unicase/u8-is-titlecase'.
11046         * modules/unicase/u8-is-titlecase-tests: New file.
11047         * tests/unicase/test-u8-is-titlecase.c: New file.
11048         * tests/unicase/test-is-titlecase.h: New file.
11049
11050         New module 'unicase/u32-is-titlecase'.
11051         * lib/unicase/u32-is-titlecase.c: New file.
11052         * modules/unicase/u32-is-titlecase: New file.
11053
11054         New module 'unicase/u16-is-titlecase'.
11055         * lib/unicase/u16-is-titlecase.c: New file.
11056         * modules/unicase/u16-is-titlecase: New file.
11057
11058         New module 'unicase/u8-is-titlecase'.
11059         * lib/unicase/u8-is-titlecase.c: New file.
11060         * modules/unicase/u8-is-titlecase: New file.
11061
11062         Tests for module 'unicase/u32-is-lowercase'.
11063         * modules/unicase/u32-is-lowercase-tests: New file.
11064         * tests/unicase/test-u32-is-lowercase.c: New file.
11065
11066         Tests for module 'unicase/u16-is-lowercase'.
11067         * modules/unicase/u16-is-lowercase-tests: New file.
11068         * tests/unicase/test-u16-is-lowercase.c: New file.
11069
11070         Tests for module 'unicase/u8-is-lowercase'.
11071         * modules/unicase/u8-is-lowercase-tests: New file.
11072         * tests/unicase/test-u8-is-lowercase.c: New file.
11073         * tests/unicase/test-is-lowercase.h: New file.
11074
11075         New module 'unicase/u32-is-lowercase'.
11076         * lib/unicase/u32-is-lowercase.c: New file.
11077         * modules/unicase/u32-is-lowercase: New file.
11078
11079         New module 'unicase/u16-is-lowercase'.
11080         * lib/unicase/u16-is-lowercase.c: New file.
11081         * modules/unicase/u16-is-lowercase: New file.
11082
11083         New module 'unicase/u8-is-lowercase'.
11084         * lib/unicase/u8-is-lowercase.c: New file.
11085         * modules/unicase/u8-is-lowercase: New file.
11086
11087         Tests for module 'unicase/u32-is-uppercase'.
11088         * modules/unicase/u32-is-uppercase-tests: New file.
11089         * tests/unicase/test-u32-is-uppercase.c: New file.
11090
11091         Tests for module 'unicase/u16-is-uppercase'.
11092         * modules/unicase/u16-is-uppercase-tests: New file.
11093         * tests/unicase/test-u16-is-uppercase.c: New file.
11094
11095         Tests for module 'unicase/u8-is-uppercase'.
11096         * modules/unicase/u8-is-uppercase-tests: New file.
11097         * tests/unicase/test-u8-is-uppercase.c: New file.
11098         * tests/unicase/test-is-uppercase.h: New file.
11099
11100         New module 'unicase/u32-is-uppercase'.
11101         * lib/unicase/u32-is-uppercase.c: New file.
11102         * modules/unicase/u32-is-uppercase: New file.
11103
11104         New module 'unicase/u16-is-uppercase'.
11105         * lib/unicase/u16-is-uppercase.c: New file.
11106         * modules/unicase/u16-is-uppercase: New file.
11107
11108         New module 'unicase/u8-is-uppercase'.
11109         * lib/unicase/u8-is-uppercase.c: New file.
11110         * modules/unicase/u8-is-uppercase: New file.
11111
11112         New module 'unicase/u32-is-invariant'.
11113         * lib/unicase/u32-is-invariant.c: New file.
11114         * modules/unicase/u32-is-invariant: New file.
11115
11116         New module 'unicase/u16-is-invariant'.
11117         * lib/unicase/u16-is-invariant.c: New file.
11118         * modules/unicase/u16-is-invariant: New file.
11119
11120         New module 'unicase/u8-is-invariant'.
11121         * lib/unicase/u8-is-invariant.c: New file.
11122         * lib/unicase/invariant.h: New file.
11123         * lib/unicase/u-is-invariant.h: New file.
11124         * modules/unicase/u8-is-invariant: New file.
11125
11126         Tests for module 'unicase/u32-casecoll'.
11127         * modules/unicase/u32-casecoll-tests: New file.
11128         * tests/unicase/test-u32-casecoll.c: New file.
11129
11130         Tests for module 'unicase/u16-casecoll'.
11131         * modules/unicase/u16-casecoll-tests: New file.
11132         * tests/unicase/test-u16-casecoll.c: New file.
11133
11134         Tests for module 'unicase/u8-casecoll'.
11135         * modules/unicase/u8-casecoll-tests: New file.
11136         * tests/unicase/test-u8-casecoll.c: New file.
11137
11138         New module 'unicase/u32-casecoll'.
11139         * lib/unicase/u32-casecoll.c: New file.
11140         * modules/unicase/u32-casecoll: New file.
11141
11142         New module 'unicase/u16-casecoll'.
11143         * lib/unicase/u16-casecoll.c: New file.
11144         * modules/unicase/u16-casecoll: New file.
11145
11146         New module 'unicase/u8-casecoll'.
11147         * lib/unicase/u8-casecoll.c: New file.
11148         * lib/unicase/u-casecoll.h: New file.
11149         * modules/unicase/u8-casecoll: New file.
11150
11151         New module 'unicase/u32-casexfrm'.
11152         * lib/unicase/u32-casexfrm.c: New file.
11153         * modules/unicase/u32-casexfrm: New file.
11154
11155         New module 'unicase/u16-casexfrm'.
11156         * lib/unicase/u16-casexfrm.c: New file.
11157         * modules/unicase/u16-casexfrm: New file.
11158
11159         New module 'unicase/u8-casexfrm'.
11160         * lib/unicase/u8-casexfrm.c: New file.
11161         * lib/unicase/u-casexfrm.h: New file.
11162         * modules/unicase/u8-casexfrm: New file.
11163
11164         Tests for module 'unicase/u32-casecmp'.
11165         * modules/unicase/u32-casecmp-tests: New file.
11166         * tests/unicase/test-u32-casecmp.c: New file.
11167
11168         Tests for module 'unicase/u16-casecmp'.
11169         * modules/unicase/u16-casecmp-tests: New file.
11170         * tests/unicase/test-u16-casecmp.c: New file.
11171
11172         Tests for module 'unicase/u8-casecmp'.
11173         * modules/unicase/u8-casecmp-tests: New file.
11174         * tests/unicase/test-u8-casecmp.c: New file.
11175         * tests/unicase/test-casecmp.h: New file.
11176
11177         New module 'unicase/u32-casecmp'.
11178         * lib/unicase/u32-casecmp.c: New file.
11179         * modules/unicase/u32-casecmp: New file.
11180
11181         New module 'unicase/u16-casecmp'.
11182         * lib/unicase/u16-casecmp.c: New file.
11183         * modules/unicase/u16-casecmp: New file.
11184
11185         New module 'unicase/u8-casecmp'.
11186         * lib/unicase/u8-casecmp.c: New file.
11187         * lib/unicase/u-casecmp.h: New file.
11188         * modules/unicase/u8-casecmp: New file.
11189
11190         Tests for module 'unicase/u32-casefold'.
11191         * modules/unicase/u32-casefold-tests: New file.
11192         * tests/unicase/test-u32-casefold.c: New file.
11193
11194         Tests for module 'unicase/u16-casefold'.
11195         * modules/unicase/u16-casefold-tests: New file.
11196         * tests/unicase/test-u16-casefold.c: New file.
11197
11198         Tests for module 'unicase/u8-casefold'.
11199         * modules/unicase/u8-casefold-tests: New file.
11200         * tests/unicase/test-u8-casefold.c: New file.
11201
11202         New module 'unicase/u32-casefold'.
11203         * lib/unicase/u32-casefold.c: New file.
11204         * modules/unicase/u32-casefold: New file.
11205
11206         New module 'unicase/u16-casefold'.
11207         * lib/unicase/u16-casefold.c: New file.
11208         * modules/unicase/u16-casefold: New file.
11209
11210         New module 'unicase/u8-casefold'.
11211         * lib/unicase/u8-casefold.c: New file.
11212         * lib/unicase/u-casefold.h: New file.
11213         * modules/unicase/u8-casefold: New file.
11214
11215         New module 'unicase/tocasefold'.
11216         * lib/unicase/casefold.h: New file.
11217         * lib/unicase/tocasefold.c: New file.
11218         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
11219         * modules/unicase/tocasefold: New file.
11220
11221         Tests for module 'unicase/u32-totitle'.
11222         * modules/unicase/u32-totitle-tests: New file.
11223         * tests/unicase/test-u32-totitle.c: New file.
11224
11225         Tests for module 'unicase/u16-totitle'.
11226         * modules/unicase/u16-totitle-tests: New file.
11227         * tests/unicase/test-u16-totitle.c: New file.
11228
11229         Tests for module 'unicase/u8-totitle'.
11230         * modules/unicase/u8-totitle-tests: New file.
11231         * tests/unicase/test-u8-totitle.c: New file.
11232
11233         New module 'unicase/u32-totitle'.
11234         * lib/unicase/u32-totitle.c: New file.
11235         * modules/unicase/u32-totitle: New file.
11236
11237         New module 'unicase/u16-totitle'.
11238         * lib/unicase/u16-totitle.c: New file.
11239         * modules/unicase/u16-totitle: New file.
11240
11241         New module 'unicase/u8-totitle'.
11242         * lib/unicase/u8-totitle.c: New file.
11243         * lib/unicase/u-totitle.h: New file.
11244         * modules/unicase/u8-totitle: New file.
11245
11246         Tests for module 'unicase/u32-tolower'.
11247         * modules/unicase/u32-tolower-tests: New file.
11248         * tests/unicase/test-u32-tolower.c: New file.
11249
11250         Tests for module 'unicase/u16-tolower'.
11251         * modules/unicase/u16-tolower-tests: New file.
11252         * tests/unicase/test-u16-tolower.c: New file.
11253
11254         Tests for module 'unicase/u8-tolower'.
11255         * modules/unicase/u8-tolower-tests: New file.
11256         * tests/unicase/test-u8-tolower.c: New file.
11257
11258         New module 'unicase/u32-tolower'.
11259         * lib/unicase/u32-tolower.c: New file.
11260         * modules/unicase/u32-tolower: New file.
11261
11262         New module 'unicase/u16-tolower'.
11263         * lib/unicase/u16-tolower.c: New file.
11264         * modules/unicase/u16-tolower: New file.
11265
11266         New module 'unicase/u8-tolower'.
11267         * lib/unicase/u8-tolower.c: New file.
11268         * modules/unicase/u8-tolower: New file.
11269
11270         Tests for module 'unicase/u32-toupper'.
11271         * modules/unicase/u32-toupper-tests: New file.
11272         * tests/unicase/test-u32-toupper.c: New file.
11273
11274         Tests for module 'unicase/u16-toupper'.
11275         * modules/unicase/u16-toupper-tests: New file.
11276         * tests/unicase/test-u16-toupper.c: New file.
11277
11278         Tests for module 'unicase/u8-toupper'.
11279         * modules/unicase/u8-toupper-tests: New file.
11280         * tests/unicase/test-u8-toupper.c: New file.
11281
11282         New module 'unicase/u32-toupper'.
11283         * lib/unicase/u32-toupper.c: New file.
11284         * modules/unicase/u32-toupper: New file.
11285
11286         New module 'unicase/u16-toupper'.
11287         * lib/unicase/u16-toupper.c: New file.
11288         * modules/unicase/u16-toupper: New file.
11289
11290         New module 'unicase/u8-toupper'.
11291         * lib/unicase/u8-toupper.c: New file.
11292         * modules/unicase/u8-toupper: New file.
11293
11294         New module 'unicase/u32-casemap'.
11295         * lib/unicase/u32-casemap.c: New file.
11296         * modules/unicase/u32-casemap: New file.
11297
11298         New module 'unicase/u16-casemap'.
11299         * lib/unicase/u16-casemap.c: New file.
11300         * modules/unicase/u16-casemap: New file.
11301
11302         New module 'unicase/u8-casemap'.
11303         * lib/unicase/unicasemap.h: New file.
11304         * lib/unicase/u8-casemap.c: New file.
11305         * lib/unicase/u-casemap.h: New file.
11306         * modules/unicase/u8-casemap: New file.
11307
11308         New module 'unicase/special-casing'.
11309         * lib/unicase/special-casing.h: New file.
11310         * lib/unicase/special-casing.c: New file.
11311         * lib/unicase/special-casing-table.gperf: New file, generated by
11312         gen-uni-tables.c.
11313         * modules/unicase/special-casing: New file.
11314
11315         Tests for module 'unicase/locale-language'.
11316         * modules/unicase/locale-language-tests: New file.
11317         * tests/unicase/test-locale-language.sh: New file.
11318         * tests/unicase/test-locale-language.c: New file.
11319
11320         New module 'unicase/locale-language'.
11321         * lib/unicase/locale-language.c: New file.
11322         * lib/unicase/locale-languages.gperf: New file.
11323         * modules/unicase/locale-language: New file.
11324
11325         Generate more tables for case conversion and case folding.
11326         * lib/gen-uni-tables.c (SCC_*): New enum items.
11327         (struct special_casing_rule): New type.
11328         (casing_rules, num_casing_rules, allocated_casing_rules): New
11329         variables.
11330         (add_casing_rule, fill_casing_rules): New functions.
11331         (struct casefold_rule): New type.
11332         (casefolding_rules, num_casefolding_rules,
11333         allocated_casefolding_rules): New variables.
11334         (fill_casefolding_rules): New function.
11335         (unicode_casefold): New variable.
11336         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
11337         sort_casing_rules, output_casing_rules): New functions.
11338         (main): Accept to more arguments: SpecialCasing.txt and
11339         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
11340         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
11341         Output mapping for casefolding.
11342
11343         * lib/unicase.h: Include stdbool.h, uninorm.h.
11344         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
11345         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
11346         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
11347         arguments.
11348         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
11349         resultp arguments.
11350         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
11351         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
11352         resultp arguments.
11353         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
11354         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
11355         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
11356         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
11357         declarations.
11358         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
11359
11360 2009-03-08  Bruno Haible  <bruno@clisp.org>
11361
11362         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
11363         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
11364         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
11365         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
11366
11367 2009-03-07  Bruno Haible  <bruno@clisp.org>
11368
11369         Adjust u*_normcmp, u*_normcoll API.
11370         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
11371         u16_normcoll, u32_normcoll): Change failure conventions.
11372         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
11373         errno and return -1.
11374         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
11375
11376 2009-03-07  Bruno Haible  <bruno@clisp.org>
11377
11378         Tests for module 'uninorm/u32-normcoll'.
11379         * modules/uninorm/u32-normcoll-tests: New file.
11380         * tests/uninorm/test-u32-normcoll.c: New file.
11381
11382         Tests for module 'uninorm/u16-normcoll'.
11383         * modules/uninorm/u16-normcoll-tests: New file.
11384         * tests/uninorm/test-u16-normcoll.c: New file.
11385
11386         Tests for module 'uninorm/u8-normcoll'.
11387         * modules/uninorm/u8-normcoll-tests: New file.
11388         * tests/uninorm/test-u8-normcoll.c: New file.
11389
11390 2009-03-07  Bruno Haible  <bruno@clisp.org>
11391
11392         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
11393         tests/uninorm/test-u32-normcmp.c.
11394         * tests/uninorm/test-u32-normcmp.c: Include it.
11395         (test_nonascii): New function, extracted from main. Add some more
11396         tests.
11397         (main): Invoke test_ascii and test_nonascii.
11398         * modules/uninorm/u32-normcmp-tests (Files): Add
11399         tests/uninorm/test-u32-normcmp.h.
11400         (Depends-on): Remove uninorm/u32-normcmp.
11401
11402         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
11403         tests/uninorm/test-u16-normcmp.c.
11404         * tests/uninorm/test-u16-normcmp.c: Include it.
11405         (test_nonascii): New function, extracted from main. Add some more
11406         tests.
11407         (main): Invoke test_ascii and test_nonascii.
11408         * modules/uninorm/u16-normcmp-tests (Files): Add
11409         tests/uninorm/test-u16-normcmp.h.
11410         (Depends-on): Remove uninorm/u16-normcmp.
11411
11412         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
11413         tests/uninorm/test-u8-normcmp.c.
11414         * tests/uninorm/test-u8-normcmp.c: Include it.
11415         (test_nonascii): New function, extracted from main. Add some more
11416         tests.
11417         (main): Invoke test_ascii and test_nonascii.
11418         * modules/uninorm/u8-normcmp-tests (Files): Add
11419         tests/uninorm/test-u8-normcmp.h.
11420         (Depends-on): Remove uninorm/u8-normcmp.
11421
11422 2009-03-07  Bruno Haible  <bruno@clisp.org>
11423
11424         New module 'uninorm/u32-normcoll'.
11425         * lib/uninorm/u32-normcoll.c: New file.
11426         * modules/uninorm/u32-normcoll: New file.
11427
11428         New module 'uninorm/u16-normcoll'.
11429         * lib/uninorm/u16-normcoll.c: New file.
11430         * modules/uninorm/u16-normcoll: New file.
11431
11432         New module 'uninorm/u8-normcoll'.
11433         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
11434         declarations.
11435         * lib/uninorm/u8-normcoll.c: New file.
11436         * lib/uninorm/u-normcoll.h: New file.
11437         * modules/uninorm/u8-normcoll: New file.
11438
11439         New module 'uninorm/u32-normxfrm'.
11440         * lib/uninorm/u32-normxfrm.c: New file.
11441         * modules/uninorm/u32-normxfrm: New file.
11442
11443         New module 'uninorm/u16-normxfrm'.
11444         * lib/uninorm/u16-normxfrm.c: New file.
11445         * modules/uninorm/u16-normxfrm: New file.
11446
11447         New module 'uninorm/u8-normxfrm'.
11448         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
11449         declarations.
11450         * lib/uninorm/u8-normxfrm.c: New file.
11451         * lib/uninorm/u-normxfrm.h: New file.
11452         * modules/uninorm/u8-normxfrm: New file.
11453
11454 2009-03-07  Bruno Haible  <bruno@clisp.org>
11455
11456         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
11457         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
11458         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
11459
11460 2009-03-07  Bruno Haible  <bruno@clisp.org>
11461
11462         New module 'memxfrm'.
11463         * lib/memxfrm.h: New file.
11464         * lib/memxfrm.c: New file.
11465         * modules/memxfrm: New file.
11466
11467 2009-03-07  Bruno Haible  <bruno@clisp.org>
11468
11469         New module 'memcmp2'.
11470         * lib/memcmp2.h: New file.
11471         * lib/memcmp2.c: New file.
11472         * modules/memcmp2: New file.
11473
11474 2009-03-07  Bruno Haible  <bruno@clisp.org>
11475
11476         Tests for module 'uninorm/decomposing-form'.
11477         * modules/uninorm/decomposing-form-tests: New file.
11478         * tests/uninorm/test-decomposing-form.c: New file.
11479
11480         New module 'uninorm/decomposing-form'.
11481         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
11482         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
11483         Add 'decomposing_variant' field.
11484         * lib/uninorm/decomposing-form.c: New file.
11485         * lib/uninorm/nfc.c (uninorm_nfc): Update.
11486         * lib/uninorm/nfd.c (uninorm_nfd): Update.
11487         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
11488         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
11489         * modules/uninorm/decomposing-form: New file.
11490         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
11491         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
11492
11493 2009-03-07  Bruno Haible  <bruno@clisp.org>
11494
11495         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
11496         strings.
11497
11498 2009-03-06  Bruno Haible  <bruno@clisp.org>
11499
11500         Tests for module 'uninorm/u32-normcmp'.
11501         * tests/uninorm/test-u32-normcmp.c: New file.
11502         * modules/uninorm/u32-normcmp-tests: New file.
11503
11504         Tests for module 'uninorm/u16-normcmp'.
11505         * tests/uninorm/test-u16-normcmp.c: New file.
11506         * modules/uninorm/u16-normcmp-tests: New file.
11507
11508         Tests for module 'uninorm/u8-normcmp'.
11509         * tests/uninorm/test-u8-normcmp.c: New file.
11510         * modules/uninorm/u8-normcmp-tests: New file.
11511
11512         New module 'uninorm/u32-normcmp'.
11513         * lib/uninorm/u32-normcmp.c: New file.
11514         * modules/uninorm/u32-normcmp: New file.
11515
11516         New module 'uninorm/u16-normcmp'.
11517         * lib/uninorm/u16-normcmp.c: New file.
11518         * modules/uninorm/u16-normcmp: New file.
11519
11520         New module 'uninorm/u8-normcmp'.
11521         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
11522         declarations.
11523         * lib/uninorm/u8-normcmp.c: New file.
11524         * lib/uninorm/u-normcmp.h: New file.
11525         * modules/uninorm/u8-normcmp: New file.
11526
11527 2009-03-06  Bruno Haible  <bruno@clisp.org>
11528
11529         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
11530         Reported by Eric Blake.
11531
11532 2009-03-06  Eric Blake  <ebb9@byu.net>
11533             Bruno Haible  <bruno@clisp.org>
11534
11535         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
11536         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
11537         condition.
11538         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
11539         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
11540         condition.
11541         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
11542
11543 2009-03-06  Eric Blake  <ebb9@byu.net>
11544
11545         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
11546         to avoid compiler warnings.
11547         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
11548
11549 2009-03-05  Bruno Haible  <bruno@clisp.org>
11550
11551         * tests/test-ftell.c (main): Disable test beyond end of file on
11552         FreeMiNT.
11553         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
11554
11555 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
11556
11557         * lib/filevercmp.c: Move hidden files up in ordering.
11558         * tests/test-filevercmp.c: Add tests for hidden files.
11559
11560 2009-03-04  Bruno Haible  <bruno@clisp.org>
11561
11562         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
11563         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
11564         AM_CFLAGS.
11565         Reported by Simon Josefsson.
11566
11567 2009-03-03  Bruno Haible  <bruno@clisp.org>
11568
11569         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
11570         Reported by Simon Josefsson.
11571
11572         * doc/ld-version-script.texi: Update node reference.
11573
11574 2009-03-03  Bruno Haible  <bruno@clisp.org>
11575
11576         * modules/visibility (License): Change to 'unlimited'.
11577         Suggested by Simon Josefsson.
11578
11579 2009-03-03  Jim Meyering  <meyering@redhat.com>
11580
11581         unlinkdir: cannot_unlink_dir may modify process state
11582         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
11583         it's neither thread-safe nor appropriate for use in a library.
11584
11585 2009-03-03  Eric Blake  <ebb9@byu.net>
11586
11587         test-closein: silence test under Darwin
11588         * tests/test-closein.sh: Ignore stderr from cat, since we don't
11589         care if it dies from EPIPE or EBADF.
11590
11591 2009-03-03  Bruno Haible  <bruno@clisp.org>
11592
11593         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
11594         earlier.
11595         * doc/visibility.texi: Fix @node and @section.
11596
11597 2009-03-03  Simon Josefsson  <simon@josefsson.org>
11598
11599         * doc/gnulib.texi: Link to sections for ld version script and
11600         visibility.
11601         * doc/visibility.texi: Add @node and @section.
11602         * modules/ld-version-script: New module.
11603         * m4/ld-version-script.m4: New file.
11604         * doc/ld-version-script.texi: New file.
11605
11606 2009-03-02  David Lutterkort  <lutter@redhat.com>
11607
11608         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
11609         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11610
11611 2009-03-02  Bruno Haible  <bruno@clisp.org>
11612
11613         * doc/visibility.texi: Mention libtool's -export-symbols option.
11614
11615 2009-03-02  Jim Meyering  <meyering@redhat.com>
11616
11617         announce-gen: new option: --no-print-checksums
11618         * build-aux/announce-gen (usage): Describe it.
11619         (print_checksums): Print a newline here, not in the [*] footnote.
11620         (main): Honor it.
11621
11622 2009-03-01  Bruno Haible  <bruno@clisp.org>
11623
11624         Use socklen_t in the native Windows replacements prototypes.
11625         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
11626         instead of 'int'.
11627         * lib/getsockopt.c (rpl_getsockopt): Likewise.
11628         * lib/setsockopt.c (rpl_setsockopt): Likewise.
11629         * modules/getsockopt (Depends-on): Add socklen.
11630         * modules/setsockopt (Depends-on): Add socklen.
11631
11632 2009-03-01  Bruno Haible  <bruno@clisp.org>
11633
11634         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
11635         least 4.2.
11636
11637 2009-03-01  Eric Blake  <ebb9@byu.net>
11638             Bruno Haible  <bruno@clisp.org>
11639
11640         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
11641         error messages.
11642         * lib/wait-process.c (wait_subprocess): Omit error message about
11643         deadly signal sent to the child of termsigp != NULL.
11644
11645 2009-03-01  Eric Blake  <ebb9@byu.net>
11646
11647         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
11648
11649 2009-03-01  Bruno Haible  <bruno@clisp.org>
11650
11651         Avoid a gcc warning.
11652         * tests/test-sched.c (b): Make global.
11653         Reported by Eric Blake.
11654
11655 2009-01-19  Martin Lambers  <marlam@marlam.de>
11656
11657         Provide POSIX semantics for socket timeout options on W32.
11658         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
11659         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
11660         * modules/setsockopt: Depend on sys_time module for struct timeval.
11661         * modules/getsockopt: Depend on sys_time module for struct timeval.
11662
11663 2009-03-01  Simon Josefsson  <simon@josefsson.org>
11664
11665         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
11666         __USE_GNU, for consistency with netdb.in.h.
11667         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11668
11669 2009-03-01  Bruno Haible  <bruno@clisp.org>
11670
11671         More support for FreeMiNT.
11672         * lib/fseeko.c (rpl_fseeko): Complete last commit.
11673         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11674
11675 2009-03-01  Bruno Haible  <bruno@clisp.org>
11676
11677         More support for FreeMiNT.
11678         * lib/fpurge.c (fpurge): Correct last commit.
11679         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11680
11681 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11682
11683         Fix unportable awk script in vc-list-files.
11684         * build-aux/vc-list-files: In the replacement awk script, use
11685         substr with a second argument of 1, not zero.
11686         Report by Simon Josefsson.
11687
11688 2009-02-28  Bruno Haible  <bruno@clisp.org>
11689
11690         More support for FreeMiNT.
11691         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
11692         to FreeMiNT today.
11693         * lib/fwriting.c (fwriting): Likewise.
11694         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
11695
11696 2009-02-28  Bruno Haible  <bruno@clisp.org>
11697
11698         * tests/test-freadseek.c (main): Disable test beyond end of file on
11699         FreeMiNT.
11700         * tests/test-ftello.c (main): Likewise.
11701         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
11702
11703 2009-02-28  Bruno Haible  <bruno@clisp.org>
11704
11705         Add tentative support for FreeMiNT.
11706         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
11707         * lib/fpurge.c (fpurge): Likewise.
11708         * lib/freadable.c (freadable): Likewise.
11709         * lib/freading.c (freading): Likewise.
11710         * lib/freadptr.c (freadptr): Likewise.
11711         * lib/freadseek.c (freadptrinc): Likewise.
11712         * lib/fseeko.c (rpl_fseeko): Likewise.
11713         * lib/fseterr.c (fseterr): Likewise.
11714         * lib/fwritable.c (fwritable): Likewise.
11715         * lib/fwriting.c (fwriting): Likewise.
11716         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
11717         Hourihane.
11718         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11719
11720 2009-02-28  Bruno Haible  <bruno@clisp.org>
11721
11722         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
11723         SIGCHLD.
11724         Reported by Jim Meyering.
11725
11726 2009-02-28  Bruno Haible  <bruno@clisp.org>
11727
11728         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
11729         Mention the results of these tests on various platforms.
11730         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
11731         order.
11732         * doc/posix-functions/printf.texi: Likewise.
11733         * doc/posix-functions/snprintf.texi: Likewise.
11734         * doc/posix-functions/sprintf.texi: Likewise.
11735         * doc/posix-functions/vfprintf.texi: Likewise.
11736         * doc/posix-functions/vprintf.texi: Likewise.
11737         * doc/posix-functions/vsnprintf.texi: Likewise.
11738         * doc/posix-functions/vsprintf.texi: Likewise.
11739         * doc/glibc-functions/obstack_printf.texi: Likewise.
11740         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
11741
11742 2009-02-28  Bruno Haible  <bruno@clisp.org>
11743
11744         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
11745         Reported by Loïc Minier <lool@dooz.org>.
11746
11747 2009-02-27  Bruno Haible  <bruno@clisp.org>
11748
11749         * gnulib-tool (func_import): Make the sed expression used to create the
11750         sed script for updating the .gitignore file POSIX compliant.
11751         Reported by Eric Blake.
11752
11753 2009-02-27  Bruno Haible  <bruno@clisp.org>
11754
11755         * gnulib-tool (sed): Don't alias as "sed --posix".
11756         Reported by Eric Blake.
11757
11758 2009-02-27  Bruno Haible  <bruno@clisp.org>
11759
11760         Avoid test link errors.
11761         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
11762         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
11763         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
11764         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
11765         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11766
11767 2009-02-27  Bruno Haible  <bruno@clisp.org>
11768
11769         Avoid spurious "(cached)" in configure output.
11770         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
11771         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
11772         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
11773         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
11774         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
11775         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
11776         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
11777         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
11778         Reported by Eric Blake.
11779
11780 2009-02-27  Eric Blake  <ebb9@byu.net>
11781
11782         printf: fix regression in previous patch
11783         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
11784
11785 2009-02-27  Bruno Haible  <bruno@clisp.org>
11786
11787         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
11788         value.
11789         * lib/stdint.in.h: Likewise.
11790         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
11791
11792 2009-02-27  Eric Blake  <ebb9@byu.net>
11793
11794         doc: mention more functions added in cygwin 1.7.0
11795         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
11796         addition.
11797         * doc/posix-functions/open_wmemstream.texi: Likewise.
11798         * doc/posix-functions/wcsnlen.texi: Likewise.
11799         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11800         * doc/posix-functions/wcstod.texi: Likewise.
11801         * doc/posix-functions/wcstof.texi: Likewise.
11802         * doc/posix-functions/wcstoimax.texi: Likewise.
11803         * doc/posix-functions/wcstok.texi: Likewise.
11804         * doc/posix-functions/wcstoumax.texi: Likewise.
11805
11806         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
11807         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
11808         * doc/posix-functions/fprintf.texi: Update.
11809         * doc/posix-functions/printf.texi: Update.
11810         * doc/posix-functions/snprintf.texi: Update.
11811         * doc/posix-functions/sprintf.texi: Update.
11812         * doc/posix-functions/vfprintf.texi: Update.
11813         * doc/posix-functions/vprintf.texi: Update.
11814         * doc/posix-functions/vsnprintf.texi: Update.
11815         * doc/posix-functions/vsprintf.texi: Update.
11816         * doc/glibc-functions/obstack_printf.texi: Update.
11817         * doc/glibc-functions/obstack_vprintf.texi: Update.
11818
11819 2009-02-26  Eric Blake  <ebb9@byu.net>
11820
11821         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
11822         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
11823         compilation bug by using runtime conversion.
11824         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
11825         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
11826         * modules/ceill-tests (Files): Use nan.h.
11827         * modules/floorl-tests (Files): Likewise.
11828         * modules/frexpl-tests (Files): Likewise.
11829         * modules/isnanl-tests (Files): Likewise.
11830         * modules/ldexpl-tests (Files): Likewise.
11831         * modules/roundl-tests (Files): Likewise.
11832         * modules/truncl-tests (Files): Likewise.
11833         * tests/test-ceill.c (main): Use a working NaN.
11834         * tests/test-floorl.c (main): Likewise.
11835         * tests/test-frexpl.c (main): Likewise.
11836         * tests/test-isnan.c (test_long_double): Likewise.
11837         * tests/test-isnanl.h (main): Likewise.
11838         * tests/test-ldexpl.h (main): Likewise.
11839         * tests/test-roundl.h (main): Likewise.
11840         * tests/test-truncl.h (main): Likewise.
11841         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
11842
11843 2009-02-26  Eric Blake  <ebb9@byu.net>
11844             Bruno Haible  <bruno@clisp.org>
11845
11846         Work around a *printf bug with %ls on Solaris.
11847         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
11848         precision is specified, sprintf stops converting the wide string
11849         argument when the number of bytes that have been produced by this
11850         conversion equals or exceeds the precision.
11851         * doc/posix-functions/fprintf.texi: Update.
11852         * doc/posix-functions/printf.texi: Update.
11853         * doc/posix-functions/snprintf.texi: Update.
11854         * doc/posix-functions/sprintf.texi: Update.
11855         * doc/posix-functions/vfprintf.texi: Update.
11856         * doc/posix-functions/vprintf.texi: Update.
11857         * doc/posix-functions/vsnprintf.texi: Update.
11858         * doc/posix-functions/vsprintf.texi: Update.
11859         * doc/glibc-functions/obstack_printf.texi: Update.
11860         * doc/glibc-functions/obstack_vprintf.texi: Update.
11861
11862 2009-02-26  Eric Blake  <ebb9@byu.net>
11863
11864         stdlib: favor compiler check of random.h
11865         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
11866         to avoid an ObjC random.h installed by Swarm.
11867
11868 2009-02-26  Bruno Haible  <bruno@clisp.org>
11869
11870         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
11871         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
11872         Reported by Gary V. Vaughan <gary@gnu.org>.
11873
11874 2009-02-26  Bruno Haible  <bruno@clisp.org>
11875
11876         Fix *printf behaviour regarding the %ls directive.
11877         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
11878         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
11879         NEED_PRINTF_DIRECTIVE_LS.
11880         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
11881         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
11882         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
11883         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
11884         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
11885         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
11886         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
11887         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
11888         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11889         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11890         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11891         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
11892         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11893         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11894         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11895         * doc/posix-functions/fprintf.texi: Update.
11896         * doc/posix-functions/printf.texi: Update.
11897         * doc/posix-functions/snprintf.texi: Update.
11898         * doc/posix-functions/sprintf.texi: Update.
11899         * doc/posix-functions/vfprintf.texi: Update.
11900         * doc/posix-functions/vprintf.texi: Update.
11901         * doc/posix-functions/vsnprintf.texi: Update.
11902         * doc/posix-functions/vsprintf.texi: Update.
11903         * doc/glibc-functions/obstack_printf.texi: Update.
11904         * doc/glibc-functions/obstack_vprintf.texi: Update.
11905         Reported by Eric Blake.
11906
11907 2009-02-25  Bruno Haible  <bruno@clisp.org>
11908
11909         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
11910         with known value.
11911         Reported by Gary V. Vaughan <gary@gnu.org>.
11912
11913 2009-02-25  Bruno Haible  <bruno@clisp.org>
11914
11915         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
11916         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
11917         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
11918         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
11919         Reported by Gary V. Vaughan <gary@gnu.org>.
11920
11921 2009-02-25  Bruno Haible  <bruno@clisp.org>
11922
11923         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
11924         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
11925         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
11926         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
11927         Reported by Gary V. Vaughan <gary@gnu.org>.
11928
11929 2009-02-25  Eric Blake  <ebb9@byu.net>
11930
11931         tests: skip fseek/ftell tests if ungetc is broken
11932         * m4/ungetc.m4: New file.
11933         * modules/fseek-tests: Split test, so ungetc dependency is
11934         separate from rest of test.
11935         * modules/fseeko-tests: Likewise.
11936         * modules/ftell-tests: Likewise.
11937         * modules/ftello-tests: Likewise.
11938         * tests/test-fseek.c (main): Isolate ungetc dependency.
11939         * tests/test-fseeko.c (main): Likewise.
11940         * tests/test-ftell.c (main): Likewise.
11941         * tests/test-ftello.c (main): Likewise.
11942         * tests/test-fseek2.sh: New file.
11943         * tests/test-fseeko2.sh: Likewise.
11944         * tests/test-ftell2.sh: Likewise.
11945         * tests/test-ftello2.sh: Likewise.
11946
11947 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
11948
11949         test-getaddrinfo: fix usage of skip return code 77
11950         * tests/test-gettaddrinfo.c: Return skip code 77 only
11951         for first occurance of skip (4x77 is not 77)
11952
11953 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
11954
11955         strtod: avoid C99 decl-after-statement
11956         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
11957
11958 2009-02-24  Eric Blake  <ebb9@byu.net>
11959
11960         strtod: detect HP-UX 11.31 bug
11961         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
11962         Reported by Gary V. Vaughan.
11963
11964 2009-02-23  Bruno Haible  <bruno@clisp.org>
11965
11966         Fix invalid read past end of memory block.
11967         * lib/vasnprintf.c (DCHAR_SET): Define.
11968         (local_wcslen): Define only when needed.
11969         (local_strnlen, local_wcsnlen): New functions.
11970         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
11971         directives that involve a conversion ourselves.
11972         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
11973         wcsnlen, mbrtowc, wcrtomb.
11974         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
11975         * tests/test-vasprintf-posix.c (test_function): Likewise.
11976         * tests/test-snprintf-posix.h (test_function): Likewise.
11977         * tests/test-sprintf-posix.h (test_function): Likewise.
11978         Reported by Ben Pfaff <blp@cs.stanford.edu>.
11979
11980 2009-02-22  Bruno Haible  <bruno@clisp.org>
11981
11982         Implement new clarified decomposition of Hangul syllables.
11983         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
11984         of type LTV, return only a pairwise decomposition.
11985         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
11986         Likewise.
11987         * tests/uninorm/test-decomposition.c (main): Updated expected result.
11988         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
11989         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
11990
11991 2009-02-22  Bruno Haible  <bruno@clisp.org>
11992
11993         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
11994         zero-length results and shrink excess allocated memory.
11995         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
11996         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
11997         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
11998         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
11999         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
12000         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
12001         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
12002         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
12003         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
12004         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
12005         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
12006         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
12007
12008 2009-02-21  Bruno Haible  <bruno@clisp.org>
12009
12010         * doc/gnulib.texi: Include safe-alloc.texi earlier.
12011         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
12012         spaces after a period. Put a space between a macro name and its
12013         argument list. Trivial rewordings.
12014         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
12015         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
12016         (main): Return 0 explicitly.
12017
12018 2009-02-21  Bruno Haible  <bruno@clisp.org>
12019
12020         Tests for module 'uninorm/filter'.
12021         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
12022         * modules/uninorm/filter-tests: New file.
12023
12024         New module 'uninorm/filter'.
12025         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
12026         uninorm_filter_flush, uninorm_filter_free): New declarations.
12027         * lib/uninorm/uninorm-filter.c: New file.
12028         * modules/uninorm/filter: New file.
12029
12030 2009-02-21  Bruno Haible  <bruno@clisp.org>
12031
12032         Tests for module 'uninorm/nfkc'.
12033         * tests/uninorm/test-nfkc.c: New file.
12034         * tests/uninorm/test-u8-nfkc.c: New file.
12035         * tests/uninorm/test-u16-nfkc.c: New file.
12036         * tests/uninorm/test-u32-nfkc.c: New file.
12037         * tests/uninorm/test-u32-nfkc-big.sh: New file.
12038         * tests/uninorm/test-u32-nfkc-big.c: New file.
12039         * modules/uninorm/nfkc-tests: New file.
12040
12041         New module 'uninorm/nfkc'.
12042         * lib/uninorm/nfkc.c: New file.
12043         * modules/uninorm/nfkc: New file.
12044
12045         Tests for module 'uninorm/nfkd'.
12046         * tests/uninorm/test-nfkd.c: New file.
12047         * tests/uninorm/test-u8-nfkd.c: New file.
12048         * tests/uninorm/test-u16-nfkd.c: New file.
12049         * tests/uninorm/test-u32-nfkd.c: New file.
12050         * tests/uninorm/test-u32-nfkd-big.sh: New file.
12051         * tests/uninorm/test-u32-nfkd-big.c: New file.
12052         * modules/uninorm/nfkd-tests: New file.
12053
12054         New module 'uninorm/nfkd'.
12055         * lib/uninorm/nfkd.c: New file.
12056         * modules/uninorm/nfkd: New file.
12057
12058         Tests for module 'uninorm/nfc'.
12059         * tests/uninorm/test-nfc.c: New file.
12060         * tests/uninorm/test-u8-nfc.c: New file.
12061         * tests/uninorm/test-u16-nfc.c: New file.
12062         * tests/uninorm/test-u32-nfc.c: New file.
12063         * tests/uninorm/test-u32-nfc-big.sh: New file.
12064         * tests/uninorm/test-u32-nfc-big.c: New file.
12065         * modules/uninorm/nfc-tests: New file.
12066
12067         New module 'uninorm/nfc'.
12068         * lib/uninorm/nfc.c: New file.
12069         * modules/uninorm/nfc: New file.
12070
12071         Tests for module 'uninorm/nfd'.
12072         * tests/uninorm/test-nfd.c: New file.
12073         * tests/uninorm/test-u8-nfd.c: New file.
12074         * tests/uninorm/test-u16-nfd.c: New file.
12075         * tests/uninorm/test-u32-nfd.c: New file.
12076         * tests/uninorm/test-u32-nfd-big.sh: New file.
12077         * tests/uninorm/test-u32-nfd-big.c: New file.
12078         * tests/uninorm/test-u32-normalize-big.h: New file.
12079         * tests/uninorm/test-u32-normalize-big.c: New file.
12080         * tests/uninorm/NormalizationTest.txt: New file, created from
12081         Unicode 5.1.0 NormalizationTest.txt.
12082         * modules/uninorm/nfd-tests: New file.
12083
12084         New module 'uninorm/nfd'.
12085         * lib/uninorm/nfd.c: New file.
12086         * modules/uninorm/nfd: New file.
12087
12088         New module 'uninorm/u32-normalize'.
12089         * lib/uninorm/u32-normalize.c: New file.
12090         * modules/uninorm/u32-normalize: New file.
12091
12092         New module 'uninorm/u16-normalize'.
12093         * lib/uninorm/u16-normalize.c: New file.
12094         * modules/uninorm/u16-normalize: New file.
12095
12096         New module 'uninorm/u8-normalize'.
12097         * lib/uninorm/u8-normalize.c: New file.
12098         * lib/uninorm/normalize-internal.h: New file.
12099         * lib/uninorm/u-normalize-internal.h: New file.
12100         * modules/uninorm/u8-normalize: New file.
12101
12102         New module 'uninorm/decompose-internal'.
12103         * lib/uninorm/decompose-internal.c: New file.
12104         * modules/uninorm/decompose-internal: New file.
12105
12106         Tests for module 'uninorm/composition'.
12107         * tests/uninorm/test-composition.c: New file.
12108         * modules/uninorm/composition-tests: New file.
12109
12110         New module 'uninorm/composition'.
12111         * lib/uninorm/composition.c: New file.
12112         * lib/uninorm/composition-table.gperf: New file, generated by
12113         gen-uni-tables.
12114         * modules/uninorm/composition: New file.
12115
12116         Tests for module 'uninorm/compat-decomposition'.
12117         * tests/uninorm/test-compat-decomposition.c: New file.
12118         * modules/uninorm/compat-decomposition-tests: New file.
12119
12120         New module 'uninorm/compat-decomposition'.
12121         * lib/uninorm/decompose-internal.h: New file.
12122         * lib/uninorm/compat-decomposition.c: New file.
12123         * modules/uninorm/compat-decomposition: New file.
12124
12125         Tests for module 'uninorm/canonical-decomposition'.
12126         * tests/uninorm/test-canonical-decomposition.c: New file.
12127         * modules/uninorm/canonical-decomposition-tests: New file.
12128
12129         New module 'uninorm/canonical-decomposition'.
12130         * lib/uninorm/canonical-decomposition.c: New file.
12131         * modules/uninorm/canonical-decomposition: New file.
12132
12133         Tests for module 'uninorm/decomposition'.
12134         * tests/uninorm/test-decomposition.c: New file.
12135         * modules/uninorm/decomposition-tests: New file.
12136
12137         New module 'uninorm/decomposition'.
12138         * lib/uninorm/decomposition.c: New file.
12139         * modules/uninorm/decomposition: New file.
12140
12141         New module 'uninorm/decomposition-table'.
12142         * lib/uninorm/decomposition-table.h: New file.
12143         * lib/uninorm/decomposition-table.c: New file.
12144         * lib/uninorm/decomposition-table1.h: New file, generated by
12145         gen-uni-tables.
12146         * lib/uninorm/decomposition-table2.h: New file, generated by
12147         gen-uni-tables.
12148         * modules/uninorm/decomposition-table: New file.
12149
12150         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
12151         (UC_DECOMP_*): New enumeration items.
12152         (get_decomposition): New function.
12153         (struct decomp_table): New type.
12154         (output_decomposition, output_decomposition_tables): New functions.
12155         (unicode_composition_exclusions): New variable.
12156         (fill_composition_exclusions, debug_output_composition_tables): New
12157         functions.
12158         (main): Accept one more argument. Invoke fill_composition_exclusions.
12159         Output decomposition and composition tables.
12160
12161         New module 'uninorm/base'.
12162         * lib/uninorm.h: New file.
12163         * lib/unictype.h: Update comment.
12164         * modules/uninorm/base: New file.
12165
12166 2009-02-21  David Lutterkort  <lutter@redhat.com>
12167
12168         Tests for module 'safe-alloc'.
12169         * tests/test-safe-alloc.c: New file.
12170         * modules/safe-alloc-tests: New file.
12171
12172         New module 'safe-alloc'.
12173         * lib/safe-alloc.h: New file.
12174         * lib/safe-alloc.c: New file.
12175         * m4/safe-alloc.m4: New file.
12176         * modules/safe-alloc: New file.
12177         * doc/safe-alloc.texi: New file.
12178         * doc/gnulib.texi: Include it.
12179         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
12180         safe-alloc.
12181
12182 2009-02-18  Bruno Haible  <bruno@clisp.org>
12183
12184         Fix link error on non-glibc systems.
12185         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
12186         variable.
12187         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12188
12189 2009-02-18  Jim Meyering  <meyering@redhat.com>
12190
12191         fts: avoid used-uninitialized error due to recent change
12192         * lib/fts.c (fts_read): Guard uses of the new member,
12193         parent->fts_n_dirs_remaining, since it's not relevant for
12194         the parent of a directory specified on the command-line.
12195
12196 2009-02-17  James Youngman  <jay@gnu.org>
12197             Bruno Haible  <bruno@clisp.org>
12198
12199         * m4/include_next.m4: Reformulate comment.
12200
12201 2009-02-16  Jim Meyering  <meyering@redhat.com>
12202
12203         fts: add #if guards so that the fts_lgpl module still builds
12204         * lib/fts.c: Guard just-added hash-table-using parts with
12205         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
12206         Reported by Simon Josefsson.
12207
12208 2009-02-15  Bruno Haible  <bruno@clisp.org>
12209
12210         * modules/array-mergesort-tests: New file.
12211         * tests/test-array-mergesort.c: New file.
12212
12213         New module 'array-mergesort'.
12214         * modules/array-mergesort: New file.
12215         * lib/array-mergesort.h: New file.
12216
12217 2009-02-15  Bruno Haible  <bruno@clisp.org>
12218
12219         Fix 2009-02-07 commit.
12220         * lib/gen-uni-tables.c (output_predicate, output_category,
12221         output_combclass, output_bidi_category, output_decimal_digit,
12222         output_digit, output_numeric, output_mirror, output_scripts,
12223         output_ident_category, output_simple_mapping): Fix format directives.
12224         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
12225
12226 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
12227
12228         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
12229         fixes are available from IBM.
12230
12231 2009-02-13  Jim Meyering  <meyering@redhat.com>
12232
12233         fts: arrange not to stat non-directories in more cases
12234         This makes GNU find (when it doesn't need to stat each file)
12235         *much* more efficient at traversing reiserfs file systems.
12236         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
12237         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
12238         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
12239         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
12240         (leaf_optimization_applies): New function.
12241         (LCO_hash, LCO_compare): New helper functions.
12242         (link_count_optimize_ok): New function.
12243         (fts_stat): Initialize new member (if dir).
12244         (fts_read): Decrement parent's fts_n_dirs_remaining count if
12245         we've just stat'ed a directory.  Skip the stat call when possible.
12246         ---
12247         Note this AFS-related exchange:
12248         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
12249         and note find's pioctl call in find/fstype.c.
12250         But that is necessary only if you want to enable the
12251         optimization for AFS, and for now, I don't.
12252
12253         fts: move a function definition "up" (no semantic change)
12254         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
12255         "up" to precede upcoming use of a related function.
12256
12257 2009-02-11  Jim Meyering  <meyering@redhat.com>
12258
12259         fts: correct internal computation of nlinks (optimization-related)
12260         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
12261         whether the current entry is a directory, so don't test it.
12262
12263 2009-02-10  Bruno Haible  <bruno@clisp.org>
12264
12265         Tests for module 'uniwbrk/ulc-wordbreaks'.
12266         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
12267         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
12268         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
12269
12270         Tests for module 'uniwbrk/u32-wordbreaks'.
12271         * modules/uniwbrk/u32-wordbreaks-tests: New file.
12272         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
12273
12274         Tests for module 'uniwbrk/u16-wordbreaks'.
12275         * modules/uniwbrk/u16-wordbreaks-tests: New file.
12276         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
12277
12278         Tests for module 'uniwbrk/u8-wordbreaks'.
12279         * modules/uniwbrk/u8-wordbreaks-tests: New file.
12280         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
12281
12282 2009-02-10  Bruno Haible  <bruno@clisp.org>
12283
12284         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
12285         property.
12286         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
12287         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
12288         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
12289
12290 2009-02-10  Simon Josefsson  <simon@josefsson.org>
12291
12292         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
12293         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
12294
12295 2009-02-10  Bruno Haible  <bruno@clisp.org>
12296
12297         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
12298         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
12299         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
12300         * lib/unilbrk/u8-possible-linebreaks.c: Update.
12301         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
12302         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
12303
12304 2009-02-09  Simon Josefsson  <simon@josefsson.org>
12305
12306         * lib/sockets.h (gl_fd_to_handle): New function.
12307
12308         * tests/test-sockets.c: Call gl_fd_to_handle.
12309
12310 2009-02-09  Bruno Haible  <bruno@clisp.org>
12311
12312         * doc/havelib.texi: Document the conventions on bi-arch systems.
12313
12314 2009-02-08  Bruno Haible  <bruno@clisp.org>
12315
12316         Document the AC_LIB_LINKFLAGS macro.
12317         * doc/havelib.texi: New file, mostly written on 2005-05-24.
12318         * doc/gnulib.texi: Include it.
12319
12320 2009-02-08  Bruno Haible  <bruno@clisp.org>
12321
12322         Fix wrong order of sections, compared to TOC.
12323         * doc/gnulib.texi: Include relocatable-maint.texi after the
12324         "Regular expressions" node, not before.
12325
12326 2009-02-08  Bruno Haible  <bruno@clisp.org>
12327
12328         Tests for module 'unicase/totitle'.
12329         * modules/unicase/totitle-tests: New file.
12330
12331         Tests for module 'unicase/tolower'.
12332         * modules/unicase/tolower-tests: New file.
12333
12334         Tests for module 'unicase/toupper'.
12335         * modules/unicase/toupper-tests: New file.
12336         * tests/unicase/test-mapping-part1.h: New file.
12337         * tests/unicase/test-mapping-part2.h: New file.
12338
12339         New module 'unicase/totitle'.
12340         * modules/unicase/totitle: New file.
12341         * lib/unicase/totitle.c: New file.
12342
12343         New module 'unicase/tolower'.
12344         * modules/unicase/tolower: New file.
12345         * lib/unicase/tolower.c: New file.
12346
12347         New module 'unicase/toupper'.
12348         * modules/unicase/toupper: New file.
12349         * lib/unicase/toupper.c: New file.
12350         * lib/unicase/simple-mapping.h: New file.
12351
12352         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
12353         (mapping_table): New structure.
12354         (output_simple_mapping): New function.
12355         (main): Invoke output_simple_mapping_test and output_simple_mapping.
12356         * modules/gen-uni-tables (Description): Update.
12357         * lib/unicase/toupper.h: New file, automatically generated by
12358         gen-uni-tables.
12359         * lib/unicase/tolower.h: New file, automatically generated by
12360         gen-uni-tables.
12361         * lib/unicase/totitle.h: New file, automatically generated by
12362         gen-uni-tables.
12363         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
12364         gen-uni-tables.
12365         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
12366         gen-uni-tables.
12367         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
12368         gen-uni-tables.
12369
12370         New module 'unicase/base'.
12371         * modules/unicase/base: New file.
12372         * lib/unicase.h: New file.
12373
12374 2009-02-08  Bruno Haible  <bruno@clisp.org>
12375
12376         New module 'uniwbrk/ulc-wordbreaks'.
12377         * modules/uniwbrk/ulc-wordbreaks: New file.
12378         * lib/uniwbrk/ulc-wordbreaks.c: New file.
12379
12380         New module 'uniwbrk/u32-wordbreaks'.
12381         * modules/uniwbrk/u32-wordbreaks: New file.
12382         * lib/uniwbrk/u32-wordbreaks.c: New file.
12383
12384         New module 'uniwbrk/u16-wordbreaks'.
12385         * modules/uniwbrk/u16-wordbreaks: New file.
12386         * lib/uniwbrk/u16-wordbreaks.c: New file.
12387
12388         New module 'uniwbrk/u8-wordbreaks'.
12389         * modules/uniwbrk/u8-wordbreaks: New file.
12390         * lib/uniwbrk/u8-wordbreaks.c: New file.
12391         * lib/uniwbrk/u-wordbreaks.h: New file.
12392
12393         New module 'uniwbrk/table'.
12394         * modules/uniwbrk/table: New file.
12395         * lib/uniwbrk/wbrktable.h: New file.
12396         * lib/uniwbrk/wbrktable.c: New file.
12397
12398         New module 'uniwbrk/wordbreak-property'.
12399         * modules/uniwbrk/wordbreak-property: New file.
12400         * lib/uniwbrk/wordbreak-property.c: New file.
12401
12402         * lib/gen-uni-tables.c (WBP_*): New enum items.
12403         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
12404         (unicode_org_wbp): New variable.
12405         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
12406         New functions.
12407         (wbp_table): New structure.
12408         (output_wbp, output_wbrk_tables): New functions.
12409         (main): Accept additional argument. Invoke fill_org_wbp,
12410         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
12411         output_wbrk_tables.
12412         * modules/gen-uni-tables (Description): Update.
12413         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
12414         gen-uni-tables.
12415
12416         New module 'uniwbrk/base'.
12417         * modules/uniwbrk/base: New file.
12418         * lib/uniwbrk.h: New file.
12419
12420 2009-02-08  Bruno Haible  <bruno@clisp.org>
12421
12422         Update to Unicode 5.1.0.
12423         * lib/gen-uni-tables.c (is_property_alphabetic): Include
12424         U+2185..U+2188.
12425         (is_property_default_ignorable_code_point): Don't include characters
12426         of category Cc or Cs and not-a-characters.
12427         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
12428         U+0D79, U+109E, U+109F, U+A60C.
12429         * lib/unictype/bidi_of.h: Regenerated.
12430         * lib/unictype/blocks.h: Regenerated.
12431         * lib/unictype/categ_C.h: Regenerated.
12432         * lib/unictype/categ_Cf.h: Regenerated.
12433         * lib/unictype/categ_Cn.h: Regenerated.
12434         * lib/unictype/categ_L.h: Regenerated.
12435         * lib/unictype/categ_Ll.h: Regenerated.
12436         * lib/unictype/categ_Lm.h: Regenerated.
12437         * lib/unictype/categ_Lo.h: Regenerated.
12438         * lib/unictype/categ_Lu.h: Regenerated.
12439         * lib/unictype/categ_M.h: Regenerated.
12440         * lib/unictype/categ_Mc.h: Regenerated.
12441         * lib/unictype/categ_Me.h: Regenerated.
12442         * lib/unictype/categ_Mn.h: Regenerated.
12443         * lib/unictype/categ_N.h: Regenerated.
12444         * lib/unictype/categ_Nd.h: Regenerated.
12445         * lib/unictype/categ_Nl.h: Regenerated.
12446         * lib/unictype/categ_No.h: Regenerated.
12447         * lib/unictype/categ_P.h: Regenerated.
12448         * lib/unictype/categ_Pd.h: Regenerated.
12449         * lib/unictype/categ_Pe.h: Regenerated.
12450         * lib/unictype/categ_Pf.h: Regenerated.
12451         * lib/unictype/categ_Pi.h: Regenerated.
12452         * lib/unictype/categ_Po.h: Regenerated.
12453         * lib/unictype/categ_Ps.h: Regenerated.
12454         * lib/unictype/categ_S.h: Regenerated.
12455         * lib/unictype/categ_Sk.h: Regenerated.
12456         * lib/unictype/categ_Sm.h: Regenerated.
12457         * lib/unictype/categ_So.h: Regenerated.
12458         * lib/unictype/categ_of.h: Regenerated.
12459         * lib/unictype/combining.h: Regenerated.
12460         * lib/unictype/ctype_alnum.h: Regenerated.
12461         * lib/unictype/ctype_alpha.h: Regenerated.
12462         * lib/unictype/ctype_graph.h: Regenerated.
12463         * lib/unictype/ctype_lower.h: Regenerated.
12464         * lib/unictype/ctype_print.h: Regenerated.
12465         * lib/unictype/ctype_punct.h: Regenerated.
12466         * lib/unictype/ctype_upper.h: Regenerated.
12467         * lib/unictype/decdigit.h: Regenerated.
12468         * lib/unictype/digit.h: Regenerated.
12469         * lib/unictype/mirror.h: Regenerated.
12470         * lib/unictype/numeric.h: Regenerated.
12471         * lib/unictype/pr_alphabetic.h: Regenerated.
12472         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
12473         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
12474         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
12475         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
12476         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
12477         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
12478         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
12479         * lib/unictype/pr_combining.h: Regenerated.
12480         * lib/unictype/pr_dash.h: Regenerated.
12481         * lib/unictype/pr_decimal_digit.h: Regenerated.
12482         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
12483         * lib/unictype/pr_deprecated.h: Regenerated.
12484         * lib/unictype/pr_diacritic.h: Regenerated.
12485         * lib/unictype/pr_extender.h: Regenerated.
12486         * lib/unictype/pr_format_control.h: Regenerated.
12487         * lib/unictype/pr_grapheme_base.h: Regenerated.
12488         * lib/unictype/pr_grapheme_extend.h: Regenerated.
12489         * lib/unictype/pr_grapheme_link.h: Regenerated.
12490         * lib/unictype/pr_id_continue.h: Regenerated.
12491         * lib/unictype/pr_id_start.h: Regenerated.
12492         * lib/unictype/pr_ideographic.h: Regenerated.
12493         * lib/unictype/pr_ignorable_control.h: Regenerated.
12494         * lib/unictype/pr_lowercase.h: Regenerated.
12495         * lib/unictype/pr_math.h: Regenerated.
12496         * lib/unictype/pr_numeric.h: Regenerated.
12497         * lib/unictype/pr_other_alphabetic.h: Regenerated.
12498         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
12499         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
12500         * lib/unictype/pr_other_id_continue.h: Regenerated.
12501         * lib/unictype/pr_other_lowercase.h: Regenerated.
12502         * lib/unictype/pr_other_math.h: Regenerated.
12503         * lib/unictype/pr_punctuation.h: Regenerated.
12504         * lib/unictype/pr_sentence_terminal.h: Regenerated.
12505         * lib/unictype/pr_soft_dotted.h: Regenerated.
12506         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
12507         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
12508         * lib/unictype/pr_unified_ideograph.h: Regenerated.
12509         * lib/unictype/pr_uppercase.h: Regenerated.
12510         * lib/unictype/pr_xid_continue.h: Regenerated.
12511         * lib/unictype/pr_xid_start.h: Regenerated.
12512         * lib/unictype/pr_zero_width.h: Regenerated.
12513         * lib/unictype/scripts.h: Regenerated.
12514         * lib/unictype/scripts_byname.gperf: Regenerated.
12515         * lib/unictype/sy_java_ident.h: Regenerated.
12516         * lib/unilbrk/lbrkprop1.h: Regenerated.
12517         * lib/unilbrk/lbrkprop2.h: Regenerated.
12518         * tests/unictype/test-categ_C.c: Regenerated.
12519         * tests/unictype/test-categ_Cf.c: Regenerated.
12520         * tests/unictype/test-categ_Cn.c: Regenerated.
12521         * tests/unictype/test-categ_L.c: Regenerated.
12522         * tests/unictype/test-categ_Ll.c: Regenerated.
12523         * tests/unictype/test-categ_Lm.c: Regenerated.
12524         * tests/unictype/test-categ_Lo.c: Regenerated.
12525         * tests/unictype/test-categ_Lu.c: Regenerated.
12526         * tests/unictype/test-categ_M.c: Regenerated.
12527         * tests/unictype/test-categ_Mc.c: Regenerated.
12528         * tests/unictype/test-categ_Me.c: Regenerated.
12529         * tests/unictype/test-categ_Mn.c: Regenerated.
12530         * tests/unictype/test-categ_N.c: Regenerated.
12531         * tests/unictype/test-categ_Nd.c: Regenerated.
12532         * tests/unictype/test-categ_Nl.c: Regenerated.
12533         * tests/unictype/test-categ_No.c: Regenerated.
12534         * tests/unictype/test-categ_P.c: Regenerated.
12535         * tests/unictype/test-categ_Pd.c: Regenerated.
12536         * tests/unictype/test-categ_Pe.c: Regenerated.
12537         * tests/unictype/test-categ_Pf.c: Regenerated.
12538         * tests/unictype/test-categ_Pi.c: Regenerated.
12539         * tests/unictype/test-categ_Po.c: Regenerated.
12540         * tests/unictype/test-categ_Ps.c: Regenerated.
12541         * tests/unictype/test-categ_S.c: Regenerated.
12542         * tests/unictype/test-categ_Sk.c: Regenerated.
12543         * tests/unictype/test-categ_Sm.c: Regenerated.
12544         * tests/unictype/test-categ_So.c: Regenerated.
12545         * tests/unictype/test-ctype_alnum.c: Regenerated.
12546         * tests/unictype/test-ctype_alpha.c: Regenerated.
12547         * tests/unictype/test-ctype_graph.c: Regenerated.
12548         * tests/unictype/test-ctype_lower.c: Regenerated.
12549         * tests/unictype/test-ctype_print.c: Regenerated.
12550         * tests/unictype/test-ctype_punct.c: Regenerated.
12551         * tests/unictype/test-ctype_upper.c: Regenerated.
12552         * tests/unictype/test-decdigit.h: Regenerated.
12553         * tests/unictype/test-digit.h: Regenerated.
12554         * tests/unictype/test-numeric.h: Regenerated.
12555         * tests/unictype/test-pr_alphabetic.c: Regenerated.
12556         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
12557         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
12558         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
12559         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
12560         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
12561         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
12562         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
12563         * tests/unictype/test-pr_combining.c: Regenerated.
12564         * tests/unictype/test-pr_dash.c: Regenerated.
12565         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
12566         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
12567         * tests/unictype/test-pr_deprecated.c: Regenerated.
12568         * tests/unictype/test-pr_diacritic.c: Regenerated.
12569         * tests/unictype/test-pr_extender.c: Regenerated.
12570         * tests/unictype/test-pr_format_control.c: Regenerated.
12571         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
12572         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
12573         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
12574         * tests/unictype/test-pr_id_continue.c: Regenerated.
12575         * tests/unictype/test-pr_id_start.c: Regenerated.
12576         * tests/unictype/test-pr_ideographic.c: Regenerated.
12577         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
12578         * tests/unictype/test-pr_lowercase.c: Regenerated.
12579         * tests/unictype/test-pr_math.c: Regenerated.
12580         * tests/unictype/test-pr_numeric.c: Regenerated.
12581         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
12582         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
12583         Regenerated.
12584         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
12585         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
12586         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
12587         * tests/unictype/test-pr_other_math.c: Regenerated.
12588         * tests/unictype/test-pr_punctuation.c: Regenerated.
12589         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
12590         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
12591         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
12592         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
12593         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
12594         * tests/unictype/test-pr_uppercase.c: Regenerated.
12595         * tests/unictype/test-pr_xid_continue.c: Regenerated.
12596         * tests/unictype/test-pr_xid_start.c: Regenerated.
12597         * tests/unictype/test-pr_zero_width.c: Regenerated.
12598
12599         Update to Unicode 5.1.0.
12600         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
12601         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
12602         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
12603         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
12604         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
12605         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
12606         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
12607         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
12608         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
12609         (nonspacing_table_ind): Update.
12610         * tests/uniwidth/test-uc_width2.sh: Update expected result.
12611
12612         Update to Unicode 5.1.0.
12613         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
12614         code transform.
12615         * lib/uniname/uniname.c (unicode_character_name,
12616         unicode_name_character): Add the range 0x1Fxxx to the code transform.
12617         * lib/uniname/uninames.h: Regenerated.
12618         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
12619
12620 2009-02-07  Bruno Haible  <bruno@clisp.org>
12621
12622         Merge gen-ctype and gen-lbrk into a single program.
12623         * lib/gen-uni-tables.c: New file, incorporating
12624         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
12625         Add directory prefixes to the names of the generated files.
12626         * lib/unictype/gen-ctype.c: Remove file.
12627         * lib/unilbrk/gen-lbrk.c: Remove file.
12628         * modules/gen-uni-tables: New file.
12629         * modules/unictype/gen-ctype: Remove file.
12630         * modules/unilbrk/gen-lbrk: Remove file.
12631
12632 2009-02-07  Bruno Haible  <bruno@clisp.org>
12633
12634         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
12635
12636         New module 'unistr/u32-strcoll'.
12637         * modules/unistr/u32-strcoll: New file.
12638         * lib/unistr/u32-strcoll.c: New file.
12639
12640         New module 'unistr/u16-strcoll'.
12641         * modules/unistr/u16-strcoll: New file.
12642         * lib/unistr/u16-strcoll.c: New file.
12643
12644         New module 'unistr/u8-strcoll'.
12645         * modules/unistr/u8-strcoll: New file.
12646         * lib/unistr/u8-strcoll.c: New file.
12647         * lib/unistr/u-strcoll.h: New file.
12648
12649 2009-02-07  Bruno Haible  <bruno@clisp.org>
12650
12651         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
12652         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
12653         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
12654         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
12655         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
12656         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
12657
12658 2009-02-07  Bruno Haible  <bruno@clisp.org>
12659
12660         Make 64-bit clean.
12661         * lib/unictype/gen-ctype.c (output_predicate, output_category,
12662         output_combclass, output_bidi_category, output_decimal_digit,
12663         output_digit, output_numeric, output_mirror, output_scripts,
12664         output_ident_category): Use proper width specifier in format strings.
12665
12666 2009-02-07  Bruno Haible  <bruno@clisp.org>
12667
12668         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
12669         failure behaviour.
12670
12671 2009-02-07  Jim Meyering  <meyering@redhat.com>
12672
12673         regex: avoid compilation failure with upcoming gcc-4.4
12674         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
12675         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
12676         "... error: integer overflow in preprocessor expression".
12677
12678 2009-02-05  Ben Pfaff  <blp@gnu.org>
12679
12680         Fix link errors on Windows when close module is used.
12681         * modules/close: Add $(LIB_CLOSE) to Link section.
12682         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
12683         $(LIB_CLOSE) on Windows.
12684
12685 2009-02-05  Jim Meyering  <meyering@redhat.com>
12686
12687         still avoid unused-parameter warnings, but do it cleanly
12688         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
12689         (get_fs_usage): Cast to void instead.
12690         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
12691         (dev_from_mount_options, read_file_system_list): Cast to void.
12692         Prompted by Bruno Haible.
12693
12694 2009-02-04  Jim Meyering  <meyering@redhat.com>
12695
12696         fsusage.c: correct copyright year
12697         * lib/fsusage.c: Reflect year in which the change is pushed into
12698
12699         avoid misc. warnings
12700         * lib/fsusage.c (UNUSED_PARAM): Define.
12701         (get_fs_usage): Mark parameter "disk" as unused.
12702         * lib/getugroups.c (getgrent): Use "void" in prototype.
12703         * lib/mountlist.c: Mark unused parameters.
12704         (read_file_system_list): Declare a local with "const".
12705         * lib/nanosleep.c (getnow): Declare static.
12706         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
12707
12708         dirfd: set errno upon failure
12709         * lib/dirfd.c: Include <errno.h>.
12710         Set errno to ENOTSUP when returning -1.
12711         * modules/dirfd (Depends-on): Add errno.
12712         Suggested by John Kodis <kodis@comcast.net>.
12713
12714 2009-02-01  Bruno Haible  <bruno@clisp.org>
12715
12716         Don't assume sizeof (long) >= sizeof (void *).
12717         * lib/memcmp.c: Include stdint.h.
12718         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
12719         srcp2 to 'const byte *'.
12720         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
12721         types to uintptr_t.
12722         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
12723         * modules/memcmp (Depends-on): Add stdint.
12724         Reported by Ozkan Sezer <sezeroz@gmail.com>.
12725
12726 2009-01-30  Eric Blake  <ebb9@byu.net>
12727
12728         fix more require-before-expand issues
12729         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
12730         expand, AC_PROG_AWK.
12731         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
12732
12733 2009-01-28  Eric Blake  <ebb9@byu.net>
12734
12735         version-etc: use consistent URL formatting
12736         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
12737         Improve formatting.  Use fputs for string without %.
12738
12739 2009-01-28  Jim Meyering  <meyering@redhat.com>
12740
12741         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
12742         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
12743         "underquoted definition of NAME" from autoconf-2.59.
12744
12745 2009-01-28  Bruno Haible  <bruno@clisp.org>
12746
12747         * doc/gnulib.texi: Add "Obsolete modules" to index.
12748
12749 2009-01-28  Jim Meyering  <meyering@redhat.com>
12750
12751         useless-if-before-free: recognize more variants
12752         * build-aux/useless-if-before-free: Also recognize e.g.,
12753         if (NULL != p) free (p);
12754
12755 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
12756
12757         test-getaddrinfo: skip (don't fail) this test when there's no network
12758         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
12759         on the presumption that it means you lack network access.
12760
12761 2009-01-26  Jim Meyering  <meyering@redhat.com>
12762
12763         fflush: avoid warnings on modern systems
12764         * lib/fflush.c (rpl_fflush): Move declarations of locals,
12765         pos and result, into scopes where they're used.
12766
12767 2009-01-26  Eric Blake  <ebb9@byu.net>
12768
12769         Silence warning reintroduced by recent extensions patch.
12770         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
12771         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
12772         autoconf.
12773
12774         Backport improved autoconf semantics of AC_DEFUN_ONCE.
12775         * m4/00gnulib.m4: New file.
12776         * gnulib-tool (func_get_filelist): Always use it.
12777         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
12778         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
12779
12780 2009-01-25  Bruno Haible  <bruno@clisp.org>
12781
12782         Make test-quotearg work on MacOS X and AIX.
12783         * tests/test-quotearg.sh: New file.
12784         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
12785         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
12786         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
12787         include <libintl.h>.
12788         (fake_locale): Remove variable.
12789         (gettext, dgettext, dcgettext): Remove functions.
12790         (main): Instead of setting a fake locale, set a real locale. Call
12791         textdomain and bindtextdomain.
12792         * modules/quotearg-tests (Files): Add the new files.
12793         (Depends-on): Add gettext, setenv, unsetenv.
12794         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
12795         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
12796         Augment TESTS_ENVIRONMENT.
12797
12798 2009-01-25  Bruno Haible  <bruno@clisp.org>
12799
12800         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
12801         fr_FR.ISO8859-1 locale on MacOS X.
12802         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
12803         ja_JP.eucJP locale on MacOS X.
12804         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
12805         zh_CN.GB18030 locale on MacOS X.
12806
12807 2009-01-25  Bruno Haible  <bruno@clisp.org>
12808
12809         Avoid link errors on MacOS X 10.3.
12810         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
12811         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
12812
12813 2009-01-25  Bruno Haible  <bruno@clisp.org>
12814
12815         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
12816         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
12817         * modules/pipe (Files): Remove m4/posix_spawn.m4.
12818         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
12819         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
12820         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
12821         posix_spawnattr_init, posix_spawnattr_setsigmask,
12822         posix_spawnattr_setflags, posix_spawnattr_destroy.
12823
12824         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
12825         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
12826         * modules/execute (Files): Remove m4/posix_spawn.m4.
12827         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
12828         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
12829         posix_spawnattr_init, posix_spawnattr_setsigmask,
12830         posix_spawnattr_setflags, posix_spawnattr_destroy.
12831
12832 2009-01-25  Bruno Haible  <bruno@clisp.org>
12833
12834         * lib/glthread/threadlib.c: Include <stdlib.h>.
12835
12836 2009-01-25  Bruno Haible  <bruno@clisp.org>
12837
12838         * lib/glthread/threadlib.c (dummy): New declaration.
12839
12840 2009-01-25  Bruno Haible  <bruno@clisp.org>
12841
12842         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
12843         multibyte characters also for the GB18030 encoding. Don't crash when
12844         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
12845
12846 2009-01-25  Bruno Haible  <bruno@clisp.org>
12847
12848         Avoid redefining 'struct random_data' on OSF/1 5.1.
12849         * lib/stdlib.in.h: Include <random.h> if it exists.
12850         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
12851         HAVE_RANDOM_H. Include <random.h> when testing whether
12852         'struct random_data' exists.
12853         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
12854
12855 2009-01-25  Bruno Haible  <bruno@clisp.org>
12856
12857         Don't install charset.alias on MacOS X >= 10.3.
12858         * lib/localcharset.c (DARWIN7): New macro.
12859         (get_charset_aliases): Hardcode the result for Darwin7.
12860         * modules/localcharset (install-exec-local): Don't install
12861         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
12862
12863 2009-01-25  Bruno Haible  <bruno@clisp.org>
12864
12865         Don't install charset.alias on mingw and Cygwin.
12866         * modules/localcharset (install-exec-local): Don't install
12867         charset.alias on mingw and Cygwin, if the file does not yet exist.
12868         The result for these platforms is hardcoded in localcharset.c.
12869
12870 2009-01-25  Bruno Haible  <bruno@clisp.org>
12871
12872         Make it possible again to use AC_GNU_SOURCE together with gnulib.
12873         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
12874         before requiring AC_USE_SYSTEM_EXTENSIONS.
12875
12876 2009-01-25  Jim Meyering  <meyering@redhat.com>
12877
12878         c-strtod: avoid warnings
12879         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
12880         "assignment discards qualifiers from pointer target type" warnings.
12881
12882 2009-01-24  Bruno Haible  <bruno@clisp.org>
12883
12884         Add support for non-UTF-8 locales on MacOS X.
12885         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
12886         canonical encodings. For Darwin 7 and newer, don't map traditional
12887         encodings to UTF-8.
12888         Reported by Vincent Lefevre <vincent@vinc17.org>
12889         at <http://savannah.gnu.org/bugs/?25235>.
12890
12891 2009-01-24  Bruno Haible  <bruno@clisp.org>
12892
12893         * doc/gnulib.texi (Obsolete modules): New section.
12894         Reported by Mike Frysinger <vapier@gentoo.org>.
12895
12896 2009-01-24  Bruno Haible  <bruno@clisp.org>
12897
12898         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
12899         (%.dvi): New rule.
12900
12901 2009-01-24  Bruno Haible  <bruno@clisp.org>
12902
12903         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
12904         Reported by Eric Blake.
12905
12906 2009-01-24  Bruno Haible  <bruno@clisp.org>
12907
12908         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
12909         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
12910         Reported by Gary V. Vaughan <gary@gnu.org>.
12911
12912 2009-01-24  Bruno Haible  <bruno@clisp.org>
12913
12914         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
12915
12916 2009-01-23  Bruno Haible  <bruno@clisp.org>
12917
12918         Make c-strtod, c-strtold usable in libraries.
12919         * lib/c-strtod.c: Include string.h instead of xalloc.h.
12920         (C_STRTOD): Call strdup instead of xstrdup.
12921         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
12922         * modules/c-strtold (Depends-on): Likewise.
12923         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
12924         * NEWS: Mention the change.
12925         Reported by Michael Gold <mgold@ncf.ca>.
12926
12927 2009-01-23  Jim Meyering  <meyering@redhat.com>
12928
12929         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
12930         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
12931         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
12932
12933 2009-01-23  Simon Josefsson  <simon@josefsson.org>
12934
12935         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
12936         GNU CoreUtils.
12937         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
12938         * modules/version-etc (Description): Update.
12939
12940 2009-01-22  Bruno Haible  <bruno@clisp.org>
12941
12942         Cache the C locale object.
12943         * lib/c-strtod.c (c_locale_cache): New variable.
12944         (c_locale): New function.
12945         (C_STRTOD): Use it, and don't call freelocale.
12946         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
12947         Suggested by Paolo Bonzini.
12948
12949 2009-01-21  Bruno Haible  <bruno@clisp.org>
12950
12951         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
12952         conditions other than overflow.
12953
12954 2009-01-21  Bruno Haible  <bruno@clisp.org>
12955
12956         * lib/c-strtod.c: Include errno.h.
12957         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
12958         value from STRTOD_L and STRTOD.
12959
12960 2009-01-21  Bruno Haible  <bruno@clisp.org>
12961         and Jim Meyering  <meyering@redhat.com>
12962
12963         nanosleep: skip configure test (fail it) for apple universal builds
12964         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
12965         universal builds, assume that nanosleep does not work.
12966         * modules/nanosleep (Depends-on): Add multiarch.
12967
12968         mktime: skip configure test (fail it) for apple universal builds
12969         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
12970         universal builds, assume that mktime does not work.
12971         * modules/mktime (Depends-on): Add multiarch.
12972
12973 2009-01-21  Eric Blake  <ebb9@byu.net>
12974
12975         multiarch: avoid expand-before-require warning
12976         * modules/multiarch (configure.ac): Require, rather than expand,
12977         gl_MULTIARCH.
12978         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
12979         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
12980         enforce that all clients require it.  Partial reversion of
12981         2008-12-29 patch.
12982
12983         error: avoid expand-before-require warning
12984         * modules/errno (configure.ac): Require, rather than expand,
12985         gl_HEADER_ERRNO_H.
12986         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
12987         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
12988         enforce that all clients require it.
12989
12990         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
12991         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
12992         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
12993         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
12994
12995 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
12996
12997         Revert:
12998         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
12999
13000         regex: do not depend on obsolete modules.
13001         * modules/regex: Remove memcmp and memmove.
13002
13003 2009-01-20  Bruno Haible  <bruno@clisp.org>
13004
13005         Make the 'link' module link on Windows NT 4.
13006         * lib/link.c (_WIN32_WINNT): Don't define.
13007         (CreateHardLinkFuncType): New type.
13008         (CreateHardLinkFunc, initialized): New variables.
13009         (initialize): New function.
13010         (link): Invoke CreateHardLink indirectly through the function pointer.
13011
13012 2009-01-20  Bruno Haible  <bruno@clisp.org>
13013
13014         Fix compilation failure on mingw.
13015         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
13016
13017 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
13018
13019         * doc/c-strtod.texi: Mention a couple of restrictions.
13020
13021 2009-01-20  Jim Meyering  <meyering@redhat.com>
13022
13023         gettimeofday: move more declarations out of functions
13024         * lib/gettimeofday.c: Move extern declarations of tzset and
13025         gmtime out of containing functions.  Prompted by Bruno Haible.
13026
13027 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
13028
13029         regex: do not depend on obsolete modules.
13030         * modules/regex: Remove memcmp and memmove.
13031
13032 2009-01-19  Bruno Haible  <bruno@clisp.org>
13033
13034         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
13035         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
13036         gl_BIGENDIAN, not AC_C_BIGENDIAN.
13037         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
13038         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
13039
13040 2009-01-19  Bruno Haible  <bruno@clisp.org>
13041
13042         * tests/test-link.c: Include <errno.h>.
13043         (main): Exit with code 77 when a hard link cannot be created due to
13044         the file system.
13045         * tests/test-link.sh: Skip test when a hard link cannot be created due
13046         to the file system.
13047         Suggested by Eric Blake.
13048
13049 2009-01-19  Martin Lambers  <marlam@marlam.de>
13050
13051         * modules/link-tests: New file.
13052         * tests/test-link.sh: New file.
13053         * tests/test-link.c: New file.
13054
13055 2009-01-19  Eric Blake  <ebb9@byu.net>
13056
13057         doc: mention another function added in cygwin 1.7.0
13058         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
13059         Another new function in cygwin 1.7.
13060
13061 2009-01-19  Bruno Haible  <bruno@clisp.org>
13062
13063         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
13064         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
13065         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
13066         gl_BIGENDIAN, not AC_C_BIGENDIAN.
13067         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
13068         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
13069         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
13070         * m4/md4.m4 (gl_MD4): Likewise.
13071         * m4/md5.m4 (gl_MD5): Likewise.
13072         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
13073         * m4/sha1.m4 (gl_SHA1): Likewise.
13074         * m4/sha256.m4 (gl_SHA256): Likewise.
13075         * m4/sha512.m4 (gl_SHA512): Likewise.
13076
13077 2009-01-19  Bruno Haible  <bruno@clisp.org>
13078
13079         * modules/uniname/uniname-tests (Depends-on): Add progname.
13080         * tests/uniname/test-uninames.c: Include progname.h.
13081         (main): Call set_program_name.
13082
13083         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
13084         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
13085         (main): Call set_program_name.
13086
13087         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
13088         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
13089         (main): Call set_program_name.
13090
13091         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
13092         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
13093         (main): Call set_program_name.
13094
13095         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
13096         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
13097         (main): Call set_program_name.
13098
13099         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
13100         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
13101         (main): Call set_program_name.
13102
13103         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
13104         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
13105         (main): Call set_program_name.
13106
13107         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
13108         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
13109         (main): Call set_program_name.
13110
13111         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
13112         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
13113         (main): Call set_program_name.
13114
13115 2009-01-19  Eric Blake  <ebb9@byu.net>
13116
13117         test-unistd: test previous patch
13118         * tests/test-unistd.c: Test *_FILENO macros.
13119
13120         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
13121         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
13122         Guarantee a definition.
13123         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
13124         * modules/unistd-safer (Depends-on): Add dependency on unistd.
13125         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
13126         * lib/dup-safer.c (STDERR_FILENO): Likewise.
13127         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
13128         Likewise.
13129         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
13130         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
13131         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
13132         Likewise.
13133         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
13134         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
13135         (STDERR_FILENO): Likewise.
13136         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
13137         (STDERR_FILENO): Likewise.
13138         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
13139         (STDERR_FILENO): Likewise.
13140         Reported by Elbert Pol.
13141
13142 2009-01-19  Eric Blake  <ebb9@byu.net>
13143
13144         doc: mention more functions added in cygwin 1.7.0
13145         * doc/posix-functions/abort.texi (abort): Update wording related
13146         to cygwin.
13147         * doc/posix-functions/daylight.texi (daylight): Likewise.
13148         * doc/posix-functions/optarg.texi (optarg): Likewise.
13149         * doc/posix-functions/optarg.texi (opterr): Likewise.
13150         * doc/posix-functions/optarg.texi (optind): Likewise.
13151         * doc/posix-functions/optarg.texi (optopt): Likewise.
13152         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
13153         worked in 1.5.x, and was withdrawn in 1.7.
13154         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
13155         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
13156         cygwin versions.
13157         * doc/posix-functions/perror.texi (perror): Likewise.
13158         * doc/posix-functions/printf.texi (printf): Likewise.
13159         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
13160         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
13161         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
13162         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
13163         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
13164         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
13165         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
13166         Likewise.
13167         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
13168         Likewise.
13169         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
13170         this function.
13171         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
13172         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
13173         Likewise.
13174         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
13175         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
13176         * doc/posix-functions/confstr.texi (confstr): Likewise.
13177         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
13178         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
13179         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
13180         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
13181         * doc/posix-functions/fputws.texi (fputws): Likewise.
13182         * doc/posix-functions/fwide.texi (fwide): Likewise.
13183         * doc/posix-functions/getwc.texi (getwc): Likewise.
13184         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
13185         * doc/posix-functions/putwc.texi (putwc): Likewise.
13186         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
13187         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
13188         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
13189         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
13190         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
13191         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
13192         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
13193         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
13194         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
13195         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
13196         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
13197
13198 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
13199
13200         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
13201         * lib/ioctl.c: Include <sys/ioctl.h>.
13202
13203 2009-01-19  Simon Josefsson  <simon@josefsson.org>
13204
13205         * modules/getdate-tests (Depends-on): Add progname.
13206         * tests/test-getdate.c: Use progname module, to avoid link errors
13207         on non-glibc systems.
13208
13209 2009-01-18  Simon Josefsson  <simon@josefsson.org>
13210
13211         * modules/filenamecat-tests (Depends-on): Add progname.
13212         * modules/fstrcmp-tests (Depends-on): Likewise.
13213
13214         * tests/test-filenamecat.c: Use progname module, to avoid link
13215         errors on non-glibc systems.
13216         * tests/test-fstrcmp.c: Likewise.
13217
13218 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
13219
13220         gettimeofday: avoid warning: nested extern declaration of 'localtime'
13221         * lib/gettimeofday.c: Move extern declaration out of function.
13222
13223 2009-01-18  Bruno Haible  <bruno@clisp.org>
13224
13225         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
13226         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
13227         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
13228
13229 2009-01-18  Bruno Haible  <bruno@clisp.org>
13230
13231         * lib/strftime.c (MEMPCPY): Remove unused macro.
13232         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
13233
13234 2009-01-18  Martin Lambers  <marlam@marlam.de>
13235
13236         New module 'link'.
13237         * lib/unistd.in.h (link): New declaration.
13238         * lib/link.c: New file.
13239         * m4/link.m4: New file.
13240         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
13241         HAVE_LINK.
13242         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
13243         * modules/link: New file.
13244         * doc/posix-functions/link.texi: Mention the new module.
13245
13246 2009-01-18  Bruno Haible  <bruno@clisp.org>
13247
13248         * tests/test-avltree_list.c (main): Call set_program_name.
13249         * tests/test-avltree_oset.c (main): Likewise.
13250         * tests/test-obstack-printf.c: Include progname.h.
13251         (main): Call set_program_name.
13252         * tests/test-quotearg.c: Include progname.h.
13253         (main): Call set_program_name.
13254         * tests/test-xmemdup0.c: Include progname.h.
13255         (main): Call set_program_name.
13256
13257 2009-01-18  Bruno Haible  <bruno@clisp.org>
13258
13259         New module 'alphasort'.
13260         * lib/dirent.in.h (alphasort): New declaration.
13261         * lib/alphasort.c: New file, from glibc with modifications.
13262         * m4/alphasort.m4: New file.
13263         * modules/alphasort: New file.
13264         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
13265         HAVE_ALPHASORT.
13266         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
13267         HAVE_ALPHASORT.
13268         * doc/posix-functions/alphasort.texi: Mention the new module and the
13269         portability problems.
13270
13271 2009-01-18  Bruno Haible  <bruno@clisp.org>
13272
13273         New module 'scandir'.
13274         * lib/dirent.in.h (scandir): New declaration.
13275         * lib/scandir.c: New file, from glibc with modifications.
13276         * m4/scandir.m4: New file.
13277         * modules/scandir: New file.
13278         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
13279         HAVE_SCANDIR.
13280         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
13281         HAVE_SCANDIR.
13282         * doc/posix-functions/scandir.texi: Mention the new module and the
13283         portability problems.
13284
13285 2009-01-17  Bruno Haible  <bruno@clisp.org>
13286
13287         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
13288         Update documentation.
13289         (func_remove_suffix): Escape all dots in the suffix. Update
13290         documentation.
13291         (func_filter_filelist): Update documentation.
13292         Reported by Ralf Wildenhues.
13293
13294 2009-01-17  Bruno Haible  <bruno@clisp.org>
13295
13296         * modules/dprintf-posix-tests: New file.
13297         * tests/test-dprintf-posix.sh: New file.
13298         * tests/test-dprintf-posix.c: New file.
13299
13300         New modules 'dprintf', 'dprintf-posix'.
13301         * lib/stdio.in.h (dprintf): New declaration.
13302         * lib/dprintf.c: New file.
13303         * m4/dprintf.m4: New file.
13304         * m4/dprintf-posix.m4: New file.
13305         * modules/dprintf: New file.
13306         * modules/dprintf-posix: New file.
13307         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
13308         HAVE_DPRINTF, REPLACE_DPRINTF.
13309         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
13310         HAVE_DPRINTF, REPLACE_DPRINTF.
13311         * doc/posix-functions/dprintf.texi: Mention the new modules.
13312
13313 2009-01-17  Bruno Haible  <bruno@clisp.org>
13314
13315         * modules/vdprintf-posix-tests: New file.
13316         * tests/test-vdprintf-posix.sh: New file.
13317         * tests/test-vdprintf-posix.c: New file.
13318
13319         New modules 'vdprintf', 'vdprintf-posix'.
13320         * lib/stdio.in.h (vdprintf): New declaration.
13321         * lib/vdprintf.c: New file.
13322         * m4/vdprintf.m4: New file.
13323         * m4/vdprintf-posix.m4: New file.
13324         * modules/vdprintf: New file.
13325         * modules/vdprintf-posix: New file.
13326         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
13327         HAVE_VDPRINTF, REPLACE_VDPRINTF.
13328         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
13329         HAVE_VDPRINTF, REPLACE_VDPRINTF.
13330         * doc/posix-functions/vdprintf.texi: Mention the new modules.
13331
13332 2009-01-17  Bruno Haible  <bruno@clisp.org>
13333
13334         Fix replacement of fopen on mingw.
13335         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
13336         mingw.
13337
13338 2009-01-17  Bruno Haible  <bruno@clisp.org>
13339
13340         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
13341         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
13342
13343 2009-01-17  Bruno Haible  <bruno@clisp.org>
13344
13345         Avoid test-fflush2.sh failure on mingw.
13346         * tests/test-fflush2.c: Include binary-io.h.
13347         (main): Put standard input into binary mode.
13348         * modules/fflush-tests (Depends-on): Add binary-io.
13349
13350 2009-01-17  Bruno Haible  <bruno@clisp.org>
13351
13352         * lib/wchar.in.h: In another particular situation, include only the
13353         system's <wchar.h> file.
13354         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
13355         Reported by Albert Chin-A-Young <china@thewrittenword.com>
13356         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
13357
13358 2009-01-17  Bruno Haible  <bruno@clisp.org>
13359
13360         Support for stripping executables in --enable-relocatable.
13361         * build-aux/install-reloc: Expect one more argument, or an environment
13362         variable RELOC_STRIP_PROG. If set, strip the destination program and
13363         its wrapper.
13364         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
13365         RELOC_STRIP_PROG.
13366         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
13367         to set RELOCATABLE_STRIP.
13368         * NEWS: Mention the new Makefile requirement.
13369
13370 2009-01-17  Bruno Haible  <bruno@clisp.org>
13371
13372         * build-aux/install-reloc: Remove debugging information left over by
13373         C compiler on MacOS X.
13374
13375 2009-01-17  Bruno Haible  <bruno@clisp.org>
13376
13377         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
13378         * lib/progreloc.c (find_executable): Fix type of pointer passed to
13379         _NSGetExecutablePath.
13380
13381 2009-01-16  Jim Meyering  <meyering@redhat.com>
13382
13383         strerror: avoid warnings about discarding "const"
13384         * lib/strerror.c (rpl_strerror): Instead of returning a const
13385         string from each and every "case", use a variable, and add a single
13386         cast after the switch.
13387
13388 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
13389
13390         * lib/arpa_inet.in.h: Add extern "C" block for C++.
13391
13392 2009-01-16  Bruno Haible  <bruno@clisp.org>
13393
13394         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
13395         array initializer syntax that also works in C++ mode.
13396         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13397
13398 2009-01-16  Jim Meyering  <meyering@redhat.com>
13399
13400         poll: suppress a warning
13401         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
13402         to ignore "...unsigned expression < 0 is always false" warnings.
13403
13404 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
13405
13406         poll: remove declarations of unused variables
13407         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
13408         sockbuf and optlen.
13409
13410 2009-01-15  Bruno Haible  <bruno@clisp.org>
13411
13412         Make fflush-after-ungetc POSIX compliant on BSD systems.
13413         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
13414         (clear_ungetc_buffer): Implement also for other systems.
13415         (rpl_fflush): On glibc systems, invoke
13416         clear_ungetc_buffer_preserving_position. Otherwise, invoke
13417         clear_ungetc_buffer after fetching the stream's position, not before.
13418
13419 2009-01-15  Bruno Haible  <bruno@clisp.org>
13420
13421         Make fflush-after-ungetc POSIX compliant on glibc systems.
13422         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
13423         after ungetc.
13424         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
13425         (rpl_fflush): On glibc systems, simply call the system's fflush
13426         function after clearing the ungetc buffer.
13427         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
13428         Instead, lseek only to the end of file, then use the system's fseeko
13429         for the rest. On glibc systems, reset the EOF indicator bit.
13430
13431 2009-01-15  Jim Meyering  <meyering@redhat.com>
13432
13433         openmp.m4: revert quote-adding change, for portability to older autoconf
13434         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
13435         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
13436         Simon Josefsson noticed the problem when using autoconf-2.61.
13437
13438 2009-01-15  Bruno Haible  <bruno@clisp.org>
13439
13440         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
13441         * tests/test-fflush2.c (ASSERT): Always fail.
13442         (main): Add two tests for fflush() after ungetc(), taking into account
13443         the Austin Group's clarification.
13444         Suggested by Eric Blake.
13445
13446 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
13447
13448         mktime.m4: remove K&R-style function prototypes
13449         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
13450         for the Sun C++ compiler.
13451
13452 2009-01-14  Bruno Haible  <bruno@clisp.org>
13453
13454         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
13455         while including <wchar.h>.
13456         * lib/wchar.in.h: In two particular situations on HP-UX, include only
13457         the system's <wchar.h> file.
13458         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13459
13460 2009-01-14  Bruno Haible  <bruno@clisp.org>
13461
13462         * m4/csharp.m4: Don't mention gettext on the serial number line.
13463         * m4/csharpexec.m4: Likewise.
13464         * m4/eaccess.m4: Likewise.
13465         * m4/javaexec.m4: Likewise.
13466         * m4/sig_atomic_t.m4: Likewise.
13467         * m4/tmpdir.m4: Likewise.
13468         * m4/intldir.m4: Bump gettext version.
13469         * m4/lib-ld.m4: Likewise.
13470
13471 2009-01-14  Bruno Haible  <bruno@clisp.org>
13472
13473         * lib/progname.c (set_program_name): Add more comments.
13474         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
13475
13476 2009-01-14  Simon Josefsson  <simon@josefsson.org>
13477
13478         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
13479         were sys/stat.h does not define it.
13480
13481 2009-01-14  Jim Meyering  <meyering@redhat.com>
13482
13483         many *.m4 files: improve m4 quoting
13484         99% of this change was performed by running the following commands:
13485         git ls-files | grep '\.m4$' | xargs perl -pi \
13486           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
13487           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
13488           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
13489           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
13490         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
13491         The remainder were to add Copyright dates, increment serial numbers,
13492         undo some changes in comments, exclude m4/intl.m4, and add quotes
13493         around the "1" in ",1" where the unusual spacing prohibited the
13494         above regexps from doing the job.  For more details, see
13495         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
13496         * m4/acl.m4: Modified.
13497         * m4/afs.m4: Likewise.
13498         * m4/alloca.m4: Likewise.
13499         * m4/argp.m4: Likewise.
13500         * m4/argz.m4: Likewise.
13501         * m4/atexit.m4: Likewise.
13502         * m4/bison-i18n.m4: Likewise.
13503         * m4/bison.m4: Likewise.
13504         * m4/byteswap.m4: Likewise.
13505         * m4/c-stack.m4: Likewise.
13506         * m4/c-strtod.m4: Likewise.
13507         * m4/calloc.m4: Likewise.
13508         * m4/canonicalize-lgpl.m4: Likewise.
13509         * m4/chown.m4: Likewise.
13510         * m4/clock_time.m4: Likewise.
13511         * m4/codeset.m4: Likewise.
13512         * m4/copy-file.m4: Likewise.
13513         * m4/csharp.m4: Likewise.
13514         * m4/csharpcomp.m4: Likewise.
13515         * m4/csharpexec.m4: Likewise.
13516         * m4/d-ino.m4: Likewise.
13517         * m4/d-type.m4: Likewise.
13518         * m4/dirfd.m4: Likewise.
13519         * m4/double-slash-root.m4: Likewise.
13520         * m4/eaccess.m4: Likewise.
13521         * m4/eealloc.m4: Likewise.
13522         * m4/environ.m4: Likewise.
13523         * m4/errno_h.m4: Likewise.
13524         * m4/euidaccess.m4: Likewise.
13525         * m4/execute.m4: Likewise.
13526         * m4/fatal-signal.m4: Likewise.
13527         * m4/fchdir.m4: Likewise.
13528         * m4/fcntl_h.m4: Likewise.
13529         * m4/fileblocks.m4: Likewise.
13530         * m4/filenamecat.m4: Likewise.
13531         * m4/findprog.m4: Likewise.
13532         * m4/flexmember.m4: Likewise.
13533         * m4/fnmatch.m4: Likewise.
13534         * m4/fopen.m4: Likewise.
13535         * m4/fpending.m4: Likewise.
13536         * m4/fprintf-posix.m4: Likewise.
13537         * m4/free.m4: Likewise.
13538         * m4/frexp.m4: Likewise.
13539         * m4/frexpl.m4: Likewise.
13540         * m4/fsusage.m4: Likewise.
13541         * m4/ftruncate.m4: Likewise.
13542         * m4/gc-camellia.m4: Likewise.
13543         * m4/gc-random.m4: Likewise.
13544         * m4/gc.m4: Likewise.
13545         * m4/getaddrinfo.m4: Likewise.
13546         * m4/getcwd-abort-bug.m4: Likewise.
13547         * m4/getcwd-path-max.m4: Likewise.
13548         * m4/getdate.m4: Likewise.
13549         * m4/getdomainname.m4: Likewise.
13550         * m4/getgroups.m4: Likewise.
13551         * m4/gethostname.m4: Likewise.
13552         * m4/gethrxtime.m4: Likewise.
13553         * m4/getline.m4: Likewise.
13554         * m4/getloadavg.m4: Likewise.
13555         * m4/getndelim2.m4: Likewise.
13556         * m4/getpass.m4: Likewise.
13557         * m4/gettext.m4: Likewise.
13558         * m4/gettime.m4: Likewise.
13559         * m4/gettimeofday.m4: Likewise.
13560         * m4/gnulib-common.m4: Likewise.
13561         * m4/group-member.m4: Likewise.
13562         * m4/host-os.m4: Likewise.
13563         * m4/iconv.m4: Likewise.
13564         * m4/iconv_open.m4: Likewise.
13565         * m4/inet_ntop.m4: Likewise.
13566         * m4/inet_pton.m4: Likewise.
13567         * m4/inline.m4: Likewise.
13568         * m4/intldir.m4: Likewise.
13569         * m4/intlmacosx.m4: Likewise.
13570         * m4/intmax.m4: Likewise.
13571         * m4/intmax_t.m4: Likewise.
13572         * m4/inttypes.m4: Likewise.
13573         * m4/inttypes_h.m4: Likewise.
13574         * m4/inttypes-pri.m4: Likewise.
13575         * m4/isapipe.m4: Likewise.
13576         * m4/isnand.m4: Likewise.
13577         * m4/isnanf.m4: Likewise.
13578         * m4/isnanl.m4: Likewise.
13579         * m4/javacomp.m4: Likewise.
13580         * m4/javaexec.m4: Likewise.
13581         * m4/jm-winsz1.m4: Likewise.
13582         * m4/jm-winsz2.m4: Likewise.
13583         * m4/lchown.m4: Likewise.
13584         * m4/lcmessage.m4: Likewise.
13585         * m4/ldexpl.m4: Likewise.
13586         * m4/lib-ld.m4: Likewise.
13587         * m4/lib-link.m4: Likewise.
13588         * m4/libsigsegv.m4: Likewise.
13589         * m4/link-follow.m4: Likewise.
13590         * m4/localcharset.m4: Likewise.
13591         * m4/locale-fr.m4: Likewise.
13592         * m4/locale-ja.m4: Likewise.
13593         * m4/locale-tr.m4: Likewise.
13594         * m4/locale-zh.m4: Likewise.
13595         * m4/lock.m4: Likewise.
13596         * m4/longlong.m4: Likewise.
13597         * m4/ls-mntd-fs.m4: Likewise.
13598         * m4/lstat.m4: Likewise.
13599         * m4/malloc.m4: Likewise.
13600         * m4/mathl.m4: Likewise.
13601         * m4/mbrtowc.m4: Likewise.
13602         * m4/mbstate_t.m4: Likewise.
13603         * m4/mbswidth.m4: Likewise.
13604         * m4/memchr.m4: Likewise.
13605         * m4/memcmp.m4: Likewise.
13606         * m4/memcpy.m4: Likewise.
13607         * m4/memmem.m4: Likewise.
13608         * m4/memmove.m4: Likewise.
13609         * m4/mempcpy.m4: Likewise.
13610         * m4/memrchr.m4: Likewise.
13611         * m4/memset.m4: Likewise.
13612         * m4/minmax.m4: Likewise.
13613         * m4/mkdir-slash.m4: Likewise.
13614         * m4/mkdtemp.m4: Likewise.
13615         * m4/mktime.m4: Likewise.
13616         * m4/mmap-anon.m4: Likewise.
13617         * m4/mountlist.m4: Likewise.
13618         * m4/nanosleep.m4: Likewise.
13619         * m4/nls.m4: Likewise.
13620         * m4/nocrash.m4: Likewise.
13621         * m4/open.m4: Likewise.
13622         * m4/openat.m4: Likewise.
13623         * m4/openmp.m4: Likewise.
13624         * m4/pathmax.m4: Likewise.
13625         * m4/perl.m4: Likewise.
13626         * m4/physmem.m4: Likewise.
13627         * m4/pipe.m4: Likewise.
13628         * m4/po.m4: Likewise.
13629         * m4/poll.m4: Likewise.
13630         * m4/posixtm.m4: Likewise.
13631         * m4/posixver.m4: Likewise.
13632         * m4/printf-frexp.m4: Likewise.
13633         * m4/printf-frexpl.m4: Likewise.
13634         * m4/printf-posix.m4: Likewise.
13635         * m4/printf-posix-rpl.m4: Likewise.
13636         * m4/printf.m4: Likewise.
13637         * m4/progtest.m4: Likewise.
13638         * m4/putenv.m4: Likewise.
13639         * m4/readline.m4: Likewise.
13640         * m4/readlink.m4: Likewise.
13641         * m4/readutmp.m4: Likewise.
13642         * m4/realloc.m4: Likewise.
13643         * m4/regex.m4: Likewise.
13644         * m4/relocatable.m4: Likewise.
13645         * m4/relocatable-lib.m4: Likewise.
13646         * m4/rename-dest-slash.m4: Likewise.
13647         * m4/rename.m4: Likewise.
13648         * m4/rmdir-errno.m4: Likewise.
13649         * m4/rmdir.m4: Likewise.
13650         * m4/roundf.m4: Likewise.
13651         * m4/roundl.m4: Likewise.
13652         * m4/rpmatch.m4: Likewise.
13653         * m4/save-cwd.m4: Likewise.
13654         * m4/selinux-selinux-h.m4: Likewise.
13655         * m4/setenv.m4: Likewise.
13656         * m4/settime.m4: Likewise.
13657         * m4/sig2str.m4: Likewise.
13658         * m4/sig_atomic_t.m4: Likewise.
13659         * m4/signalblocking.m4: Likewise.
13660         * m4/signbit.m4: Likewise.
13661         * m4/sigpipe.m4: Likewise.
13662         * m4/sockets.m4: Likewise.
13663         * m4/sockpfaf.m4: Likewise.
13664         * m4/st_dm_mode.m4: Likewise.
13665         * m4/stat-time.m4: Likewise.
13666         * m4/stdbool.m4: Likewise.
13667         * m4/stdint.m4: Likewise.
13668         * m4/stdint_h.m4: Likewise.
13669         * m4/stpcpy.m4: Likewise.
13670         * m4/stpncpy.m4: Likewise.
13671         * m4/strcase.m4: Likewise.
13672         * m4/strchrnul.m4: Likewise.
13673         * m4/strcspn.m4: Likewise.
13674         * m4/strdup.m4: Likewise.
13675         * m4/strftime.m4: Likewise.
13676         * m4/strndup.m4: Likewise.
13677         * m4/strnlen.m4: Likewise.
13678         * m4/strpbrk.m4: Likewise.
13679         * m4/strptime.m4: Likewise.
13680         * m4/strsep.m4: Likewise.
13681         * m4/strtod.m4: Likewise.
13682         * m4/strtoimax.m4: Likewise.
13683         * m4/strtok_r.m4: Likewise.
13684         * m4/strtol.m4: Likewise.
13685         * m4/strtoll.m4: Likewise.
13686         * m4/strtoul.m4: Likewise.
13687         * m4/strtoull.m4: Likewise.
13688         * m4/strtoumax.m4: Likewise.
13689         * m4/strverscmp.m4: Likewise.
13690         * m4/threadlib.m4: Likewise.
13691         * m4/timegm.m4: Likewise.
13692         * m4/tm_gmtoff.m4: Likewise.
13693         * m4/tmpdir.m4: Likewise.
13694         * m4/tmpfile.m4: Likewise.
13695         * m4/tzset.m4: Likewise.
13696         * m4/uintmax_t.m4: Likewise.
13697         * m4/unlinkdir.m4: Likewise.
13698         * m4/unlocked-io.m4: Likewise.
13699         * m4/uptime.m4: Likewise.
13700         * m4/userspec.m4: Likewise.
13701         * m4/utimbuf.m4: Likewise.
13702         * m4/utime.m4: Likewise.
13703         * m4/utimes-null.m4: Likewise.
13704         * m4/utimes.m4: Likewise.
13705         * m4/vararrays.m4: Likewise.
13706         * m4/vasnprintf.m4: Likewise.
13707         * m4/vfprintf-posix.m4: Likewise.
13708         * m4/vprintf-posix.m4: Likewise.
13709         * m4/wait-process.m4: Likewise.
13710         * m4/wchar_t.m4: Likewise.
13711         * m4/wint_t.m4: Likewise.
13712         * m4/write-any-file.m4: Likewise.
13713         * m4/yield.m4: Likewise.
13714
13715 2009-01-13  Bruno Haible  <bruno@clisp.org>
13716
13717         Avoid test-copy-file.sh failures when ACL support insufficient.
13718         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
13719         TESTS_ENVIRONMENT.
13720         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
13721         Reported by Jim Meyering.
13722
13723 2009-01-13  Bruno Haible  <bruno@clisp.org>
13724
13725         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
13726         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
13727         * modules/unistdio/u8-printf-parse (Files): Likewise.
13728         * modules/unistdio/u32-printf-parse (Files): Likewise.
13729         * modules/unistdio/ulc-printf-parse (Files): Likewise.
13730
13731 2009-01-13  Simon Josefsson  <simon@josefsson.org>
13732
13733         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
13734         and m4/inttypes_h.m4 too.
13735
13736 2009-01-12  Eric Blake  <ebb9@byu.net>
13737
13738         tests: IRIX 6.2 cc can't compile -0.0 into .data
13739         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
13740         rather than at compile-time.
13741         * tests/test-floorl.c (minus_zero): Likewise.
13742         * tests/test-frexpl.c (minus_zero): Likewise.
13743         * tests/test-isnan.c (minus_zerol): Likewise.
13744         * tests/test-isnanl.h (minus_zero): Likewise.
13745         * tests/test-ldexpl.c (minus_zero): Likewise.
13746         * tests/test-roundl.c (minus_zero): Likewise.
13747         * tests/test-signbit.c (minus_zerol): Likewise.
13748         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
13749         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
13750         * tests/test-truncl.c (minus_zero): Likewise.
13751         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
13752         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
13753         Reported by Tom G. Christensen and Nelson H. F. Beebe.
13754
13755 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
13756
13757         regex: fix glibc bug 9697
13758         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
13759         handling.
13760
13761 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
13762
13763         regex: fix glibc bug 697
13764         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
13765         being NULL also if there are no backreferences.
13766
13767 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
13768
13769         regex: merge glibc changes
13770         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
13771         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
13772         re_string_skip_chars, re_string_reconstruct): Likewise.
13773         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
13774
13775 2009-01-07  Jim Meyering  <meyering@redhat.com>
13776
13777         poll: filter through cppi
13778         * lib/poll.c: Indent cpp directives to reflect nesting.
13779
13780 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
13781
13782         poll: don't return uninitialized
13783         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
13784
13785 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
13786
13787         avoid compile failure on AIX 6.1
13788         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
13789         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
13790
13791 2009-01-04  Jim Meyering  <meyering@redhat.com>
13792
13793         remove duplicate inclusion of <stdio.h>
13794         * tests/test-fprintf-posix.c: Likewise.
13795         * tests/test-printf-posix.c: Likewise.
13796         * tests/test-snprintf-posix.c: Likewise.
13797         * tests/test-sprintf-posix.c: Likewise.
13798         * tests/test-vasprintf-posix.c: Likewise.
13799         * tests/test-vfprintf-posix.c: Likewise.
13800         * tests/test-vprintf-posix.c: Likewise.
13801         * tests/test-vsnprintf-posix.c: Likewise.
13802         * tests/test-vsprintf-posix.c: Likewise.
13803
13804 2009-01-03  Jim Meyering  <meyering@redhat.com>
13805
13806         gnulib-tool: fix sed-based filtering
13807         * gnulib-tool (func_filter_filelist): Remove extra backslash
13808         in sed_fff_filter definition.
13809
13810 2009-01-02  Jim Meyering  <meyering@redhat.com>
13811
13812         strftime: avoid compilation failure on Solaris 2.6
13813         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
13814         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
13815         Don't #define mbrlen or mbsinit, since now they're guaranteed to
13816         be available.  Reported by Tom G. Christensen.  Details in
13817         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
13818
13819 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13820             Bruno Haible  <bruno@clisp.org>
13821
13822         Speed up gnulib-tool by doing more string processing through shell
13823         built-ins.
13824         * gnulib-tool (fast_func_append): New variable.
13825         (func_remove_prefix, func_remove_suffix): New functions.
13826         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
13827         (func_filter_filelist): New function.
13828         (func_get_dependencies): Use func_remove_suffix instead of sed.
13829         (func_get_automake_snippet): Use func_filter_filelist instead of a
13830         subshell and sed invocation.
13831
13832 2009-01-01  Bruno Haible  <bruno@clisp.org>
13833
13834         Fix a security bug.
13835         * gnulib-tool (func_import, import, update): Don't allow the characters
13836         '"', '$', '`', '\' in macro arguments that become part of commands that
13837         are evaluated.
13838
13839 2009-01-01  Bruno Haible  <bruno@clisp.org>
13840
13841         * gnulib-tool (func_reset_sigpipe): Add more comments.
13842
13843 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13844
13845         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
13846         func_emit_tests_Makefile_am, func_import): Abort loops early if we
13847         already know the answer.
13848
13849 2009-01-01  Jim Meyering  <meyering@redhat.com>
13850
13851         * lib/version-etc.c (version_etc_va): Update copyright year.
13852
13853 2008-12-30  Bruno Haible  <bruno@clisp.org>
13854
13855         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
13856         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
13857         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
13858
13859 2008-12-29  Eric Blake  <ebb9@byu.net>
13860
13861         multiarch: avoid autoconf AC_REQUIRE bug
13862         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
13863         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
13864         2.63 and older.
13865         Reported by Bruno Haible, and analyzed in
13866         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
13867
13868 2008-12-29  Bruno Haible  <bruno@clisp.org>
13869
13870         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
13871         files in subdirectories correctly.
13872         Reported by Ralf Wildenhues.
13873
13874 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13875
13876         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
13877         rather than 'join FILE -', for Solaris join.
13878
13879 2008-12-29  Bruno Haible  <bruno@clisp.org>
13880
13881         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
13882         quoting.
13883         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
13884         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
13885         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
13886         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
13887         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
13888         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
13889         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
13890         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
13891         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
13892         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
13893         * m4/nls.m4 (AM_NLS): Likewise.
13894         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
13895         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
13896         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
13897         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
13898         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
13899         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
13900         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
13901         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
13902         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
13903         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
13904         * m4/xsize.m4 (gl_XSIZE): Likewise.
13905         Suggested by Jim Meyering.
13906
13907 2008-11-17  Bruce Korb  <bkorb@gnu.org>
13908
13909         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
13910         * lib/parse-duration.c: use a switch instead of cascading if's.
13911
13912 2008-12-29  Eric Blake  <ebb9@byu.net>
13913
13914         wchar.h: supply WEOF on Irix 5.3
13915         * lib/wchar.in.h (wint_t): Also supply WEOF.
13916         * lib/wctype.in.h (wint_t): Likewise.
13917         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
13918         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
13919         Reported by Tom G. Christensen.
13920
13921 2008-12-26  Bruno Haible  <bruno@clisp.org>
13922
13923         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
13924         i486, i586, i686.
13925
13926 2008-12-26  Bruno Haible  <bruno@clisp.org>
13927
13928         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
13929
13930 2008-12-26  Bruno Haible  <bruno@clisp.org>
13931
13932         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
13933         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
13934         not __STDC_CONSTANT_MACROS.
13935         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
13936
13937 2008-12-25  Bruno Haible  <bruno@clisp.org>
13938
13939         Add support for universal builds to vasnprintf.
13940         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
13941         universal builds, guess no.
13942         * modules/vasnprintf-posix (Depends-on): Add multiarch.
13943         * modules/vasprintf-posix (Depends-on): Likewise.
13944         * modules/fprintf-posix (Depends-on): Likewise.
13945         * modules/vfprintf-posix (Depends-on): Likewise.
13946         * modules/snprintf-posix (Depends-on): Likewise.
13947         * modules/vsnprintf-posix (Depends-on): Likewise.
13948         * modules/sprintf-posix (Depends-on): Likewise.
13949         * modules/vsprintf-posix (Depends-on): Likewise.
13950         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
13951         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13952         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13953         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13954         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13955         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13956         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13957
13958         Add support for universal builds to <inttypes.h>.
13959         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
13960         _SCNu64_PREFIX): In Apple
13961         universal builds, define directly, using _LP64.
13962         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
13963         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
13964         * modules/inttypes (Depends-on): Add multiarch.
13965         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
13966
13967         Add support for universal builds to <stdint.h>.
13968         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
13969         universal builds, define directly, using _LP64.
13970         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
13971         Apple universal builds, don't test for the size and suffix of ptrdiff_t
13972         and size_t.
13973         * modules/stdint (Depends-on): Add multiarch.
13974         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
13975
13976         New module 'multiarch'.
13977         * modules/multiarch: New file.
13978         * m4/multiarch.m4: New file.
13979
13980 2008-12-25  Bruno Haible  <bruno@clisp.org>
13981
13982         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
13983
13984 2008-12-25  Bruno Haible  <bruno@clisp.org>
13985
13986         * modules/btowc (License): Relicense under LGPLv2+.
13987         * modules/mbsinit (License): Likewise.
13988         * modules/mbrtowc (License): Likewise.
13989         * modules/wcrtomb (License): Likewise.
13990         * modules/streq (License): Likewise.
13991         Reported by David Lutterkort <lutter@redhat.com>.
13992
13993 2008-12-23  Bruno Haible  <bruno@clisp.org>
13994
13995         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
13996
13997 2008-12-23  Bruno Haible  <bruno@clisp.org>
13998
13999         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
14000         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
14001         GETADDRINFO_LIB, not in LIBS.
14002         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
14003         * modules/canon-host (Link): Likewise.
14004         * NEWS: Mention the change.
14005         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
14006         GETADDRINFO_LIB.
14007
14008 2008-12-22  Bruno Haible  <bruno@clisp.org>
14009
14010         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
14011         * doc/posix-functions/iswalpha_l.texi: Likewise.
14012         * doc/posix-functions/iswblank_l.texi: Likewise.
14013         * doc/posix-functions/iswcntrl_l.texi: Likewise.
14014         * doc/posix-functions/iswctype_l.texi: Likewise.
14015         * doc/posix-functions/iswdigit_l.texi: Likewise.
14016         * doc/posix-functions/iswgraph_l.texi: Likewise.
14017         * doc/posix-functions/iswlower_l.texi: Likewise.
14018         * doc/posix-functions/iswprint_l.texi: Likewise.
14019         * doc/posix-functions/iswpunct_l.texi: Likewise.
14020         * doc/posix-functions/iswspace_l.texi: Likewise.
14021         * doc/posix-functions/iswupper_l.texi: Likewise.
14022         * doc/posix-functions/iswxdigit_l.texi: Likewise.
14023         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
14024         * doc/posix-functions/open_wmemstream.texi: Likewise.
14025         * doc/posix-functions/swscanf.texi: Likewise.
14026         * doc/posix-functions/towctrans_l.texi: Likewise.
14027         * doc/posix-functions/towlower.texi: Likewise.
14028         * doc/posix-functions/towlower_l.texi: Likewise.
14029         * doc/posix-functions/towupper.texi: Likewise.
14030         * doc/posix-functions/towupper_l.texi: Likewise.
14031         * doc/posix-functions/vfwprintf.texi: Likewise.
14032         * doc/posix-functions/vfwscanf.texi: Likewise.
14033         * doc/posix-functions/vswscanf.texi: Likewise.
14034         * doc/posix-functions/vwprintf.texi: Likewise.
14035         * doc/posix-functions/vwscanf.texi: Likewise.
14036         * doc/posix-functions/wcpcpy.texi: Likewise.
14037         * doc/posix-functions/wcpncpy.texi: Likewise.
14038         * doc/posix-functions/wcscasecmp.texi: Likewise.
14039         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
14040         * doc/posix-functions/wcscoll_l.texi: Likewise.
14041         * doc/posix-functions/wcsdup.texi: Likewise.
14042         * doc/posix-functions/wcsncasecmp.texi: Likewise.
14043         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
14044         * doc/posix-functions/wcsnlen.texi: Likewise.
14045         * doc/posix-functions/wcsnrtombs.texi: Likewise.
14046         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
14047         * doc/posix-functions/wctrans_l.texi: Likewise.
14048         * doc/posix-functions/wctype_l.texi: Likewise.
14049         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
14050         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
14051         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
14052         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
14053         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
14054         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
14055         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
14056         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
14057         * doc/glibc-functions/wcschrnul.texi: Likewise.
14058         * doc/glibc-functions/wcsftime_l.texi: Likewise.
14059         * doc/glibc-functions/wcstod_l.texi: Likewise.
14060         * doc/glibc-functions/wcstof_l.texi: Likewise.
14061         * doc/glibc-functions/wcstol_l.texi: Likewise.
14062         * doc/glibc-functions/wcstold_l.texi: Likewise.
14063         * doc/glibc-functions/wcstoll_l.texi: Likewise.
14064         * doc/glibc-functions/wcstoq.texi: Likewise.
14065         * doc/glibc-functions/wcstoul_l.texi: Likewise.
14066         * doc/glibc-functions/wcstoull_l.texi: Likewise.
14067         * doc/glibc-functions/wcstouq.texi: Likewise.
14068         * doc/glibc-functions/wmempcpy.texi: Likewise.
14069
14070 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
14071             Eric Blake  <ebb9@byu.net>
14072             Paolo Bonzini  <bonzini@gnu.org>
14073             Bruno Haible  <bruno@clisp.org>
14074
14075         Make c-stack work on Haiku.
14076         * lib/c-stack.c (SA_ONSTACK): Define fallback.
14077         (c_stack_action): Use SA_ONSTACK flag.
14078
14079 2008-12-22  Bruno Haible  <bruno@clisp.org>
14080
14081         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
14082
14083 2008-12-22  Bruno Haible  <bruno@clisp.org>
14084
14085         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
14086         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
14087         being overridden.
14088         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
14089         New macros.
14090         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
14091         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
14092         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
14093         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
14094
14095 2008-12-22  Bruno Haible  <bruno@clisp.org>
14096
14097         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
14098         from test code.
14099
14100 2008-12-22  Eric Blake  <ebb9@byu.net>
14101
14102         Avoid gcc warnings on cygwin.
14103         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
14104         Avoid unused variable.
14105         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
14106         Likewise.
14107
14108 2008-12-22  Bruno Haible  <bruno@clisp.org>
14109
14110         Remove HAVE_MBRTOWC conditionals.
14111         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
14112         (mbscasecmp): Assume mbrtowc function.
14113         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
14114         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
14115         * lib/mbschr.c: Include mbuiter.h unconditionally.
14116         (mbschr): Assume mbrtowc function.
14117         * lib/mbscspn.c: Include mbuiter.h unconditionally.
14118         (mbscspn): Assume mbrtowc function.
14119         * lib/mbslen.c: Include mbuiter.h unconditionally.
14120         (mbslen): Assume mbrtowc function.
14121         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
14122         (mbsncasecmp): Assume mbrtowc function.
14123         * lib/mbsnlen.c: Include mbiter.h unconditionally.
14124         (mbsnlen): Assume mbrtowc function.
14125         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
14126         (mbspbrk): Assume mbrtowc function.
14127         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
14128         (mbspcasecmp): Assume mbrtowc function.
14129         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
14130         (mbsrchr): Assume mbrtowc function.
14131         * lib/mbssep.c: Include mbuiter.h unconditionally.
14132         (mbssep): Assume mbrtowc function.
14133         * lib/mbsspn.c: Include mbuiter.h unconditionally.
14134         (mbsspn): Assume mbrtowc function.
14135         * lib/mbsstr.c: Include mbuiter.h unconditionally.
14136         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
14137         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
14138         (mbstok_r): Assume mbrtowc function.
14139         * lib/propername.c: Include mbuiter.h unconditionally.
14140         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
14141         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
14142         (trim2): Assume mbrtowc function.
14143         * lib/mbswidth.c (mbsinit): Remove fallback definition.
14144         (mbsnwidth): Assume mbrtowc function.
14145         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
14146         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
14147         fallback definitions.
14148         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
14149
14150 2008-12-22  Bruno Haible  <bruno@clisp.org>
14151
14152         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
14153
14154 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
14155
14156         * modules/regex: Request emulations for the mb*/wc* functions we need.
14157         * m4/regex.m4: Don't look for those functions here.
14158         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
14159
14160 2008-12-22  Bruno Haible  <bruno@clisp.org>
14161
14162         * modules/fnmatch (Depends-on): Remove duplicated dependency.
14163
14164 2008-12-21  Bruno Haible  <bruno@clisp.org>
14165
14166         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
14167         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
14168         (Include): Remove conditionalization.
14169         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
14170         (Include): Remove conditionalization.
14171         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
14172         (Include): Remove conditionalization.
14173         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
14174         * m4/mbfile.m4 (gl_MBFILE): Likewise.
14175         * NEWS: Mention the change.
14176         Reported by Alan Hourihane <alanh@fairlite.co.uk>
14177         via Sergey Poznyakoff <gray@gnu.org.ua>.
14178
14179 2008-12-21  Bruno Haible  <bruno@clisp.org>
14180
14181         * MODULES.html.sh (Extended multibyte and wide character utilities
14182         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
14183         wcrtomb, wcsrtombs.
14184         (Support for systems lacking POSIX:2008): Add accept, bind, close,
14185         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
14186         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
14187         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
14188
14189 2008-12-21  Bruno Haible  <bruno@clisp.org>
14190
14191         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
14192
14193 2008-12-21  Bruno Haible  <bruno@clisp.org>
14194
14195         * modules/wcsnrtombs-tests: New file.
14196         * tests/test-wcsnrtombs1.sh: New file.
14197         * tests/test-wcsnrtombs2.sh: New file.
14198         * tests/test-wcsnrtombs3.sh: New file.
14199         * tests/test-wcsnrtombs4.sh: New file.
14200         * tests/test-wcsnrtombs.c: New file.
14201
14202         New module 'wcsnrtombs'.
14203         * lib/wchar.in.h (wcsnrtombs): New declaration.
14204         * lib/wcsnrtombs.c: New file.
14205         * lib/wcsrtombs-state.c: New file.
14206         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
14207         (internal_state): Remove variable.
14208         * m4/wcsnrtombs.m4: New file.
14209         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
14210         compilation units.
14211         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
14212         HAVE_WCSNRTOMBS.
14213         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
14214         HAVE_WCSNRTOMBS.
14215         * modules/wcsnrtombs: New file.
14216         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
14217         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
14218
14219 2008-12-21  Bruno Haible  <bruno@clisp.org>
14220
14221         * modules/wcsrtombs-tests: New file.
14222         * tests/test-wcsrtombs1.sh: New file.
14223         * tests/test-wcsrtombs2.sh: New file.
14224         * tests/test-wcsrtombs3.sh: New file.
14225         * tests/test-wcsrtombs4.sh: New file.
14226         * tests/test-wcsrtombs.c: New file.
14227
14228         New module 'wcsrtombs'.
14229         * lib/wchar.in.h (wcsrtombs): New declaration.
14230         * lib/wcsrtombs.c: New file.
14231         * m4/wcsrtombs.m4: New file.
14232         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
14233         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
14234         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
14235         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
14236         * modules/wcsrtombs: New file.
14237         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
14238         bugs.
14239
14240 2008-12-21  Bruno Haible  <bruno@clisp.org>
14241
14242         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
14243         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
14244         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
14245         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
14246         if not correct.
14247         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
14248         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
14249         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
14250         m4/locale-zh.m4, m4/codeset.m4.
14251         * doc/posix-functions/wcrtomb.texi: Document the bug.
14252
14253 2008-12-21  Bruno Haible  <bruno@clisp.org>
14254
14255         Work around a btowc() bug on IRIX 6.5.
14256         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
14257         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
14258         REPLACE_WTOBC if not.
14259         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
14260         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
14261         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
14262
14263 2008-12-21  Bruno Haible  <bruno@clisp.org>
14264
14265         * modules/wcrtomb-tests: New file.
14266         * tests/test-wcrtomb.sh: New file.
14267         * tests/test-wcrtomb.c: New file.
14268
14269         New module 'wcrtomb'.
14270         * lib/wchar.in.h (wcrtomb): New declaration.
14271         * lib/wcrtomb.c: New file.
14272         * m4/wcrtomb.m4: New file.
14273         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
14274         HAVE_WCRTOMB.
14275         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
14276         HAVE_WCRTOMB.
14277         * modules/wcrtomb: New file.
14278         * doc/posix-functions/wcrtomb.texi: Mention the new module.
14279
14280 2008-12-21  Bruno Haible  <bruno@clisp.org>
14281
14282         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
14283         * modules/mbsrtowcs (Files): Likewise.
14284         * modules/wctob (Files): Likewise.
14285         * modules/c-strcase-tests (Files): Likewise.
14286         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
14287         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
14288         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
14289         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
14290         * modules/vasnprintf-posix-tests (Files): Likewise.
14291
14292 2008-12-21  William Pursell  <bill.pursell@gmail.com>
14293
14294         gitlog-to-changelog: pass all command-line arguments to git-log
14295         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
14296         it is sometimes convenient to filter the commits in various ways.
14297         gitlog-to-changelog only allows --since to specify a start date,
14298         but git-log itself supports many other filtering mechanisms.
14299         At the moment, I want to filter by branch name.  Rather than
14300         adding a --branch option to gitlog-to-changelog, it seems more
14301         flexible to simply pass all options directly to git-log and let
14302         git do the work.  Notice that this effectively makes --since a
14303         redundant option for gitlog-to-changelog, but removing it would
14304         require current usage to change since calls would then require
14305         an additional '--'.
14306
14307 2008-12-21  Bruno Haible  <bruno@clisp.org>
14308
14309         * modules/mbsnrtowcs-tests: New file.
14310         * tests/test-mbsnrtowcs1.sh: New file.
14311         * tests/test-mbsnrtowcs2.sh: New file.
14312         * tests/test-mbsnrtowcs3.sh: New file.
14313         * tests/test-mbsnrtowcs4.sh: New file.
14314         * tests/test-mbsnrtowcs.c: New file.
14315
14316         New module 'mbsnrtowcs'.
14317         * lib/wchar.in.h (mbsnrtowcs): New declaration.
14318         * lib/mbsnrtowcs.c: New file.
14319         * lib/mbsrtowcs-state.c: New file.
14320         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
14321         (internal_state): Remove variable.
14322         * m4/mbsnrtowcs.m4: New file.
14323         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
14324         compilation units.
14325         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
14326         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
14327         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
14328         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
14329         * modules/mbsnrtowcs: New file.
14330         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
14331         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
14332         portability problem.
14333
14334 2008-12-21  Bruno Haible  <bruno@clisp.org>
14335
14336         Work around mbsrtowcs bug.
14337         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
14338         (gl_FUNC_MBSRTOWCS): Invoke it.
14339         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
14340         m4/locale-zh.m4.
14341         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
14342
14343 2008-12-21  Bruno Haible  <bruno@clisp.org>
14344
14345         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
14346
14347 2008-12-21  Bruno Haible  <bruno@clisp.org>
14348
14349         Update doc for AIX.
14350         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
14351         16-bit wchar_t type.
14352         * doc/posix-functions/btowc.texi: Likewise.
14353         * doc/posix-functions/fgetwc.texi: Likewise.
14354         * doc/posix-functions/fgetws.texi: Likewise.
14355         * doc/posix-functions/fputwc.texi: Likewise.
14356         * doc/posix-functions/fputws.texi: Likewise.
14357         * doc/posix-functions/fwide.texi: Likewise.
14358         * doc/posix-functions/fwprintf.texi: Likewise.
14359         * doc/posix-functions/fwscanf.texi: Likewise.
14360         * doc/posix-functions/getwchar.texi: Likewise.
14361         * doc/posix-functions/getwc.texi: Likewise.
14362         * doc/posix-functions/iswalnum.texi: Likewise.
14363         * doc/posix-functions/iswalpha.texi: Likewise.
14364         * doc/posix-functions/iswblank.texi: Likewise.
14365         * doc/posix-functions/iswcntrl.texi: Likewise.
14366         * doc/posix-functions/iswctype.texi: Likewise.
14367         * doc/posix-functions/iswdigit.texi: Likewise.
14368         * doc/posix-functions/iswgraph.texi: Likewise.
14369         * doc/posix-functions/iswlower.texi: Likewise.
14370         * doc/posix-functions/iswprint.texi: Likewise.
14371         * doc/posix-functions/iswpunct.texi: Likewise.
14372         * doc/posix-functions/iswspace.texi: Likewise.
14373         * doc/posix-functions/iswupper.texi: Likewise.
14374         * doc/posix-functions/iswxdigit.texi: Likewise.
14375         * doc/posix-functions/mbrtowc.texi: Likewise.
14376         * doc/posix-functions/mbsrtowcs.texi: Likewise.
14377         * doc/posix-functions/mbstowcs.texi: Likewise.
14378         * doc/posix-functions/mbtowc.texi: Likewise.
14379         * doc/posix-functions/putwchar.texi: Likewise.
14380         * doc/posix-functions/putwc.texi: Likewise.
14381         * doc/posix-functions/swprintf.texi: Likewise.
14382         * doc/posix-functions/tolower.texi: Likewise.
14383         * doc/posix-functions/toupper.texi: Likewise.
14384         * doc/posix-functions/towctrans.texi: Likewise.
14385         * doc/posix-functions/ungetwc.texi: Likewise.
14386         * doc/posix-functions/vswprintf.texi: Likewise.
14387         * doc/posix-functions/wcrtomb.texi: Likewise.
14388         * doc/posix-functions/wcscat.texi: Likewise.
14389         * doc/posix-functions/wcschr.texi: Likewise.
14390         * doc/posix-functions/wcscmp.texi: Likewise.
14391         * doc/posix-functions/wcscoll.texi: Likewise.
14392         * doc/posix-functions/wcscpy.texi: Likewise.
14393         * doc/posix-functions/wcscspn.texi: Likewise.
14394         * doc/posix-functions/wcsftime.texi: Likewise.
14395         * doc/posix-functions/wcslen.texi: Likewise.
14396         * doc/posix-functions/wcsncat.texi: Likewise.
14397         * doc/posix-functions/wcsncmp.texi: Likewise.
14398         * doc/posix-functions/wcsncpy.texi: Likewise.
14399         * doc/posix-functions/wcspbrk.texi: Likewise.
14400         * doc/posix-functions/wcsrchr.texi: Likewise.
14401         * doc/posix-functions/wcsrtombs.texi: Likewise.
14402         * doc/posix-functions/wcsspn.texi: Likewise.
14403         * doc/posix-functions/wcsstr.texi: Likewise.
14404         * doc/posix-functions/wcstod.texi: Likewise.
14405         * doc/posix-functions/wcstof.texi: Likewise.
14406         * doc/posix-functions/wcstoimax.texi: Likewise.
14407         * doc/posix-functions/wcstok.texi: Likewise.
14408         * doc/posix-functions/wcstold.texi: Likewise.
14409         * doc/posix-functions/wcstoll.texi: Likewise.
14410         * doc/posix-functions/wcstol.texi: Likewise.
14411         * doc/posix-functions/wcstombs.texi: Likewise.
14412         * doc/posix-functions/wcstoull.texi: Likewise.
14413         * doc/posix-functions/wcstoul.texi: Likewise.
14414         * doc/posix-functions/wcstoumax.texi: Likewise.
14415         * doc/posix-functions/wcswidth.texi: Likewise.
14416         * doc/posix-functions/wcsxfrm.texi: Likewise.
14417         * doc/posix-functions/wctob.texi: Likewise.
14418         * doc/posix-functions/wctomb.texi: Likewise.
14419         * doc/posix-functions/wctrans.texi: Likewise.
14420         * doc/posix-functions/wctype.texi: Likewise.
14421         * doc/posix-functions/wcwidth.texi: Likewise.
14422         * doc/posix-functions/wmemchr.texi: Likewise.
14423         * doc/posix-functions/wmemcmp.texi: Likewise.
14424         * doc/posix-functions/wmemcpy.texi: Likewise.
14425         * doc/posix-functions/wmemmove.texi: Likewise.
14426         * doc/posix-functions/wmemset.texi: Likewise.
14427         * doc/posix-functions/wprintf.texi: Likewise.
14428         * doc/posix-functions/wscanf.texi: Likewise.
14429
14430 2008-12-21  Bruno Haible  <bruno@clisp.org>
14431
14432         Update doc for HP-UX 11.11.
14433         * doc/posix-functions/btowc.texi: Clarify that the function is missing
14434         in HP-UX version 11.00, not in all versions of HP-UX 11.
14435         * doc/posix-functions/fwide.texi: Likewise.
14436         * doc/posix-functions/fwprintf.texi: Likewise.
14437         * doc/posix-functions/fwscanf.texi: Likewise.
14438         * doc/posix-functions/inet_ntop.texi: Likewise.
14439         * doc/posix-functions/inet_pton.texi: Likewise.
14440         * doc/posix-functions/mbrlen.texi: Likewise.
14441         * doc/posix-functions/mbrtowc.texi: Likewise.
14442         * doc/posix-functions/mbsinit.texi: Likewise.
14443         * doc/posix-functions/mbsrtowcs.texi: Likewise.
14444         * doc/posix-functions/swprintf.texi: Likewise.
14445         * doc/posix-functions/swscanf.texi: Likewise.
14446         * doc/posix-functions/towctrans.texi: Likewise.
14447         * doc/posix-functions/vfwprintf.texi: Likewise.
14448         * doc/posix-functions/vswprintf.texi: Likewise.
14449         * doc/posix-functions/vwprintf.texi: Likewise.
14450         * doc/posix-functions/wcrtomb.texi: Likewise.
14451         * doc/posix-functions/wcsrtombs.texi: Likewise.
14452         * doc/posix-functions/wcsstr.texi: Likewise.
14453         * doc/posix-functions/wctob.texi: Likewise.
14454         * doc/posix-functions/wctrans.texi: Likewise.
14455         * doc/posix-functions/wmemchr.texi: Likewise.
14456         * doc/posix-functions/wmemcmp.texi: Likewise.
14457         * doc/posix-functions/wmemcpy.texi: Likewise.
14458         * doc/posix-functions/wmemmove.texi: Likewise.
14459         * doc/posix-functions/wmemset.texi: Likewise.
14460         * doc/posix-functions/wprintf.texi: Likewise.
14461         * doc/posix-functions/wscanf.texi: Likewise.
14462
14463 2008-12-21  Bruno Haible  <bruno@clisp.org>
14464
14465         Work around a portability problem.
14466         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
14467         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
14468
14469 2008-12-20  Bruno Haible  <bruno@clisp.org>
14470
14471         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
14472         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
14473         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
14474         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
14475         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
14476
14477         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
14478         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
14479         set.
14480         (GNULIB_defined_mbstate_t): New macro.
14481         (mbsinit): Redefine if REPLACE_MBSINIT is set.
14482         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
14483         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
14484         reuses the system's mbrtowc function but works around the bugs.
14485         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
14486         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
14487         macros.
14488         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
14489         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
14490         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
14491         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
14492         REPLACE_MBSINIT if mbsinit needs to be overridden.
14493         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
14494         REPLACE_MBSINIT, REPLACE_MBRTOWC.
14495         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
14496         REPLACE_MBSINIT, REPLACE_MBRTOWC.
14497         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
14498         m4/locale-zh.m4.
14499         (Depends): Add mbsinit.
14500         * modules/mbsinit (Depends): Add mbrtowc.
14501         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
14502
14503 2008-12-20  Bruno Haible  <bruno@clisp.org>
14504
14505         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
14506         so that there are no conversion errors on AIX.
14507         * tests/test-mbsrtowcs.c (main): LIkewise.
14508
14509 2008-12-20  Bruno Haible  <bruno@clisp.org>
14510
14511         Work around wctob bug on Solaris <= 9.
14512         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
14513         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
14514         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
14515         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
14516         * modules/wctob (Files): Add m4/locale-fr.m4.
14517         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
14518
14519 2008-12-20  Bruno Haible  <bruno@clisp.org>
14520
14521         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
14522         /dev/null.
14523         * tests/test-select-in.sh: Likewise.
14524         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
14525
14526 2008-12-20  Bruno Haible  <bruno@clisp.org>
14527
14528         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
14529         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
14530         Cygwin 1.5.x.
14531
14532 2008-12-20  Bruno Haible  <bruno@clisp.org>
14533
14534         Ensure mbstate_t is defined on HP-UX 11.11.
14535         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
14536         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
14537         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
14538         AC_USE_SYSTEM_EXTENSIONS.
14539         * modules/fnmatch (Depends-on): Add extensions.
14540         * modules/mbrlen (Depends-on): Likewise.
14541         * modules/mbrtowc (Depends-on): Likewise.
14542         * modules/mbsinit (Depends-on): Likewise.
14543         * modules/mbsrtowcs (Depends-on): Likewise.
14544         * modules/mbswidth (Depends-on): Likewise.
14545         * modules/quotearg (Depends-on): Likewise.
14546         * modules/strftime (Depends-on): Likewise.
14547
14548 2008-12-20  Bruno Haible  <bruno@clisp.org>
14549
14550         Ensure wctob is declared on IRIX 6.5.
14551         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
14552         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
14553         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
14554         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
14555         of HAVE_WCTOB.
14556         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
14557         HAVE_WCTOB.
14558         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
14559
14560 2008-12-19  Bruno Haible  <bruno@clisp.org>
14561
14562         * modules/mbsrtowcs-tests: New file.
14563         * tests/test-mbsrtowcs1.sh: New file.
14564         * tests/test-mbsrtowcs2.sh: New file.
14565         * tests/test-mbsrtowcs3.sh: New file.
14566         * tests/test-mbsrtowcs4.sh: New file.
14567         * tests/test-mbsrtowcs.c: New file.
14568
14569         New module 'mbsrtowcs'.
14570         * lib/wchar.in.h (mbsrtowcs): New declaration.
14571         * lib/mbsrtowcs.c: New file.
14572         * m4/mbsrtowcs.m4: New file.
14573         * modules/mbsrtowcs: New file.
14574         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
14575         HAVE_MBSRTOWCS.
14576         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
14577         HAVE_MBSRTOWCS.
14578         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
14579
14580 2008-12-19  Bruno Haible  <bruno@clisp.org>
14581
14582         New module 'mbrlen'.
14583         * lib/wchar.in.h (mbrlen): New declaration.
14584         * lib/mbrlen.c: New file.
14585         * m4/mbrlen.m4: New file.
14586         * modules/mbrlen: New file.
14587         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
14588         HAVE_MBRLEN.
14589         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
14590         HAVE_MBRLEN.
14591         * doc/posix-functions/mbrlen.texi: Document the new module.
14592
14593 2008-12-19  Bruno Haible  <bruno@clisp.org>
14594
14595         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
14596         * modules/mbrtowc (Depends-on): Add verify.
14597         Suggested by Paul Eggert.
14598
14599 2008-12-18  Bruno Haible  <bruno@clisp.org>
14600
14601         * modules/mbsinit-tests: New file.
14602         * tests/test-mbsinit.sh: New file.
14603         * tests/test-mbsinit.c: New file.
14604
14605 2008-12-18  Bruno Haible  <bruno@clisp.org>
14606
14607         * modules/mbrtowc-tests: New file.
14608         * tests/test-mbrtowc1.sh: New file.
14609         * tests/test-mbrtowc2.sh: New file.
14610         * tests/test-mbrtowc3.sh: New file.
14611         * tests/test-mbrtowc4.sh: New file.
14612         * tests/test-mbrtowc.c: New file.
14613
14614         New module 'mbrtowc'.
14615         * lib/wchar.in.h (mbstate_t): Override when the system does not have
14616         mbsinit and mbrtowc.
14617         (mbrtowc): New declaration.
14618         * lib/mbrtowc.c: New file.
14619         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
14620         * modules/mbrtowc: New file.
14621         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
14622         HAVE_MBRTOWC.
14623         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
14624         HAVE_MBRTOWC.
14625         * doc/posix-functions/mbrtowc.texi: Document the new module.
14626
14627 2008-12-18  Bruno Haible  <bruno@clisp.org>
14628
14629         New module 'wctob'.
14630         * lib/wchar.in.h (wctob): New declaration.
14631         * lib/wctob.c: New file.
14632         * m4/wctob.m4: New file.
14633         * modules/wctob: New file.
14634         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
14635         HAVE_WCTOB.
14636         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
14637         * doc/posix-functions/wctob.texi: Document the new module.
14638
14639 2008-12-18  Bruno Haible  <bruno@clisp.org>
14640
14641         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
14642         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
14643
14644 2008-12-18  Simon Josefsson  <simon@josefsson.org>
14645
14646         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
14647         G. Christensen" <tgc@jupiterrise.com>.
14648
14649         * lib/flock.c: Need to include errno.h.  Reported by "Tom
14650         G. Christensen" <tgc@jupiterrise.com>.
14651
14652         * lib/flock.c: Need to include string.h.  Reported by "Tom
14653         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
14654         <ebb9@byu.net>.
14655
14656 2008-12-18  Bruno Haible  <bruno@clisp.org>
14657
14658         * m4/locale-ja.m4: New file, from GNU gettext.
14659
14660 2008-12-17  Bruno Haible  <bruno@clisp.org>
14661
14662         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
14663         Suggested by Eric Blake.
14664
14665 2008-12-17  Bruno Haible  <bruno@clisp.org>
14666
14667         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
14668
14669 2008-12-17  Bruno Haible  <bruno@clisp.org>
14670
14671         * lib/mbsinit.c: Include verify.h. Verify an assumption.
14672         * modules/mbsinit (Depends-on): Add verify.
14673         Suggested by Paul Eggert.
14674
14675 2008-12-17  Bruno Haible  <bruno@clisp.org>
14676
14677         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
14678         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
14679         gl_FUNC_MBRTOWC.
14680         * m4/mbiter.m4 (gl_MBITER): LIkewise.
14681         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
14682         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
14683         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
14684         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
14685         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
14686         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
14687         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
14688         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
14689         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
14690         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
14691         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
14692         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
14693         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
14694         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
14695         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
14696         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
14697         * modules/trim (configure.ac): Likewise.
14698
14699 2008-12-17  Bruno Haible  <bruno@clisp.org>
14700
14701         * modules/btowc-tests: New file.
14702         * tests/test-btowc1.sh: New file.
14703         * tests/test-btowc2.sh: New file.
14704         * tests/test-btowc.c: New file.
14705
14706         New module 'btowc'.
14707         * lib/wchar.in.h (btowc): New declaration.
14708         * lib/btowc.c: New file.
14709         * m4/btowc.m4: New file.
14710         * modules/btowc: New file.
14711         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
14712         HAVE_BTOWC.
14713         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
14714         * doc/posix-functions/btowc.texi: Document the new module.
14715
14716 2008-12-17  Bruno Haible  <bruno@clisp.org>
14717
14718         New module 'mbsinit'.
14719         * lib/wchar.in.h (mbsinit): New declaration.
14720         * lib/mbsinit.c: New file.
14721         * m4/mbsinit.m4: New file.
14722         * modules/mbsinit: New file.
14723         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
14724         HAVE_MBSINIT.
14725         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
14726         HAVE_MBSINIT.
14727         * doc/posix-functions/mbsinit.texi: Document the new module.
14728
14729 2008-12-16  Bruno Haible  <bruno@clisp.org>
14730
14731         * lib/unistd.in.h: Add comment.
14732         * tests/test-environ.c: Don't include <stdlib.h>.
14733
14734 2008-12-16  Bruno Haible  <bruno@clisp.org>
14735
14736         * lib/parse-duration.h (parse_duration): Document return value
14737         convention.
14738         * lib/parse-duration.c: Include specification header first. Add
14739         comments.
14740         (_): Remove macro.
14741         (parse_year_month_day, parse_hour_minute_second): Move side effects
14742         outside of strchr call.
14743         (parse_non_iso8601): Move side effects outside of isspace call.
14744         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
14745         call.
14746
14747 2008-12-16  Bruno Haible  <bruno@clisp.org>
14748
14749         * tests/test-parse-duration.sh: Produce no output when the test
14750         succeeds.
14751
14752 2008-12-16  Bruno Haible  <bruno@clisp.org>
14753
14754         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
14755         expressions.
14756
14757 2008-12-15  Bruno Haible  <bruno@clisp.org>
14758
14759         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
14760         * doc/glibc-functions/flistxattr.texi: Likewise.
14761         * doc/glibc-functions/fopencookie.texi: Likewise.
14762         * doc/glibc-functions/fremovexattr.texi: Likewise.
14763         * doc/glibc-functions/fsetxattr.texi: Likewise.
14764         * doc/glibc-functions/getxattr.texi: Likewise.
14765         * doc/glibc-functions/lgetxattr.texi: Likewise.
14766         * doc/glibc-functions/listxattr.texi: Likewise.
14767         * doc/glibc-functions/llistxattr.texi: Likewise.
14768         * doc/glibc-functions/lremovexattr.texi: Likewise.
14769         * doc/glibc-functions/lsetxattr.texi: Likewise.
14770         * doc/glibc-functions/removexattr.texi: Likewise.
14771         * doc/glibc-functions/setxattr.texi: Likewise.
14772         * doc/posix-functions/open_memstream.texi: Likewise.
14773
14774 2008-12-15  Eric Blake  <ebb9@byu.net>
14775
14776         Update doc for cygwin 1.7.
14777         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
14778         functions.
14779         * doc/posix-functions/fchmodat.texi: Likewise.
14780         * doc/posix-functions/fchownat.texi: Likewise.
14781         * doc/posix-functions/fdopendir.texi: Likewise.
14782         * doc/posix-functions/fmemopen.texi: Likewise.
14783         * doc/posix-functions/freeaddrinfo.texi: Likewise.
14784         * doc/posix-functions/fstatat.texi: Likewise.
14785         * doc/posix-functions/futimens.texi: Likewise.
14786         * doc/posix-functions/gai_strerror.texi: Likewise.
14787         * doc/posix-functions/getaddrinfo.texi: Likewise.
14788         * doc/posix-functions/getnameinfo.texi: Likewise.
14789         * doc/posix-functions/if_freenameindex.texi: Likewise.
14790         * doc/posix-functions/if_indextoname.texi: Likewise.
14791         * doc/posix-functions/if_nameindex.texi: Likewise.
14792         * doc/posix-functions/if_nametoindex.texi: Likewise.
14793         * doc/posix-functions/insque.texi: Likewise.
14794         * doc/posix-functions/linkat.texi: Likewise.
14795         * doc/posix-functions/llrint.texi: Likewise.
14796         * doc/posix-functions/llrintf.texi: Likewise.
14797         * doc/posix-functions/llrintl.texi: Likewise.
14798         * doc/posix-functions/lockf.texi: Likewise.
14799         * doc/posix-functions/lrintl.texi: Likewise.
14800         * doc/posix-functions/mkdirat.texi: Likewise.
14801         * doc/posix-functions/mkfifoat.texi: Likewise.
14802         * doc/posix-functions/mknodat.texi: Likewise.
14803         * doc/posix-functions/mq_close.texi: Likewise.
14804         * doc/posix-functions/mq_getattr.texi: Likewise.
14805         * doc/posix-functions/mq_notify.texi: Likewise.
14806         * doc/posix-functions/mq_open.texi: Likewise.
14807         * doc/posix-functions/mq_receive.texi: Likewise.
14808         * doc/posix-functions/mq_send.texi: Likewise.
14809         * doc/posix-functions/mq_setattr.texi: Likewise.
14810         * doc/posix-functions/mq_timedreceive.texi: Likewise.
14811         * doc/posix-functions/mq_timedsend.texi: Likewise.
14812         * doc/posix-functions/mq_unlink.texi: Likewise.
14813         * doc/posix-functions/open_memstream.texi: Likewise.
14814         * doc/posix-functions/openat.texi: Likewise.
14815         * doc/posix-functions/posix_fadvise.texi: Likewise.
14816         * doc/posix-functions/posix_fallocate.texi: Likewise.
14817         * doc/posix-functions/posix_madvise.texi: Likewise.
14818         * doc/posix-functions/posix_memalign.texi: Likewise.
14819         * doc/posix-functions/posix_openpt.texi: Likewise.
14820         * doc/posix-functions/readlinkat.texi: Likewise.
14821         * doc/posix-functions/remque.texi: Likewise.
14822         * doc/posix-functions/renameat.texi: Likewise.
14823         * doc/posix-functions/rintl.texi: Likewise.
14824         * doc/posix-functions/sem_unlink.texi: Likewise.
14825         * doc/posix-functions/shm_open.texi: Likewise.
14826         * doc/posix-functions/shm_unlink.texi: Likewise.
14827         * doc/posix-functions/signgam.texi: Likewise.
14828         * doc/posix-functions/sigset.texi: Likewise.
14829         * doc/posix-functions/stpcpy.texi: Likewise.
14830         * doc/posix-functions/stpncpy.texi: Likewise.
14831         * doc/posix-functions/strerror.texi: Likewise.
14832         * doc/posix-functions/strtod.texi: Likewise.
14833         * doc/posix-functions/symlinkat.texi: Likewise.
14834         * doc/posix-functions/unlinkat.texi: Likewise.
14835         * doc/posix-functions/utimensat.texi: Likewise.
14836         * doc/glibc-functions/bindresvport.texi: Likewise.
14837         * doc/glibc-functions/dn_expand.texi: Likewise.
14838         * doc/glibc-functions/exp10.texi: Likewise.
14839         * doc/glibc-functions/exp10f.texi: Likewise.
14840         * doc/glibc-functions/fgetxattr.texi: Likewise.
14841         * doc/glibc-functions/flistxattr.texi: Likewise.
14842         * doc/glibc-functions/fopencookie.texi: Likewise.
14843         * doc/glibc-functions/freeifaddrs.texi: Likewise.
14844         * doc/glibc-functions/fremovexattr.texi: Likewise.
14845         * doc/glibc-functions/fsetxattr.texi: Likewise.
14846         * doc/glibc-functions/getifaddrs.texi: Likewise.
14847         * doc/glibc-functions/getxattr.texi: Likewise.
14848         * doc/glibc-functions/lgetxattr.texi: Likewise.
14849         * doc/glibc-functions/listxattr.texi: Likewise.
14850         * doc/glibc-functions/llistxattr.texi: Likewise.
14851         * doc/glibc-functions/lremovexattr.texi: Likewise.
14852         * doc/glibc-functions/lsetxattr.texi: Likewise.
14853         * doc/glibc-functions/pow10.texi: Likewise.
14854         * doc/glibc-functions/pow10f.texi: Likewise.
14855         * doc/glibc-functions/rcmd_af.texi: Likewise.
14856         * doc/glibc-functions/removexattr.texi: Likewise.
14857         * doc/glibc-functions/res_init.texi: Likewise.
14858         * doc/glibc-functions/res_mkquery.texi: Likewise.
14859         * doc/glibc-functions/res_query.texi: Likewise.
14860         * doc/glibc-functions/res_querydomain.texi: Likewise.
14861         * doc/glibc-functions/res_send.texi: Likewise.
14862         * doc/glibc-functions/rresvport_af.texi: Likewise.
14863         * doc/glibc-functions/setxattr.texi: Likewise.
14864         * doc/glibc-functions/strcasestr.texi: Likewise.
14865
14866 2008-12-15  Bruno Haible  <bruno@clisp.org>
14867
14868         Fix compilation error on OSF/1 4.0.
14869         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
14870         <sys/time.h>, simply delegate to the system header.
14871         Reported by Daniel Richard G. <oss@teragram.com>.
14872
14873 2008-12-15  Bruno Haible  <bruno@clisp.org>
14874
14875         * doc/posix-functions/openat.texi: Mention the 'openat' module.
14876         * doc/posix-functions/fchmodat.texi: Likewise.
14877         * doc/posix-functions/fchownat.texi: Likewise.
14878         * doc/posix-functions/fdopendir.texi: Likewise.
14879         * doc/posix-functions/fstatat.texi: Likewise.
14880         * doc/posix-functions/mkdirat.texi: Likewise.
14881         * doc/posix-functions/unlinkat.texi: Likewise.
14882
14883 2008-12-14  Bruno Haible  <bruno@clisp.org>
14884
14885         Update doc for POSIX:2008.
14886         * doc/posix-functions/faccessat.texi: New file.
14887         * doc/posix-functions/fchmodat.texi: New file.
14888         * doc/posix-functions/fchownat.texi: New file.
14889         * doc/posix-functions/fdopendir.texi: New file.
14890         * doc/posix-functions/fstatat.texi: New file.
14891         * doc/posix-functions/futimens.texi: New file.
14892         * doc/posix-functions/linkat.texi: New file.
14893         * doc/posix-functions/mkdirat.texi: New file.
14894         * doc/posix-functions/mkfifoat.texi: New file.
14895         * doc/posix-functions/mknodat.texi: New file.
14896         * doc/posix-functions/open_wmemstream.texi: New file.
14897         * doc/posix-functions/openat.texi: New file.
14898         * doc/posix-functions/psiginfo.texi: New file.
14899         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
14900         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
14901         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
14902         * doc/posix-functions/readlinkat.texi: New file.
14903         * doc/posix-functions/renameat.texi: New file.
14904         * doc/posix-functions/strerror_l.texi: New file.
14905         * doc/posix-functions/symlinkat.texi: New file.
14906         * doc/posix-functions/unlinkat.texi: New file.
14907         * doc/posix-functions/utimensat.texi: New file.
14908         * doc/gnulib.texi (Function Substitutes): Add these subsections.
14909
14910 2008-12-14  Bruno Haible  <bruno@clisp.org>
14911
14912         Update doc for POSIX:2008.
14913         * doc/posix-functions/alphasort.texi: Renamed from
14914         doc/glibc-functions/alphasort.texi.
14915         * doc/posix-functions/dirfd.texi: Renamed from
14916         doc/glibc-functions/dirfd.texi.
14917         * doc/posix-functions/dprintf.texi: Renamed from
14918         doc/glibc-functions/dprintf.texi.
14919         * doc/posix-functions/duplocale.texi: Renamed from
14920         doc/glibc-functions/duplocale.texi.
14921         * doc/posix-functions/fexecve.texi: Renamed from
14922         doc/glibc-functions/fexecve.texi.
14923         * doc/posix-functions/fmemopen.texi: Renamed from
14924         doc/glibc-functions/fmemopen.texi.
14925         * doc/posix-functions/freelocale.texi: Renamed from
14926         doc/glibc-functions/freelocale.texi.
14927         * doc/posix-functions/getdate_err.texi: Renamed from
14928         doc/glibc-functions/getdate_err.texi.
14929         * doc/posix-functions/isalnum_l.texi: Renamed from
14930         doc/glibc-functions/isalnum_l.texi.
14931         * doc/posix-functions/isalpha_l.texi: Renamed from
14932         doc/glibc-functions/isalpha_l.texi.
14933         * doc/posix-functions/isblank_l.texi: Renamed from
14934         doc/glibc-functions/isblank_l.texi.
14935         * doc/posix-functions/iscntrl_l.texi: Renamed from
14936         doc/glibc-functions/iscntrl_l.texi.
14937         * doc/posix-functions/isdigit_l.texi: Renamed from
14938         doc/glibc-functions/isdigit_l.texi.
14939         * doc/posix-functions/isgraph_l.texi: Renamed from
14940         doc/glibc-functions/isgraph_l.texi.
14941         * doc/posix-functions/islower_l.texi: Renamed from
14942         doc/glibc-functions/islower_l.texi.
14943         * doc/posix-functions/isprint_l.texi: Renamed from
14944         doc/glibc-functions/isprint_l.texi.
14945         * doc/posix-functions/ispunct_l.texi: Renamed from
14946         doc/glibc-functions/ispunct_l.texi.
14947         * doc/posix-functions/isspace_l.texi: Renamed from
14948         doc/glibc-functions/isspace_l.texi.
14949         * doc/posix-functions/isupper_l.texi: Renamed from
14950         doc/glibc-functions/isupper_l.texi.
14951         * doc/posix-functions/iswalnum_l.texi: Renamed from
14952         doc/glibc-functions/iswalnum_l.texi.
14953         * doc/posix-functions/iswalpha_l.texi: Renamed from
14954         doc/glibc-functions/iswalpha_l.texi.
14955         * doc/posix-functions/iswblank_l.texi: Renamed from
14956         doc/glibc-functions/iswblank_l.texi.
14957         * doc/posix-functions/iswcntrl_l.texi: Renamed from
14958         doc/glibc-functions/iswcntrl_l.texi.
14959         * doc/posix-functions/iswctype_l.texi: Renamed from
14960         doc/glibc-functions/iswctype_l.texi.
14961         * doc/posix-functions/iswdigit_l.texi: Renamed from
14962         doc/glibc-functions/iswdigit_l.texi.
14963         * doc/posix-functions/iswgraph_l.texi: Renamed from
14964         doc/glibc-functions/iswgraph_l.texi.
14965         * doc/posix-functions/iswlower_l.texi: Renamed from
14966         doc/glibc-functions/iswlower_l.texi.
14967         * doc/posix-functions/iswprint_l.texi: Renamed from
14968         doc/glibc-functions/iswprint_l.texi.
14969         * doc/posix-functions/iswpunct_l.texi: Renamed from
14970         doc/glibc-functions/iswpunct_l.texi.
14971         * doc/posix-functions/iswspace_l.texi: Renamed from
14972         doc/glibc-functions/iswspace_l.texi.
14973         * doc/posix-functions/iswupper_l.texi: Renamed from
14974         doc/glibc-functions/iswupper_l.texi.
14975         * doc/posix-functions/iswxdigit_l.texi: Renamed from
14976         doc/glibc-functions/iswxdigit_l.texi.
14977         * doc/posix-functions/isxdigit_l.texi: Renamed from
14978         doc/glibc-functions/isxdigit_l.texi.
14979         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
14980         doc/glibc-functions/mbsnrtowcs.texi.
14981         * doc/posix-functions/mkdtemp.texi: Renamed from
14982         doc/glibc-functions/mkdtemp.texi.
14983         * doc/posix-functions/newlocale.texi: Renamed from
14984         doc/glibc-functions/newlocale.texi.
14985         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
14986         doc/glibc-functions/nl_langinfo_l.texi.
14987         * doc/posix-functions/open_memstream.texi: Renamed from
14988         doc/glibc-functions/open_memstream.texi.
14989         * doc/posix-functions/opterr.texi: Renamed from
14990         doc/glibc-functions/opterr.texi.
14991         * doc/posix-functions/optind.texi: Renamed from
14992         doc/glibc-functions/optind.texi.
14993         * doc/posix-functions/optopt.texi: Renamed from
14994         doc/glibc-functions/optopt.texi.
14995         * doc/posix-functions/psignal.texi: Renamed from
14996         doc/glibc-functions/psignal.texi.
14997         * doc/posix-functions/scandir.texi: Renamed from
14998         doc/glibc-functions/scandir.texi.
14999         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
15000         doc/glibc-functions/sched_get_priority_min.texi.
15001         * doc/posix-functions/signgam.texi: Renamed from
15002         doc/glibc-functions/signgam.texi.
15003         * doc/posix-functions/stpcpy.texi: Renamed from
15004         doc/glibc-functions/stpcpy.texi.
15005         * doc/posix-functions/stpncpy.texi: Renamed from
15006         doc/glibc-functions/stpncpy.texi.
15007         * doc/posix-functions/strcasecmp_l.texi: Renamed from
15008         doc/glibc-functions/strcasecmp_l.texi.
15009         * doc/posix-functions/strcoll_l.texi: Renamed from
15010         doc/glibc-functions/strcoll_l.texi.
15011         * doc/posix-functions/strfmon_l.texi: Renamed from
15012         doc/glibc-functions/strfmon_l.texi.
15013         * doc/posix-functions/strftime_l.texi: Renamed from
15014         doc/glibc-functions/strftime_l.texi.
15015         * doc/posix-functions/strncasecmp_l.texi: Renamed from
15016         doc/glibc-functions/strncasecmp_l.texi.
15017         * doc/posix-functions/strndup.texi: Renamed from
15018         doc/glibc-functions/strndup.texi.
15019         * doc/posix-functions/strnlen.texi: Renamed from
15020         doc/glibc-functions/strnlen.texi.
15021         * doc/posix-functions/strsignal.texi: Renamed from
15022         doc/glibc-functions/strsignal.texi.
15023         * doc/posix-functions/strxfrm_l.texi: Renamed from
15024         doc/glibc-functions/strxfrm_l.texi.
15025         * doc/posix-functions/timer_gettime.texi: Renamed from
15026         doc/glibc-functions/timer_gettime.texi.
15027         * doc/posix-functions/tolower_l.texi: Renamed from
15028         doc/glibc-functions/tolower_l.texi.
15029         * doc/posix-functions/toupper_l.texi: Renamed from
15030         doc/glibc-functions/toupper_l.texi.
15031         * doc/posix-functions/towctrans_l.texi: Renamed from
15032         doc/glibc-functions/towctrans_l.texi.
15033         * doc/posix-functions/towlower_l.texi: Renamed from
15034         doc/glibc-functions/towlower_l.texi.
15035         * doc/posix-functions/towupper_l.texi: Renamed from
15036         doc/glibc-functions/towupper_l.texi.
15037         * doc/posix-functions/uselocale.texi: Renamed from
15038         doc/glibc-functions/uselocale.texi.
15039         * doc/posix-functions/vdprintf.texi: Renamed from
15040         doc/glibc-functions/vdprintf.texi.
15041         * doc/posix-functions/wcpcpy.texi:
15042         Renamed from doc/glibc-functions/wcpcpy.texi.
15043         * doc/posix-functions/wcpncpy.texi: Renamed from
15044         doc/glibc-functions/wcpncpy.texi.
15045         * doc/posix-functions/wcscasecmp.texi: Renamed from
15046         doc/glibc-functions/wcscasecmp.texi.
15047         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
15048         doc/glibc-functions/wcscasecmp_l.texi.
15049         * doc/posix-functions/wcscoll_l.texi: Renamed from
15050         doc/glibc-functions/wcscoll_l.texi.
15051         * doc/posix-functions/wcsdup.texi: Renamed from
15052         doc/glibc-functions/wcsdup.texi.
15053         * doc/posix-functions/wcsncasecmp.texi: Renamed from
15054         doc/glibc-functions/wcsncasecmp.texi.
15055         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
15056         doc/glibc-functions/wcsncasecmp_l.texi.
15057         * doc/posix-functions/wcsnlen.texi: Renamed from
15058         doc/glibc-functions/wcsnlen.texi.
15059         * doc/posix-functions/wcsnrtombs.texi: Renamed from
15060         doc/glibc-functions/wcsnrtombs.texi.
15061         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
15062         doc/glibc-functions/wcsxfrm_l.texi.
15063         * doc/posix-functions/wctrans_l.texi: Renamed from
15064         doc/glibc-functions/wctrans_l.texi.
15065         * doc/posix-functions/wctype_l.texi: Renamed from
15066         doc/glibc-functions/wctype_l.texi.
15067         * doc/gnulib.texi (Function Substitutes): Add these subsections.
15068         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
15069         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
15070         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
15071         these subsections.
15072         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
15073         Remove sections.
15074
15075 2008-12-14  Bruno Haible  <bruno@clisp.org>
15076
15077         Update doc for POSIX:2008.
15078         * doc/posix-functions/*.texi: Update URL of POSIX specification.
15079
15080 2008-12-14  Bruno Haible  <bruno@clisp.org>
15081
15082         Update doc for POSIX:2008.
15083         * doc/pastposix-functions/bcmp.texi: Renamed from
15084         doc/posix-functions/bcmp.texi.
15085         * doc/pastposix-functions/bcopy.texi: Renamed from
15086         doc/posix-functions/bcopy.texi.
15087         * doc/pastposix-functions/bsd_signal.texi: Renamed from
15088         doc/posix-functions/bsd_signal.texi.
15089         * doc/pastposix-functions/bzero.texi: Renamed from
15090         doc/posix-functions/bzero.texi.
15091         * doc/pastposix-functions/ecvt.texi: Renamed from
15092         doc/posix-functions/ecvt.texi.
15093         * doc/pastposix-functions/fcvt.texi: Renamed from
15094         doc/posix-functions/fcvt.texi.
15095         * doc/pastposix-functions/ftime.texi: Renamed from
15096         doc/posix-functions/ftime.texi.
15097         * doc/pastposix-functions/gcvt.texi: Renamed from
15098         doc/posix-functions/gcvt.texi.
15099         * doc/pastposix-functions/getcontext.texi: Renamed from
15100         doc/posix-functions/getcontext.texi.
15101         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
15102         doc/posix-functions/gethostbyaddr.texi.
15103         * doc/pastposix-functions/gethostbyname.texi: Renamed from
15104         doc/posix-functions/gethostbyname.texi.
15105         * doc/pastposix-functions/getwd.texi: Renamed from
15106         doc/posix-functions/getwd.texi.
15107         * doc/pastposix-functions/h_errno.texi: Renamed from
15108         doc/posix-functions/h_errno.texi.
15109         * doc/pastposix-functions/index.texi: Renamed from
15110         doc/posix-functions/index.texi.
15111         * doc/pastposix-functions/makecontext.texi: Renamed from
15112         doc/posix-functions/makecontext.texi.
15113         * doc/pastposix-functions/mktemp.texi: Renamed from
15114         doc/posix-functions/mktemp.texi.
15115         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
15116         doc/posix-functions/pthread_attr_getstackaddr.texi.
15117         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
15118         doc/posix-functions/pthread_attr_setstackaddr.texi.
15119         * doc/pastposix-functions/rindex.texi: Renamed from
15120         doc/posix-functions/rindex.texi.
15121         * doc/pastposix-functions/scalb.texi: Renamed from
15122         doc/posix-functions/scalb.texi.
15123         * doc/pastposix-functions/setcontext.texi: Renamed from
15124         doc/posix-functions/setcontext.texi.
15125         * doc/pastposix-functions/swapcontext.texi: Renamed from
15126         doc/posix-functions/swapcontext.texi.
15127         * doc/pastposix-functions/ualarm.texi: Renamed from
15128         doc/posix-functions/ualarm.texi.
15129         * doc/pastposix-functions/usleep.texi: Renamed from
15130         doc/posix-functions/usleep.texi.
15131         * doc/pastposix-functions/vfork.texi: Renamed from
15132         doc/posix-functions/vfork.texi.
15133         * doc/pastposix-functions/wcswcs.texi: Renamed from
15134         doc/posix-functions/wcswcs.texi.
15135         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
15136         (Function Substitutes): Update.
15137
15138 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15139
15140         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
15141         m4/strerror.m4.
15142
15143 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15144             Bruno Haible  <bruno@clisp.org>
15145
15146         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
15147
15148 2008-12-13  Bruno Haible  <bruno@clisp.org>
15149
15150         * modules/strtoull (Depends-on): Remove unistd.
15151
15152 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15153
15154         * modules/strtoull (Depends-on): Add stdlib.
15155
15156 2008-12-11  Simon Josefsson  <simon@josefsson.org>
15157
15158         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
15159
15160 2008-12-10  Jim Meyering  <meyering@redhat.com>
15161
15162         gl_ASSERT: don't say assertions are disabled when they're not
15163         * m4/assert.m4 (gl_ASSERT): Do not make configure report
15164         "checking whether to enable assertions... no", when they are in
15165         fact enabled.  This is solely a bug in the output of configure.
15166         In spite of saying "no", NDEBUG was not defined in that case.
15167         Also, as noted by Eric Blake, leave assertions enabled upon
15168         --enable-assert=INVALID.
15169
15170 2008-12-10  Bruno Haible  <bruno@clisp.org>
15171
15172         Change MODULES.html to refer to POSIX:2008 where possible.
15173         * MODULES.html.sh (POSIX2008_URL): New variable.
15174         (posix_headers): Remove sys/timeb, ucontext.
15175         (posix2001_headers): New variable.
15176         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
15177         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
15178         index, makecontext, mktemp, pthread_attr_getstackaddr,
15179         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
15180         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
15181         (posix2001_functions): New variable.
15182         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
15183         otherwise.
15184
15185 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15186
15187         add missing include to parse-duration.c
15188         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
15189         * modules/parse-duration (Depends-on): Add xalloc.
15190
15191         fix sed script reading maint.mk
15192         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
15193         (syntax-check-rules): Use it.
15194
15195 2008-12-09  Bruno Haible  <bruno@clisp.org>
15196
15197         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
15198         MacOS X 10.4/PowerPC.
15199         Reported by Simon Josefsson.
15200
15201 2008-12-08  Jim Meyering  <meyering@redhat.com>
15202
15203         work around mingw's lack of some S_IF definitions
15204         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
15205         Reported by Simon Josefsson.
15206
15207 2008-12-08  Bruno Haible  <bruno@clisp.org>
15208
15209         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
15210         applied to variables. Needed on MacOS X 10.4/PowerPC.
15211         Reported by Simon Josefsson.
15212
15213 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
15214         and Eric Blake  <ebb9@byu.net>
15215
15216         assert: honor --enable-assert
15217         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
15218         order to honor --enable-assert, rather than treating it as a
15219         synonym for --disable-assert.
15220
15221 2008-12-08  Jim Meyering  <meyering@redhat.com>
15222
15223         * lib/posixtm.c: Remove now-useless declaration of mktime.
15224
15225         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
15226
15227 2008-12-07  Bruno Haible  <bruno@clisp.org>
15228
15229         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
15230         test_once): Mark functions as static.
15231         * tests/test-tls.c (test_tls): Likewise.
15232
15233 2008-12-07  Bruno Haible  <bruno@clisp.org>
15234
15235         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
15236         iconv_register_autodetect.
15237
15238 2008-12-07  Jim Meyering  <meyering@redhat.com>
15239
15240         posixtm.c: avoid a warning
15241         * lib/posixtm.c (posixtime): Don't initialize tm0.
15242         It's no longer needed to placate gcc4's -Wuninitialized,
15243         and the attempt to placate would elicit a new warning.
15244
15245         unicodeio.c: mark unused parameters
15246         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
15247         (fallback_failure_callback): Likewise.
15248
15249 2008-12-07  Bruno Haible  <bruno@clisp.org>
15250
15251         * gnulib-tool (func_create_testdir): When building the tests
15252         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
15253         Reported by Simon Josefsson.
15254
15255 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15256
15257         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
15258
15259 2008-12-06  Bruno Haible  <bruno@clisp.org>
15260
15261         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
15262         Suggested by Eric Blake.
15263
15264 2008-12-06  Bruno Haible  <bruno@clisp.org>
15265
15266         Fix a c-stack test failure on MacOS X.
15267         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
15268         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
15269         handler for SIGBUS as well.
15270         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
15271         install a signal handler for SIGBUS as well.
15272         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
15273
15274 2008-12-06  Bruno Haible  <bruno@clisp.org>
15275
15276         Advocacy documentation.
15277         * doc/gnulib-intro.texi (Benefits): New section.
15278         * doc/gnulib.texi: Update.
15279
15280 2008-12-06  Bruno Haible  <bruno@clisp.org>
15281
15282         Document the 'manywarnings' module.
15283         * doc/manywarnings.texi: New file.
15284         * doc/gnulib.texi: Include it.
15285
15286 2008-12-05  Eric Blake  <ebb9@byu.net>
15287
15288         tests: silence some gcc warnings
15289         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
15290         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
15291         type mismatches.
15292
15293 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15294             Bruno Haible  <bruno@clisp.org>
15295
15296         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
15297
15298 2008-11-29  Jim Meyering  <meyering@redhat.com>
15299
15300         unicodeio.c: mark unused parameters
15301         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
15302         (fallback_failure_callback): Likewise.
15303
15304         fts: fix a thinko
15305         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
15306         (set_stat_type): Return S_IF*-valued "type" directly.
15307         Prompted by James Youngman's spotting a related bug.
15308         Confirmed by further testing through find.
15309
15310         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
15311         * lib/fts.c (D_TYPE): Define.
15312         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
15313         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
15314         (s_ifmt_shift_bits): New function.
15315         (set_stat_type): New function.
15316         (fts_build): When not calling fts_stat, call set_stat_type
15317         to propagate dirent.d_type info to fts_read caller.
15318         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
15319         fts_statp->st_mode type information may be valid.
15320
15321 2008-11-28  Simon Josefsson  <simon@josefsson.org>
15322
15323         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
15324         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
15325         <sds@gnu.org>.
15326
15327 2008-11-20  Bruno Haible  <bruno@clisp.org>
15328
15329         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
15330         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
15331         INCLUDE_NEXT.
15332         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
15333         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
15334         * modules/math (Makefile.am): Substitute
15335         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
15336         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15337
15338 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
15339             Bruno Haible  <bruno@clisp.org>
15340
15341         * lib/stdint.in.h: Define all type macros so that their expansion is
15342         a single typedef'ed token. Fixes a compilation failure in Boost which
15343         does "using ::int8_t;".
15344
15345 2008-11-18  Simon Josefsson  <simon@josefsson.org>
15346
15347         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
15348         gl_MANYWARN_ALL_GCC.
15349         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
15350         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
15351         * modules/manywarnings: New file.
15352         * MODULES.html.sh: Mention manywarnings module.
15353
15354 2008-11-18  Bruno Haible  <bruno@clisp.org>
15355
15356         * doc/gnulib-tool.texi (Unit tests): New section.
15357
15358 2008-11-18  Simon Josefsson  <simon@josefsson.org>
15359
15360         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
15361         paths like 'lib/po/foo.po'.
15362
15363 2008-11-17  Simon Josefsson  <simon@josefsson.org>
15364
15365         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
15366         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
15367
15368 2008-11-17  Simon Josefsson  <simon@josefsson.org>
15369
15370         * m4/warnings.m4: Use CPPFLAGS to really check whether the
15371         parameter works.
15372
15373 2008-11-17  Simon Josefsson  <simon@josefsson.org>
15374
15375         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
15376
15377 2008-11-17  Bruce Korb  <bkorb@gnu.org>
15378
15379         * modules/parse-duration-tests: New file.
15380         * tests/test-parse-duration.sh: New file.
15381         * tests/test-parse-duration.c: New file.
15382
15383         New module 'parse-duration'.
15384         * lib/parse-duration.h: New file.
15385         * lib/parse-duration.c: New file.
15386         * modules/parse-duration: New file.
15387
15388 2008-11-17  Bruno Haible  <bruno@clisp.org>
15389
15390         * tests/test-select-out.sh: Comment out the first pipe test.
15391         Reported by Simon Josefsson.
15392
15393 2008-11-17  Bruno Haible  <bruno@clisp.org>
15394
15395         * modules/getaddrinfo (Depends-on): Add servent, hostent.
15396         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
15397         gl_HOSTENT.
15398
15399 2008-11-17  Bruno Haible  <bruno@clisp.org>
15400
15401         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
15402         -lnetwork and -lnet. Needed for Haiku and BeOS.
15403
15404 2008-11-16  Bruno Haible  <bruno@clisp.org>
15405
15406         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
15407
15408 2008-11-16  Bruno Haible  <bruno@clisp.org>
15409
15410         Avoid test failure on Haiku.
15411         * tests/test-fsync.c: Include <errno.h>.
15412         (main): Don't require that fsync (0) fails.
15413
15414 2008-11-15  Bruno Haible  <bruno@clisp.org>
15415
15416         New module 'hostent'.
15417         * modules/hostent: New file.
15418         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
15419
15420 2008-11-15  Bruno Haible  <bruno@clisp.org>
15421
15422         New module 'servent'.
15423         * modules/servent: New file.
15424         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
15425
15426 2008-11-15  Bruno Haible  <bruno@clisp.org>
15427
15428         Avoid generating same test program with two different rules.
15429         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
15430         test-frexp to test-frexp-nolibm.
15431         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
15432         test-frexpl to test-frexpl-nolibm.
15433
15434 2008-11-15  Bruno Haible  <bruno@clisp.org>
15435
15436         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
15437         $(FREXPL_LIBM).
15438
15439 2008-11-15  Bruno Haible  <bruno@clisp.org>
15440
15441         * lib/netdb.in.h: Activate the definitions also when the system's
15442         <netdb.h> has 'struct addrinfo'.
15443         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
15444         EAI_OVERFLOW or AI_NUMERICSERV.
15445         * doc/posix-headers/netdb.texi: Document the problem.
15446
15447 2008-11-15  Bruno Haible  <bruno@clisp.org>
15448
15449         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
15450
15451         Make the 'sched' module work on platforms where <sched.h> exists but
15452         is incomplete (such as Haiku).
15453         * lib/sched.in.h; Include the system's <sched.h> if it exists.
15454         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
15455         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
15456         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
15457         HAVE_STRUCT_SCHED_PARAM.
15458         * modules/sched (Depends-on): Add include_next.
15459         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
15460         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
15461         * doc/posix-headers/sched.texi: Document the issue.
15462
15463 2008-11-13  Jim Meyering  <meyering@redhat.com>
15464
15465         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
15466         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
15467         test would fail due to the difference in the Report bugs to ...
15468         line.  The expected address is empty, "<>", while the actual
15469         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
15470
15471 2008-11-12  Bruno Haible  <bruno@clisp.org>
15472
15473         lstat: don't compile lstat.c on systems lacking lstat
15474         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
15475         which don't have lstat; this is handled by lib/sys_stat.in.h already.
15476         Reported by Daniel P. Berrange via Jim Meyering.
15477
15478 2008-11-12  Jim Meyering  <meyering@redhat.com>
15479
15480         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
15481
15482 2008-11-12  Simon Josefsson  <simon@josefsson.org>
15483
15484         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
15485         instead.
15486
15487 2008-11-12  Bruno Haible  <bruno@clisp.org>
15488
15489         * lib/unicodeio.c: Include unistr.h.
15490         (utf8_wctomb): Remove function.
15491         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
15492
15493 2008-11-12  Simon Josefsson  <simon@josefsson.org>
15494
15495         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
15496         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
15497         <bruno@clisp.org>.
15498         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
15499
15500 2008-11-12  Simon Josefsson  <simon@josefsson.org>
15501
15502         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
15503         * doc/gnulib.texi: Add section for warnings.
15504
15505 2008-11-11  Bruno Haible  <bruno@clisp.org>
15506
15507         * lib/sockets.h: Add a comment.
15508
15509 2008-11-11  Karl Berry  <karl@gnu.org>
15510
15511         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
15512
15513 2008-11-11  Eric Blake  <ebb9@byu.net>
15514
15515         fdl.texi: avoid git symlinks
15516         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
15517
15518 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
15519
15520         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
15521
15522 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
15523
15524         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
15525         (gl_WARN_ADD): Substitute $2 if literal.
15526
15527 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
15528
15529         * m4/warning.m4: Remove.
15530
15531 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
15532
15533         * m4/warnings.m4: Almost complete rewrite. :-)
15534
15535 2008-11-10  Simon Josefsson  <simon@josefsson.org>
15536
15537         * modules/warnings: New module.
15538         * m4/warnings.m4: New file.
15539         * MODULES.html.sh: Mention warnings module.
15540         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
15541         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15542
15543 2008-11-10  Eric Blake  <ebb9@byu.net>
15544
15545         fdl.texi: make a symlink to the latest version
15546         * doc/standards.texi: Revert today's earlier change.
15547         * doc/fdl-1.2.texi: Rename from old fdl.texi...
15548         * doc/fdl.texi: ...and replace this with a symlink to the newer
15549         fdl-1.3.texi.
15550
15551 2008-11-10  Bruno Haible  <bruno@clisp.org>
15552
15553         * tests/test-select-fd.c (main): Accept the result file name as fourth
15554         argument.
15555         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
15556         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
15557
15558 2008-11-10  Bruno Haible  <bruno@clisp.org>
15559
15560         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
15561         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
15562         as autoconf-substituted macros.
15563         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
15564         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
15565         gl_NETDB_H_DEFAULTS. Set these variables.
15566         * modules/netdb (Makefile.am): Substitute these variables.
15567
15568 2008-11-10  Eric Blake  <ebb9@byu.net>
15569
15570         standards.texi: include correct file for FDL 1.3
15571         * doc/standards.texi (GNU Free Documentation License): Change
15572         include file to pull in FDL 1.3, not 1.2.
15573
15574         fdl.texi: revert accidental change to license
15575         * doc/fdl.texi: This is FDL 1.2, not 1.3.
15576
15577 2008-11-10  Bruno Haible  <bruno@clisp.org>
15578
15579         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
15580         cross-compiling guesses also when the native compile gives no result.
15581
15582 2008-11-10  Bruno Haible  <bruno@clisp.org>
15583
15584         * lib/spawni.c (__spawni): Force variable into the stack.
15585
15586 2008-11-10  Bruno Haible  <bruno@clisp.org>
15587
15588         Add support for Haiku.
15589         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
15590         glibc and BeOS, but also on Haiku.
15591         * lib/fpurge.c (fpurge): Likewise.
15592         * lib/freadable.c (freadable): Likewise.
15593         * lib/freadahead.c (freadahead): Likewise.
15594         * lib/freading.c (freading): Likewise.
15595         * lib/freadptr.c (freadptr): Likewise.
15596         * lib/freadseek.c (freadptrinc): Likewise.
15597         * lib/fseeko.c (rpl_fseeko): Likewise.
15598         * lib/fseterr.c (fseterr): Likewise.
15599         * lib/fwritable.c (fwritable): Likewise.
15600         * lib/fwriting.c (fwriting): Likewise.
15601         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
15602
15603 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
15604
15605         * lib/config.charset: Treat Haiku like BeOS.
15606
15607 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
15608
15609         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
15610         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
15611
15612 2008-11-08  Bruno Haible  <bruno@clisp.org>
15613
15614         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
15615         AC_CACHE_CHECK.
15616
15617 2008-11-08  Bruno Haible  <bruno@clisp.org>
15618
15619         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
15620
15621 2008-11-08  Bruno Haible  <bruno@clisp.org>
15622
15623         * tests/test-select-fd.c: New file.
15624         * tests/test-select-in.sh: New file.
15625         * tests/test-select-out.sh: New file.
15626         * tests/test-select-stdin.c: New file.
15627         * modules/select-tests (Files): Add the new files.
15628         (Depends-on): Add gettimeofday.
15629         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
15630         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
15631         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
15632
15633 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
15634             Bruno Haible  <bruno@clisp.org>
15635
15636         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
15637
15638 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
15639
15640         * build-aux/pmccabe2html: Added support for C++ source files.
15641
15642 2008-11-05  Ben Pfaff  <blp@gnu.org>
15643
15644         Fix lib/close.c build on Windows.
15645         * modules/close (Files): Add lib/w32sock.h.
15646
15647 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
15648
15649         Accept Bison's NEWS format.
15650         * build-aux/announce-gen (print_news_deltas): Tweak
15651         $re_prefix.
15652
15653 2008-11-04  Bruno Haible  <bruno@clisp.org>
15654
15655         * modules/random_r (Maintainer): Add glibc.
15656
15657 2008-11-04  Simon Josefsson  <simon@josefsson.org>
15658
15659         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
15660         by karl@freefriends.org (Karl Berry).
15661         * doc/alloca.texi: Likewise.
15662         * doc/c-ctype.texi: Likewise.
15663         * doc/c-strcase.texi: Likewise.
15664         * doc/c-strcaseeq.texi: Likewise.
15665         * doc/c-strcasestr.texi: Likewise.
15666         * doc/c-strstr.texi: Likewise.
15667         * doc/c-strtod.texi: Likewise.
15668         * doc/c-strtold.texi: Likewise.
15669         * doc/ctime.texi: Likewise.
15670         * doc/error.texi: Likewise.
15671         * doc/fdl.texi: Likewise.
15672         * doc/gcd.texi: Likewise.
15673         * doc/getdate.texi: Likewise.
15674         * doc/gnulib-intro.texi: Likewise.
15675         * doc/gnulib-tool.texi: Likewise.
15676         * doc/gnulib.texi: Likewise.
15677         * doc/inet_ntoa.texi: Likewise.
15678         * doc/maintain.texi: Likewise.
15679         * doc/make-stds.texi: Likewise.
15680         * doc/quote.texi: Likewise.
15681         * doc/regexprops-generic.texi: Likewise.
15682         * doc/standards.texi: Likewise.
15683         * doc/verify.texi: Likewise.
15684         * doc/visibility.texi: Likewise.
15685         * doc/gnulib.texi (GNU Free Documentation License): Include
15686         fdl-1.3.texi instead of fdl.texi.
15687
15688 2008-11-04  Simon Josefsson  <simon@josefsson.org>
15689
15690         * doc/fdl-1.3.texi: New file, from
15691         <http://www.gnu.org/licenses/fdl-1.3.texi>.
15692         * modules/fdl-1.3: Add.
15693         * MODULES.html.sh: Add fdl-1.3.
15694
15695 2008-11-03  Bruno Haible  <bruno@clisp.org>
15696
15697         Make determination of absolute name of header file work with AIX xlc.
15698         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
15699         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
15700         preprocessing.
15701         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
15702         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
15703
15704 2008-11-03  Simon Josefsson  <simon@josefsson.org>
15705
15706         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
15707         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
15708         <ludo@gnu.org>.
15709
15710 2008-11-02  Bruno Haible  <bruno@clisp.org>
15711
15712         Mark 'strpbrk' obsolete.
15713         * modules/strpbrk (Status, Notice): New sections.
15714         * modules/strtok_r (Depends-on): Add strpbrk.
15715
15716 2008-11-02  Bruno Haible  <bruno@clisp.org>
15717
15718         Mark 'strdup' obsolete.
15719         * modules/strdup (Status, Notice): New sections.
15720         * modules/findprog (Depends-on): Add strdup.
15721         * modules/getaddrinfo (Depends-on): Likewise.
15722         * modules/localename (Depends-on): Likewise.
15723         * modules/relocatable-lib (Depends-on): Likewise.
15724         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
15725         * modules/relocatable-prog (Depends-on): Likewise.
15726         * modules/trim (Depends-on): Likewise.
15727         * modules/unictype/gen-ctype (Depends-on): Likewise.
15728         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
15729
15730 2008-11-02  Bruno Haible  <bruno@clisp.org>
15731
15732         Mark 'strcspn' obsolete.
15733         * modules/strcspn (Status, Notice): New sections.
15734
15735 2008-11-02  Bruno Haible  <bruno@clisp.org>
15736
15737         Mark 'rmdir' obsolete.
15738         * modules/rmdir (Status, Notice): New sections.
15739         * modules/clean-temp (Depends-on): Add rmdir.
15740         * modules/openat (Depends-on): Likewise.
15741
15742 2008-11-02  Bruno Haible  <bruno@clisp.org>
15743
15744         Mark 'raise' obsolete.
15745         * modules/raise (Status, Notice): New sections.
15746         (Include): Specify <signal.h>.
15747         * modules/stdio (Depends-on): Add raise.
15748         * modules/write (Depends-on): Likewise.
15749
15750 2008-11-02  Bruno Haible  <bruno@clisp.org>
15751
15752         Mark 'memset' obsolete.
15753         * modules/memset (Status, Notice): New sections.
15754
15755 2008-11-02  Bruno Haible  <bruno@clisp.org>
15756
15757         Mark 'memmove' obsolete.
15758         * modules/memmove (Status, Notice): New sections.
15759         * modules/argp (Depends-on): Add memmove.
15760         * modules/argz (Depends-on): Likewise.
15761         * modules/canonicalize (Depends-on): Likewise.
15762         * modules/canonicalize-lgpl (Depends-on): Likewise.
15763         * modules/fts (Depends-on): Likewise.
15764         * modules/getcwd (Depends-on): Likewise.
15765         * modules/human (Depends-on): Likewise.
15766         * modules/regex (Depends-on): Likewise.
15767         * modules/striconveh (Depends-on): Likewise.
15768         * modules/trim (Depends-on): Likewise.
15769         * modules/unistr/u8-move (Depends-on): Likewise.
15770         * modules/unistr/u16-move (Depends-on): Likewise.
15771         * modules/unistr/u32-move (Depends-on): Likewise.
15772
15773 2008-11-02  Bruno Haible  <bruno@clisp.org>
15774
15775         Mark 'memcpy' obsolete.
15776         * modules/memcpy (Status, Notice): New sections.
15777
15778 2008-11-02  Bruno Haible  <bruno@clisp.org>
15779
15780         Mark 'memcmp' obsolete.
15781         * modules/memcmp (Status, Notice): New sections.
15782         * modules/argmatch (Depends-on): Add memchr.
15783         * modules/backupfile (Depends-on): Likewise.
15784         * modules/c-strcasestr (Depends-on): Likewise.
15785         * modules/crypto/des (Depends-on): Likewise.
15786         * modules/csharpcomp (Depends-on): Likewise.
15787         * modules/fnmatch (Depends-on): Likewise.
15788         * modules/git-merge-changelog (Depends-on): Likewise.
15789         * modules/isnand (Depends-on): Likewise.
15790         * modules/isnand-nolibm (Depends-on): Likewise.
15791         * modules/isnanf (Depends-on): Likewise.
15792         * modules/isnanf-nolibm (Depends-on): Likewise.
15793         * modules/isnanl (Depends-on): Likewise.
15794         * modules/isnanl-nolibm (Depends-on): Likewise.
15795         * modules/mbchar (Depends-on): Likewise.
15796         * modules/memcoll (Depends-on): Likewise.
15797         * modules/quotearg (Depends-on): Likewise.
15798         * modules/regex (Depends-on): Likewise.
15799         * modules/relocatable-prog (Depends-on): Likewise.
15800         * modules/same (Depends-on): Likewise.
15801         * modules/signbit (Depends-on): Likewise.
15802         * modules/strcasestr-simple (Depends-on): Likewise.
15803         * modules/unictype/gen-ctype (Depends-on): Likewise.
15804         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
15805         * modules/uniname/uniname (Depends-on): Likewise.
15806         * modules/unistr/u8-cmp (Depends-on): Likewise.
15807
15808 2008-11-02  Bruno Haible  <bruno@clisp.org>
15809
15810         Mark 'memchr' obsolete.
15811         * modules/memchr (Status, Notice): New sections.
15812         * modules/argp (Depends-on): Add memchr.
15813         * modules/base64 (Depends-on): Likewise.
15814         * modules/c-strcasestr (Depends-on): Likewise.
15815         * modules/chdir-long (Depends-on): Likewise.
15816         * modules/fnmatch (Depends-on): Likewise.
15817         * modules/getsubopt (Depends-on): Likewise.
15818         * modules/git-merge-changelog (Depends-on): Likewise.
15819         * modules/glob (Depends-on): Likewise.
15820         * modules/strcasestr-simple (Depends-on): Likewise.
15821         * modules/strnlen (Depends-on): Likewise.
15822
15823 2008-11-02  Bruno Haible  <bruno@clisp.org>
15824
15825         Mark 'atexit' obsolete.
15826         * modules/atexit (Status, Notice): New sections.
15827         * modules/chdir-long (Depends-on): Add atexit.
15828         * modules/wait-process (Depends-on): Likewise.
15829
15830 2008-11-02  Bruno Haible  <bruno@clisp.org>
15831
15832         * gnulib-tool: New option --with-obsolete.
15833         (func_usage): Document it.
15834         (func_modules_transitive_closure): Drop obsolete dependencies if
15835         incobsolete is not true.
15836         (func_import): Read and save the incobsolete variable to the cache.
15837
15838 2008-11-02  Bruno Haible  <bruno@clisp.org>
15839
15840         * modules/TEMPLATE-EXTENDED: New field 'Status'.
15841         * gnulib-tool: New option --extract-status.
15842         (func_usage): Document it.
15843         (sed_extract_prog): Recognize it.
15844         (func_get_status): New function.
15845
15846 2008-10-30  Simon Josefsson  <simon@josefsson.org>
15847
15848         * modules/sockets (License): Change from LGPL to LGPLv2+.
15849
15850 2008-10-28  Simon Josefsson  <simon@josefsson.org>
15851
15852         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
15853
15854 2008-10-28  Simon Josefsson  <simon@josefsson.org>
15855
15856         * MODULES.html.sh (Support for systems lacking POSIX:2001):
15857         Mention times and sys_times.
15858         * modules/sys_times, modules/sys_times-tests: New modules.
15859         * modules/times, modules/times-tests: Likewise
15860         * m4/sys_times_h.m4: New file.
15861         * lib/sys_times.in.h: Likewise
15862         * lib/times.c: Likewise.
15863         * tests/test-sys_times.c: Likewise.
15864         * tests/test-times.c: Likewise.
15865         * doc/posix-headers/sys_times.texi: Update.
15866         * doc/posix-functions/times.texi: Update.
15867
15868 2008-10-28  Jim Meyering  <meyering@redhat.com>
15869
15870         * modules/tempname (Depends-on): Add lstat.
15871
15872         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
15873
15874 2008-10-28  Simon Josefsson  <simon@josefsson.org>
15875
15876         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
15877         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
15878         using idiom used elsewhere in gnulib.
15879
15880 2008-10-27  Jim Meyering  <meyering@redhat.com>
15881
15882         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
15883
15884 2008-10-27  Simon Josefsson  <simon@josefsson.org>
15885
15886         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
15887         TESTS_ENVIRONMENT, for shell scripts that needs to call built
15888         programs.
15889         * tests/test-argp-2.sh: Use $EXEEXT when needed.
15890
15891 2008-10-27  Simon Josefsson  <simon@josefsson.org>
15892
15893         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
15894
15895 2008-10-27  Bruno Haible  <bruno@clisp.org>
15896
15897         * tests/test-lstat.c: Include <stdio.h>.
15898
15899 2008-10-27  Simon Josefsson  <simon@josefsson.org>
15900
15901         * modules/lstat-tests: New module.
15902         * tests/test-lstat.c: New file.
15903
15904 2008-10-26  Jim Meyering  <meyering@redhat.com>
15905
15906         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
15907
15908 2008-10-26  Simon Josefsson  <simon@josefsson.org>
15909             Bruno Haible  <bruno@clisp.org>
15910
15911         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
15912         * modules/configmake (Include): Add a note that the include must come
15913         after all system headers.
15914         * lib/javaversion.c: Include configmake.h after all other includes.
15915
15916 2008-10-26  Bruno Haible  <bruno@clisp.org>
15917
15918         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
15919         HAVE_STRUCT_RANDOM_DATA to 1.
15920         (gl_STDLIB_H): Simplify.
15921
15922 2008-10-26  Simon Josefsson  <simon@josefsson.org>
15923
15924         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
15925         substitute HAVE_STRUCT_RANDOM_DATA.
15926         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
15927         random_data.
15928         * modules/stdlib (Makefile.am): Substitute
15929         HAVE_STRUCT_RANDOM_DATA.
15930
15931 2008-10-26  Simon Josefsson  <simon@josefsson.org>
15932
15933         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
15934         * doc/gnulib-intro.texi (Copyright): Likewise.
15935
15936 2008-10-26  Simon Josefsson  <simon@josefsson.org>
15937
15938         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
15939         findings.
15940
15941 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
15942             Bruno Haible  <bruno@clisp.org>
15943
15944         * lib/unistd.in.h: Include <winsock2.h>.
15945         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
15946         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
15947         Provide dummy declarations.
15948         (gethostname): Override.
15949         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
15950         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
15951         gl_PREREQ_SYS_H_WINSOCK2.
15952         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
15953         * doc/posix-functions/gethostname.texi: More details.
15954
15955 2008-10-25  Bruno Haible  <bruno@clisp.org>
15956
15957         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
15958         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
15959         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
15960
15961         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
15962         here ...
15963         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
15964         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
15965         gl_UNISTD_H_DEFAULTS.
15966
15967 2008-10-25  Eric Blake  <ebb9@byu.net>
15968
15969         signbit: avoid spurious compiler failure
15970         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
15971         declarations inside function.
15972
15973 2008-10-24  Simon Josefsson  <simon@josefsson.org>
15974             Bruno Haible  <bruno@clisp.org>
15975
15976         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
15977         * modules/random_r (Depends-on): Add stdint.
15978
15979 2008-10-24  Bruno Haible  <bruno@clisp.org>
15980
15981         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
15982         Eggert.
15983         * modules/strerror (License): Likewise.
15984
15985 2008-10-24  Jim Meyering  <meyering@redhat.com>
15986
15987         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
15988         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
15989
15990 2008-10-24  Eric Blake  <ebb9@byu.net>
15991
15992         getgroups: fix compilation when getgroups is available
15993         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
15994         but with <config.h> override of getgroups disabled.
15995
15996 2008-10-24  Simon Josefsson  <simon@josefsson.org>
15997
15998         * doc/gnulib.texi (Header files): Add note about C++ problems.
15999         Explained by Bruno Haible <bruno@clisp.org>.
16000
16001 2008-10-23  Bruno Haible  <bruno@clisp.org>
16002
16003         Define a dummy SA_NODEFER macro on Interix.
16004         * lib/signal.in.h (SA_NODEFER): Define fallback.
16005         Reported by Aleksey Cheusov <cheusov@tut.by> via
16006         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
16007
16008 2008-10-23  Bruno Haible  <bruno@clisp.org>
16009
16010         * modules/freadahead (License): Change to LGPLv2+.
16011         Suggested by Simon Josefsson.
16012
16013 2008-10-23  Jim Meyering  <meyering@redhat.com>
16014
16015         random_r: new module
16016         * modules/random_r: New file.
16017         * m4/random_r.m4: New file.
16018         * lib/random_r.c: New file, from glibc.
16019         * modules/random_r-tests: New file.
16020         * tests/test-random_r.c: New file.
16021         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
16022          Declare.
16023         (RAND_MAX): Define.
16024         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
16025         * modules/stdlib: Substitute them, too.
16026         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
16027         * doc/glibc-functions/initstate_r.texi: Mention the new module.
16028         * doc/glibc-functions/random_r.texi: Likewise.
16029         * doc/glibc-functions/setstate_r.texi: Likewise.
16030         * doc/glibc-functions/srandom_r.texi: Likewise.
16031         * config/srclist.txt: Mention it.
16032
16033 2008-10-23  David Lutterkort  <lutter@redhat.com>
16034
16035         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
16036         link requirement
16037
16038 2008-10-23  Jim Meyering  <meyering@redhat.com>
16039
16040         selinux-h: mark parameters of stub functions as intentionally unused
16041         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
16042         * lib/se-context.in.h: Likewise.
16043
16044 2008-10-22  Simon Josefsson  <simon@josefsson.org>
16045
16046         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
16047
16048 2008-10-22  Simon Josefsson  <simon@josefsson.org>
16049
16050         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
16051
16052 2008-10-22  Eric Blake  <ebb9@byu.net>
16053
16054         glthread/thread: avoid compiler warning
16055         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
16056         Add unreachable abort to silence compiler.
16057
16058 2008-10-22  Eric Blake  <ebb9@byu.net>
16059
16060         netdb: also supply struct addrinfo for cygwin 1.5.x
16061         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
16062         older cygwin.
16063         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
16064         cygwin.
16065         * doc/posix-headers/netdb.texi (netdb.h): Document this.
16066
16067 2008-10-22  Bruno Haible  <bruno@clisp.org>
16068
16069         * users.txt: Update entry about pspp.
16070
16071 2008-10-21  Bruno Haible  <bruno@clisp.org>
16072
16073         Simplification.
16074         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
16075         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
16076
16077         Simplification.
16078         * lib/ioctl.c (ioctl): Don't undefine.
16079         * lib/socket.c (socket): Don't undefine.
16080
16081         Remove unused module indicator macros.
16082         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
16083         GNULIB_$1 as a C macro.
16084
16085         * doc/posix-functions/close.texi: Undo last change.
16086         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
16087         Windows platforms.
16088
16089 2008-10-21  Bruno Haible  <bruno@clisp.org>
16090
16091         Add gethostname() declaration to <unistd.h>.
16092         * lib/unistd.in.h (gethostname): New declaration.
16093         * lib/gethostname.c: Include <unistd.h>.
16094         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
16095         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
16096         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
16097         and HAVE_GETHOSTNAME.
16098         * modules/gethostname (Depends-on): Add unistd.
16099         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16100         (Include): Specify <unistd.h>.
16101         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
16102         HAVE_GETHOSTNAME.
16103         * tests/test-gethostname.c: Include <unistd.h> first.
16104
16105 2008-10-21  Bruno Haible  <bruno@clisp.org>
16106
16107         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
16108         * modules/select-tests (Depends-on): Likewise.
16109         Reported by Simon Josefsson.
16110
16111 2008-10-21  Simon Josefsson  <simon@josefsson.org>
16112
16113         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
16114         * lib/accept.c: New file, based on winsock.c.
16115         * lib/bind.c: New file, based on winsock.c.
16116         * lib/connect.c: New file, based on winsock.c.
16117         * lib/getpeername.c: New file, based on winsock.c.
16118         * lib/getsockname.c: New file, based on winsock.c.
16119         * lib/getsockopt.c: New file, based on winsock.c.
16120         * lib/ioctl.c: New file, based on winsock.c.
16121         * lib/listen.c: New file, based on winsock.c.
16122         * lib/recv.c: New file, based on winsock.c.
16123         * lib/recvfrom.c: New file, based on winsock.c.
16124         * lib/send.c: New file, based on winsock.c.
16125         * lib/sendto.c: New file, based on winsock.c.
16126         * lib/setsockopt.c: New file, based on winsock.c.
16127         * lib/shutdown.c: New file, based on winsock.c.
16128         * lib/socket.c: New file, based on winsock.c.
16129         * lib/w32sock.h: New file, based on winsock.c.
16130         * lib/winsock.c: Remove file.
16131         * modules/accept: Likewise.
16132         * modules/bind: Likewise.
16133         * modules/connect: Likewise.
16134         * modules/getpeername: Likewise.
16135         * modules/getsockname: Likewise.
16136         * modules/getsockopt: Likewise.
16137         * modules/ioctl: Likewise.
16138         * modules/listen: Likewise.
16139         * modules/recv: Likewise.
16140         * modules/recvfrom: Likewise.
16141         * modules/send: Likewise.
16142         * modules/sendto: Likewise.
16143         * modules/setsockopt: Likewise.
16144         * modules/shutdown: Likewise.
16145         * modules/socket: Use socket.c instead of winsock.c.
16146         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
16147         * doc/posix-functions/accept.texi: Doc fix.
16148         * doc/posix-functions/bind.texi: Doc fix.
16149         * doc/posix-functions/close.texi: Doc fix.
16150         * doc/posix-functions/connect.texi: Doc fix.
16151         * doc/posix-functions/getpeername.texi: Doc fix.
16152         * doc/posix-functions/getsockname.texi: Doc fix.
16153         * doc/posix-functions/getsockopt.texi: Doc fix.
16154         * doc/posix-functions/ioctl.texi: Doc fix.
16155         * doc/posix-functions/listen.texi: Doc fix.
16156         * doc/posix-functions/recv.texi: Doc fix.
16157         * doc/posix-functions/recvfrom.texi: Doc fix.
16158         * doc/posix-functions/send.texi: Doc fix.
16159         * doc/posix-functions/sendto.texi: Doc fix.
16160         * doc/posix-functions/setsockopt.texi: Doc fix.
16161         * doc/posix-functions/shutdown.texi: Doc fix.
16162         * doc/posix-functions/socket.texi: Doc fix.
16163
16164 2008-10-20  Bruno Haible  <bruno@clisp.org>
16165
16166         Take into account the role of SIGABRT_COMPAT on Windows 2008.
16167         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
16168         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
16169         as an alias for SIGABRT.
16170         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
16171         (sigaction): Map it to SIGABRT.
16172         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
16173
16174 2008-10-20  Bruno Haible  <bruno@clisp.org>
16175
16176         * lib/fts.c: Don't include lstat.h.
16177         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
16178
16179         Move the lstat() declaration to <sys/stat.h>.
16180         * lib/lstat.h: Remove file.
16181         * lib/sys_stat.in.h: Add special invocation convention.
16182         (lstat): New declaration.
16183         * lib/lstat.c (orig_lstat): New function.
16184         (rpl_lstat): Use orig_lstat instead of lstat.
16185         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
16186         AC_C_INLINE. Set REPLACE_LSTAT.
16187         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
16188         and REPLACE_LSTAT.
16189         * modules/lstat (Files): Remove lib/lstat.h.
16190         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
16191         (Include): Specify <sys/stat.h> instead of lstat.h.
16192         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
16193         REPLACE_LSTAT.
16194         * NEWS: Mention the change.
16195
16196 2008-10-20  Bruno Haible  <bruno@clisp.org>
16197
16198         * modules/posix_spawn-tests: New file.
16199         * tests/test-posix_spawn3.c: New file.
16200
16201 2008-10-20  Bruno Haible  <bruno@clisp.org>
16202
16203         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
16204         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
16205         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
16206         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
16207         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
16208
16209 2008-10-20  Bruno Haible  <bruno@clisp.org>
16210
16211         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
16212         of posix_spawn on AIX 5.3.
16213
16214 2008-10-20  Bruno Haible  <bruno@clisp.org>
16215
16216         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
16217
16218 2008-10-20  Bruno Haible  <bruno@clisp.org>
16219
16220         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
16221         of AC_LANG_PROGRAM.
16222
16223 2008-10-20  Simon Josefsson  <simon@josefsson.org>
16224
16225         * lib/netdb.in.h: Don't define GNU specific constants until they
16226         are supported or needed.  Reported by Bruno Haible
16227         <bruno@clisp.org>.
16228
16229 2008-10-20  Simon Josefsson  <simon@josefsson.org>
16230
16231         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
16232
16233 2008-10-20  Simon Josefsson  <simon@josefsson.org>
16234
16235         * lib/getaddrinfo.h: Remove file.
16236         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
16237         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
16238         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
16239         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
16240         * modules/netdb: Substitute GNULIB_GETADDRINFO.
16241         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
16242         * tests/test-getaddrinfo.c: Likewise.
16243         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
16244         * NEWS: Mention change.
16245
16246 2008-10-19  Bruno Haible  <bruno@clisp.org>
16247
16248         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
16249
16250 2008-10-19  Bruno Haible  <bruno@clisp.org>
16251
16252         * lib/wait-process.c: Include simply <sys/wait.h>.
16253         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
16254         WIFSTOPPED): Remove fallback definitions.
16255         * modules/wait-process (Depends-on): Add sys_wait.
16256
16257         New module 'sys_wait'.
16258         * modules/sys_wait: New file.
16259         * lib/sys_wait.in.h: New file, partially copied from
16260         lib/wait-process.c.
16261         * m4/sys_wait_h.m4: New file.
16262         * doc/posix-headers/sys_wait.texi: Mention the new module.
16263
16264 2008-10-19  Bruno Haible  <bruno@clisp.org>
16265
16266         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
16267
16268 2008-10-19  Bruno Haible  <bruno@clisp.org>
16269
16270         Assume that waitpid() fills an 'int' status, not a 'union wait'.
16271         * lib/wait-process.c (WAIT_T): Remove type.
16272         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
16273         (wait_subprocess): Update.
16274
16275 2008-10-19  Bruno Haible  <bruno@clisp.org>
16276
16277         New module 'atoll'.
16278         * modules/atoll: New file.
16279         * lib/stdlib.in.h (atoll): New declaration.
16280         * lib/atoll.c: New file, from glibc with modifications.
16281         * m4/atoll.m4: New file.
16282         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
16283         HAVE_ATOLL.
16284         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
16285         * doc/posix-functions/atoll.texi: Mention the new module.
16286
16287 2008-10-19  Bruno Haible  <bruno@clisp.org>
16288
16289         Add strtoull() declaration to <stdlib.h>.
16290         * lib/stdlib.in.h (strtoull): New declaration.
16291         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
16292         Set HAVE_STRTOULL.
16293         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
16294         HAVE_STRTOULL.
16295         * modules/strtoull (Depends-on): Add stdlib.
16296         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16297         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
16298         HAVE_STRTOULL.
16299
16300 2008-10-19  Bruno Haible  <bruno@clisp.org>
16301
16302         Add strtoll() declaration to <stdlib.h>.
16303         * lib/stdlib.in.h (strtoll): New declaration.
16304         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
16305         Set HAVE_STRTOLL.
16306         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
16307         HAVE_STRTOLL.
16308         * modules/strtoll (Depends-on): Add stdlib.
16309         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16310         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
16311
16312 2008-10-19  Bruno Haible  <bruno@clisp.org>
16313
16314         * modules/bcopy (Depends-on): Add strings.
16315         (Include): Specify <strings.h>.
16316
16317 2008-10-19  Bruno Haible  <bruno@clisp.org>
16318
16319         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
16320
16321 2008-10-19  Bruno Haible  <bruno@clisp.org>
16322
16323         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
16324         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
16325         mingw.
16326
16327 2008-10-19  Bruno Haible  <bruno@clisp.org>
16328
16329         * lib/atanl.c: Don't include isnanl.h.
16330         * lib/cosl.c: Likewise.
16331         * lib/ldexpl.c: Likewise.
16332         * lib/logl.c: Likewise.
16333         * lib/sinl.c: Likewise.
16334         * lib/sqrtl.c: Likewise.
16335         * lib/tanl.c: Likewise.
16336
16337         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
16338         * lib/isnanf.h: Remove file.
16339         * lib/isnand.h: Remove file.
16340         * lib/isnanl.h: Remove file.
16341         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
16342         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
16343         macros.
16344         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
16345         HAVE_ISNANF, don't define it as a C macro.
16346         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
16347         HAVE_ISNAND, don't define it as a C macro.
16348         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
16349         HAVE_ISNANL, don't define it as a C macro.
16350         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
16351         HAVE_ISNAN[FDL].
16352         * modules/isnanf (Files): Remove lib/isnanf.h.
16353         (Depends-on): Add math.
16354         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
16355         (Include): Specify <math.h> instead of isnanf.h.
16356         * modules/isnand (Files): Remove lib/isnand.h.
16357         (Depends-on): Add math.
16358         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
16359         (Include): Specify <math.h> instead of isnand.h.
16360         * modules/isnanl (Files): Remove lib/isnanl.h.
16361         (Depends-on): Add math.
16362         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
16363         (Include): Specify <math.h> instead of isnanl.h.
16364         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
16365         HAVE_ISNAN[FDL].
16366         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
16367         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
16368         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
16369         * NEWS: Mention the change.
16370
16371 2008-10-18  Bruno Haible  <bruno@clisp.org>
16372
16373         Add getusershell(), setusershell(), endusershell() declarations to
16374         <unistd.h>.
16375         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
16376         declarations.
16377         * lib/getusershell.c: Include unistd.h.
16378         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
16379         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
16380         HAVE_GETUSERSHELL.
16381         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
16382         and HAVE_GETUSERSHELL.
16383         * modules/getusershell (Depends-on): Add unistd, extensions.
16384         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16385         (Include): Specify <unistd.h>.
16386         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
16387         HAVE_GETUSERSHELL.
16388
16389 2008-10-18  Bruno Haible  <bruno@clisp.org>
16390
16391         Add a getloadavg() declaration to <stdlib.h>.
16392         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
16393         getloadavg declaration.
16394         (getloadavg): New declaration.
16395         * lib/getloadavg.c: Include <stdlib.h> first.
16396         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
16397         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
16398         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
16399         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
16400         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
16401         * modules/getloadavg (Depends-on): Add stdlib, extensions.
16402         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16403         (Include): Specify <stdlib.h>.
16404         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
16405         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
16406
16407 2008-10-18  Bruno Haible  <bruno@clisp.org>
16408
16409         * lib/dirchownmod.c: Don't include lchmod.h.
16410
16411         Move the lchmod() declaration to <sys/stat.h>.
16412         * lib/lchmod.h: Remove file.
16413         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
16414         (lchmod): New declaration, moved here from lib/lchown.h.
16415         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
16416         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
16417         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
16418         and HAVE_LCHMOD.
16419         * modules/lchmod (Files): Remove lib/lchmod.h.
16420         (Depends-on): Add sys_stat, extensions.
16421         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
16422         (Include): Specify <sys/stat.h> instead of lchmod.h.
16423         * modules/sys_stat (Depends-on): Add link-warning.
16424         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
16425         definition of GL_LINK_WARNING.
16426         * NEWS: Mention the change.
16427
16428 2008-10-18  Bruno Haible  <bruno@clisp.org>
16429
16430         * lib/fchdir.c: Don't include dirfd.h.
16431         * lib/fts.c: Likewise.
16432         * lib/getcwd.c: Likewise.
16433         * lib/glob.c: Likewise.
16434
16435         Move the dirfd() declaration to <dirent.h>.
16436         * lib/dirfd.h: Remove file.
16437         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
16438         (dirfd): New declaration.
16439         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
16440         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
16441         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
16442         HAVE_DECL_DIRFD.
16443         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
16444         HAVE_DECL_DIRFD.
16445         * modules/dirfd (Files): Remove lib/dirfd.h.
16446         (Depends-on): Add dirent, extensions.
16447         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
16448         (Include): Specify <dirent.h> instead of dirfd.h.
16449         * modules/dirent (Depends-on): Add link-warning.
16450         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
16451         definition of GL_LINK_WARNING.
16452         * NEWS: Mention the change.
16453
16454 2008-10-18  Bruno Haible  <bruno@clisp.org>
16455
16456         Move the euidaccess() declaration to <unistd.h>.
16457         * lib/euidaccess.h: Remove file.
16458         * lib/unistd.in.h (euidaccess): New declaration.
16459         * lib/euidaccess.c: Don't include euidaccess.h.
16460         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
16461         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
16462         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
16463         and HAVE_EUIDACCESS.
16464         * modules/euidaccess (Files): Remove lib/euidaccess.h.
16465         (Depends-on): Add unistd.
16466         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16467         (Include): Specify <unistd.h> instead of euidaccess.h.
16468         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
16469         HAVE_EUIDACCESS.
16470         * NEWS: Mention the change.
16471
16472 2008-10-18  Bruno Haible  <bruno@clisp.org>
16473
16474         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
16475
16476         Move the getdomainname() declaration to <unistd.h>.
16477         * lib/getdomainname.h: Remove file.
16478         * lib/unistd.in.h (getdomainname): New declaration.
16479         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
16480         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
16481         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
16482         HAVE_GETDOMAINNAME.
16483         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
16484         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
16485         * modules/getdomainname (Files): Remove lib/getdomainname.h.
16486         (Depends-on): Add unistd, extensions.
16487         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16488         (Includes): Specify <unistd.h> instead of getdomainname.h.
16489         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
16490         HAVE_GETDOMAINNAME.
16491         * NEWS: Mention the change.
16492
16493 2008-10-18  Bruno Haible  <bruno@clisp.org>
16494
16495         * modules/dirent: New file.
16496         * m4/dirent_h.m4: New file.
16497         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
16498         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
16499         * modules/fchdir (Files): Remove lib/dirent.in.h.
16500         (Depends-on): Add dirent.
16501         (Makefile.am): Move rules to modules/dirent.
16502         * doc/posix-headers/dirent.texi: Mention the new module.
16503
16504 2008-10-18  Bruno Haible  <bruno@clisp.org>
16505
16506         Avoid -Wunused-parameter warnings in public gnulib header files.
16507         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
16508         macro.
16509         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
16510
16511 2008-10-18  Bruno Haible  <bruno@clisp.org>
16512
16513         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
16514         * doc/glibc-functions/error.texi: Mention the module 'error'.
16515         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
16516         * doc/glibc-functions/getdomainname.texi: Mention the module
16517         'getdomainname'.
16518         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
16519         * doc/glibc-functions/getpagesize.texi: Mention the module
16520         'getpagesize'.
16521         * doc/glibc-functions/getusershell.texi: Mention the module
16522         'getusershell'.
16523         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
16524         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
16525         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
16526         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
16527         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
16528         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
16529         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
16530         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
16531         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
16532         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
16533         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
16534         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
16535         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
16536         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
16537
16538 2008-10-17  Bruno Haible  <bruno@clisp.org>
16539
16540         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
16541         HP-UX and IRIX, use -0.0L.
16542         * tests/test-ceill.c (minus_zero): Likewise.
16543         * tests/test-floorl.c (minus_zero): Likewise.
16544         * tests/test-frexpl.c (minus_zero): Likewise.
16545         * tests/test-isnan.c (minus_zerol): Likewise.
16546         * tests/test-isnanl.h (minus_zero): Likewise.
16547         * tests/test-ldexpl.c (minus_zero): Likewise.
16548         * tests/test-roundl.c (minus_zero): Likewise.
16549         * tests/test-signbit.c (minus_zerol): Likewise.
16550         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
16551         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
16552         * tests/test-truncl.c (minus_zero): Likewise.
16553         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
16554         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
16555         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
16556         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
16557
16558 2008-10-17  Bruno Haible  <bruno@clisp.org>
16559
16560         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
16561         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
16562         that it gets activated only for gcc >= 3.0.
16563         * lib/dirent.in.h: Likewise.
16564         * lib/errno.in.h: Likewise.
16565         * lib/fcntl.in.h: Likewise.
16566         * lib/float.in.h: Likewise.
16567         * lib/iconv.in.h: Likewise.
16568         * lib/inttypes.in.h: Likewise.
16569         * lib/locale.in.h: Likewise.
16570         * lib/math.in.h: Likewise.
16571         * lib/netdb.in.h: Likewise.
16572         * lib/netinet_in.in.h: Likewise.
16573         * lib/search.in.h: Likewise.
16574         * lib/signal.in.h: Likewise.
16575         * lib/spawn.in.h: Likewise.
16576         * lib/stdarg.in.h: Likewise.
16577         * lib/stdint.in.h: Likewise.
16578         * lib/stdio.in.h: Likewise.
16579         * lib/stdlib.in.h: Likewise.
16580         * lib/string.in.h: Likewise.
16581         * lib/strings.in.h: Likewise.
16582         * lib/sys_file.in.h: Likewise.
16583         * lib/sys_ioctl.in.h: Likewise.
16584         * lib/sys_select.in.h: Likewise.
16585         * lib/sys_socket.in.h: Likewise.
16586         * lib/sys_stat.in.h: Likewise.
16587         * lib/sys_time.in.h: Likewise.
16588         * lib/sysexits.in.h: Likewise.
16589         * lib/time.in.h: Likewise.
16590         * lib/unistd.in.h: Likewise.
16591         * lib/wchar.in.h: Likewise.
16592         * lib/wctype.in.h: Likewise.
16593         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
16594
16595 2008-10-17  Jim Meyering  <meyering@redhat.com>
16596
16597         ignore-value: don't depend on inline module
16598         * modules/ignore-value (Depends-on): Remove 'inline'.
16599         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
16600         Suggestion from Bruno Haible.
16601
16602 2008-10-17  Bruno Haible  <bruno@clisp.org>
16603
16604         New implementation of condition variables for Win32.
16605         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
16606         (gl_linked_waitqueue_t): New type.
16607         (gl_cond_t): Use it.
16608         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
16609         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
16610         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
16611         (glthread_cond_init_func, glthread_cond_wait_func,
16612         glthread_cond_timedwait_func, glthread_cond_signal_func,
16613         glthread_cond_broadcast_func, glthread_cond_destroy_func):
16614         Reimplemented on the basis of gl_linked_waitqueue_t.
16615         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
16616         gl_waitqueue_t.
16617         (gl_rwlock_t): Update.
16618         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
16619
16620 2008-10-17  Simon Josefsson  <simon@josefsson.org>
16621
16622         * modules/recvfrom (Depends-on): Add dependency on getpeername.
16623         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16624
16625 2008-10-17  Jim Meyering  <meyering@redhat.com>
16626
16627         ignore-value: new module
16628         * modules/ignore-value: New file.
16629         * lib/ignore-value.h: New file.
16630         * MODULES.html.sh (Compiler warning management): New section,
16631         just for this module.  More to come.
16632
16633 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
16634
16635         open-safer.c: avoid 'signed and unsigned in conditional...' warning
16636         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
16637         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
16638
16639 2008-10-16  Jim Meyering  <meyering@redhat.com>
16640
16641         openat-die.c: avoid 'no previous prototype' warning
16642         * lib/openat-die.c: Include "openat.h".
16643         Reported by Reuben Thomas <rrt@sc3d.org>.
16644
16645 2008-10-16  Simon Josefsson  <simon@josefsson.org>
16646
16647         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
16648         * lib/netdb.in.h: Fix typo.
16649         Reported by Bruno Haible  <bruno@clisp.org>
16650
16651         * lib/netdb.in.h: Include sys/socket.h for platforms without
16652         netdb.h, to get structures like hostent on MinGW.
16653         * modules/netdb (Depends-on): Add sys_socket.
16654
16655 2008-10-15  Simon Josefsson  <simon@josefsson.org>
16656
16657         * modules/netdb, modules/netdb-tests: New file.
16658         * m4/netdb_h.m4: New file.
16659         * lib/netdb.in.h: Add, currently just an empty file pending
16660         definitions.
16661         * tests/test-netdb.c: New file.
16662         * doc/posix-headers/netdb.texi: Mention that we replace it if
16663         needed.
16664         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16665         netdb.
16666
16667 2008-10-15  Simon Josefsson  <simon@josefsson.org>
16668
16669         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
16670         with code.
16671
16672 2008-10-13  Bruno Haible  <bruno@clisp.org>
16673
16674         * lib/glthread/cond.c (glthread_cond_wait_func,
16675         glthread_cond_timedwait_func): Add a comment.
16676
16677 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16678
16679         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
16680         * tests/test-select.c: Likewise,
16681
16682 2008-10-13  Bruno Haible  <bruno@clisp.org>
16683
16684         * lib/glthread/cond.c (glthread_cond_wait_func,
16685         glthread_cond_timedwait_func): Fix variable name.
16686         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16687
16688 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
16689
16690         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
16691         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
16692         struct sockaddr.sa_len.
16693         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
16694
16695 2008-10-13  Simon Josefsson  <simon@josefsson.org>
16696
16697         * build-aux/pmccabe2html: Add css and css_url parameters.
16698
16699 2008-10-12  Bruno Haible  <bruno@clisp.org>
16700
16701         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
16702         calling aclx_get.
16703         Reported by Rainer Tammer <tammer@tammer.net>.
16704
16705 2008-10-12  Bruno Haible  <bruno@clisp.org>
16706
16707         Use msvcrt aware primitives for creation/termination of Win32 threads.
16708         * lib/glthread/thread.c: Include <process.h>.
16709         (glthread_create_func): Use _beginthreadex instead of CreateThread.
16710         (wrapper_func): Update signature.
16711         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
16712
16713 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16714             Bruno Haible  <bruno@clisp.org>
16715
16716         Provide a Win32 implementation of the 'cond' module.
16717         * lib/glthread/cond.h [USE_WIN32]: New implementation.
16718         * lib/glthread/cond.c (glthread_cond_init_func,
16719         glthread_cond_wait_func, glthread_cond_timedwait_func,
16720         glthread_cond_signal_func, glthread_cond_broadcast_func,
16721         glthread_cond_destroy_func) [USE_WIN32]: New functions.
16722         * modules/cond (Dependencies): Add gettimeofday.
16723
16724 2008-10-11  Bruno Haible  <bruno@clisp.org>
16725
16726         Make sleep work on older versions of mingw.
16727         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
16728         only whether it exists.
16729         * doc/posix-functions/sleep.texi: Mention the problem with older
16730         versions of mingw.
16731
16732 2008-10-11  Bruno Haible  <bruno@clisp.org>
16733
16734         New module 'shutdown'.
16735         * modules/shutdown: New file.
16736         * lib/sys_socket.in.h (shutdown): New declaration.
16737         * lib/winsock.c (shutdown): New function.
16738         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
16739         GNULIB_SHUTDOWN.
16740         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
16741         * doc/posix-functions/shutdown.texi: Document the new module.
16742
16743 2008-10-11  Jim Meyering  <meyering@redhat.com>
16744
16745         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
16746
16747 2008-10-11  Bruno Haible  <bruno@clisp.org>
16748
16749         New module 'fclose'.
16750         * modules/fclose: New file.
16751         * lib/stdio.in.h (fclose): New declaration.
16752         * lib/fclose.c: New file.
16753         * m4/fclose.m4: New file.
16754         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
16755         REPLACE_FCLOSE.
16756         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
16757         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
16758         REPLACE_FCLOSE.
16759         * modules/close (Depends-on): fclose.
16760         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
16761
16762 2008-10-11  Bruno Haible  <bruno@clisp.org>
16763
16764         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
16765         set errno and don't call _close.
16766
16767 2008-10-10  Bruno Haible  <bruno@clisp.org>
16768
16769         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
16770         ACL, not afterwards. Fixes test failure on Cygwin.
16771
16772 2008-10-09  Ben Pfaff  <blp@gnu.org>
16773
16774         * build-aux/announce-gen: Fix gnulib version related part of usage
16775         message.  Die with a useful error message if no tarballs are
16776         found.
16777
16778 2008-10-10  Jim Meyering  <meyering@redhat.com>
16779
16780         bootstrap: use git's --depth=N option only if it's supported
16781         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
16782         recognize the --depth option.  Reported by Pádraig Brady.
16783
16784 2008-10-09  Bruno Haible  <bruno@clisp.org>
16785
16786         New module 'ioctl'.
16787         * modules/ioctl: New file.
16788         * lib/sys_socket.in.h (ioctl): Remove declaration.
16789         * lib/winsock.c: Include <sys/ioctl.h>.
16790         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
16791         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
16792         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
16793         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
16794         * doc/posix-functions/ioctl.texi: Mention the new module.
16795
16796 2008-10-09  Bruno Haible  <bruno@clisp.org>
16797
16798         New module 'sys_ioctl'.
16799         * lib/sys_ioctl.in.h: New file.
16800         * m4/sys_ioctl_h.m4: New file.
16801         * modules/sys_ioctl: New file.
16802         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
16803
16804 2008-10-09  Bruno Haible  <bruno@clisp.org>
16805
16806         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
16807         * lib/winsock.c: Include <stdarg.h>.
16808         (rpl_ioctl): Change to second argument 'int' and then varargs.
16809
16810 2008-10-09  Bruno Haible  <bruno@clisp.org>
16811
16812         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
16813         when the sys_socket module is present and the system has <winsock2.h>.
16814
16815 2008-10-09  Bruno Haible  <bruno@clisp.org>
16816
16817         * doc/posix-functions/close.texi: Mention module 'close' instead of
16818         module 'sys_socket'.
16819
16820 2008-10-09  Bruno Haible  <bruno@clisp.org>
16821
16822         * doc/glibc-headers/sys_ioctl.texi: New file.
16823         * doc/gnulib.texi: Include it.
16824
16825 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
16826             Bruno Haible  <bruno@clisp.org>
16827
16828         Combine the two replacements of 'close'.
16829         * lib/sys_socket.in.h (close): Define to a reminder to include
16830         <unistd.h>.
16831         (_gl_close_fd_maybe_socket): New declaration.
16832         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
16833         * lib/winsock.c (close): Remove undefinition.
16834         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
16835         needed for the gnulib module 'close'.
16836         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
16837         define to an error symbol or to a warning, if suitable.
16838         * lib/close.c: Include <sys/socket.h>.
16839         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
16840         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
16841         UNISTD_H_HAVE_WINSOCK2_H.
16842         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
16843         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
16844         UNISTD_H_HAVE_WINSOCK2_H.
16845         * modules/sys_socket (Files): Add m4/unistd_h.m4.
16846         (configure.ac): Set a module indicator.
16847         (Makefile.am): Substitute GNULIB_CLOSE.
16848         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
16849         * modules/poll-tests (Depends-on): Add close.
16850         * modules/select-tests (Depends-on): Likewise.
16851
16852 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
16853             Bruno Haible  <bruno@clisp.org>
16854
16855         New module 'close'.
16856         * modules/close: New file.
16857         * lib/unistd.in.h (close): Move declaration out of the
16858         FCHDIR_REPLACEMENT scope.
16859         (_gl_unregister_fd): New declaration.
16860         * lib/close.c: New file.
16861         * lib/fchdir.c (rpl_close): Remove function.
16862         * m4/close.m4: New file.
16863         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
16864         close.
16865         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
16866         REPLACE_CLOSE.
16867         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
16868         REPLACE_CLOSE.
16869         * modules/fchdir (Depends-on): Add close.
16870
16871 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
16872             Bruno Haible  <bruno@clisp.org>
16873
16874         * lib/fcntl.in.h (open): Simplify conditionals.
16875         (_gl_register_fd): New declaration.
16876         * lib/fchdir.c (rpl_open): Remove function.
16877         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
16878         also.
16879         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
16880         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
16881         open.
16882
16883 2008-10-09  Jim Meyering  <meyering@redhat.com>
16884
16885         GNUmakefile: use the more name-space-friendly "_version"
16886         * top/GNUmakefile (_dummy): Update.
16887         (_version): Rename from "version".
16888
16889 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
16890             Bruno Haible  <bruno@clisp.org>
16891
16892         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
16893         rpl_close.
16894         (_gl_register_fd): New function, extracted from rpl_open.
16895         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
16896         (rpl_open, rpl_opendir): Use _gl_register_fd.
16897
16898 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
16899
16900         Fix organization of 'open' replacement.
16901         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
16902         (gl_FUNC_OPEN): Use it.
16903         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
16904
16905 2008-10-08  Bruno Haible  <bruno@clisp.org>
16906
16907         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
16908
16909 2008-10-08  Simon Josefsson  <simon@josefsson.org>
16910
16911         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
16912         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
16913         listen).
16914
16915 2008-10-08  Eric Blake  <ebb9@byu.net>
16916
16917         GNUmakefile: add 'make version' target
16918         * top/GNUmakefile (_curr-ver): Split version update rules...
16919         (version): ...into a target.
16920
16921 2008-10-07  Bruno Haible  <bruno@clisp.org>
16922
16923         Use a more portable replacement expression for -0.0L.
16924         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
16925         instead of -0.0L. Fix m4 quotation.
16926
16927         * tests/test-signbit.c: Include <float.h>.
16928         (minus_zero): New variable.
16929         (test_signbitl): Use minus_zero instead of -zero.
16930         * modules/signbit-tests (Depends-on): Add float.
16931
16932         * tests/test-ceill.c: Include <float.h>.
16933         (zero): Remove variable.
16934         (minus_zero): New variable.
16935         (main): Use minus_zero instead of -zero.
16936         * modules/ceill-tests (Depends-on): Add float.
16937
16938         * tests/test-floorl.c: Include <float.h>.
16939         (zero): Remove variable.
16940         (minus_zero): New variable.
16941         (main): Use minus_zero instead of -zero.
16942         * modules/floorl-tests (Depends-on): Add float.
16943
16944         * tests/test-roundl.c: Include <float.h>.
16945         (zero): Remove variable.
16946         (minus_zero): New variable.
16947         (main): Use minus_zero instead of -zero.
16948         * modules/roundl-tests (Depends-on): Add float.
16949
16950         * tests/test-truncl.c: Include <float.h>.
16951         (zero): Remove variable.
16952         (minus_zero): New variable.
16953         (main): Use minus_zero instead of -zero.
16954         * modules/truncl-tests (Depends-on): Add float.
16955
16956         * tests/test-frexpl.c (zero): Remove variable.
16957         (minus_zero): New variable.
16958         (main): Use minus_zero instead of -zero.
16959         * modules/frexpl-tests (Depends-on): Add float.
16960
16961         * tests/test-isnan.c (zerol): Remove variable.
16962         (minus_zerol): New variable.
16963         (test_long_double): Use minus_zerol instead of -zerol.
16964         * modules/isnan-tests (Depends-on): Add float.
16965
16966         * tests/test-isnanl.h (zero): Remove variable.
16967         (minus_zero): New variable.
16968         (main): Use minus_zero instead of -zero.
16969         * modules/isnanl-nolibm-tests (Depends-on): Add float.
16970         * modules/isnanl-tests (Depends-on): Add float.
16971
16972         * tests/test-ldexpl.c (zero): Remove variable.
16973         (minus_zero): New variable.
16974         (main): Use minus_zero instead of -zero.
16975         * modules/ldexpl-tests (Depends-on): Add float.
16976
16977         * tests/test-snprintf-posix.h (zerol): Remove variable.
16978         (minus_zerol): New variable.
16979         (test_function): Use minus_zerol instead of -zerol.
16980         * modules/snprintf-posix-tests (Depends-on): Add float.
16981         * modules/vsnprintf-posix-tests (Depends-on): Add float.
16982
16983         * tests/test-sprintf-posix.h (zerol): Remove variable.
16984         (minus_zerol): New variable.
16985         (test_function): Use minus_zerol instead of -zerol.
16986         * modules/sprintf-posix-tests (Depends-on): Add float.
16987         * modules/vsprintf-posix-tests (Depends-on): Add float.
16988
16989         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
16990         (minus_zerol): New variable.
16991         (test_function): Use minus_zerol instead of -zerol.
16992         * modules/vasnprintf-posix-tests (Depends-on): Add float.
16993
16994         * tests/test-vasprintf-posix.c (zerol): Remove variable.
16995         (minus_zerol): New variable.
16996         (test_function): Use minus_zerol instead of -zerol.
16997         * modules/vasprintf-posix-tests (Depends-on): Add float.
16998
16999 2008-10-07  Simon Josefsson  <simon@josefsson.org>
17000
17001         * MODULES.html.sh (Support for building documentation): Mention
17002         pmccabe2html.  Sort entries.
17003
17004         Add pmccabe2html module, from gnupdf.
17005         * build-aux/pmccabe.css: New file.
17006         * build-aux/pmccabe2html: New file.
17007         * m4/pmccabe2html.m4: New file.
17008         * modules/pmccabe2html: New file.
17009
17010 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
17011
17012         flock: new module
17013         * MODULES.html.sh: Add to list of modules.
17014         * lib/flock.c: flock implementation for Windows and Unix systems
17015         which have fcntl.
17016         * doc/glibc-functions/flock.texi: Update documentation.
17017         * lib/sys_file.in.h: <sys/file.h> header file.
17018         * m4/flock.m4: M4 macros.
17019         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
17020         * modules/flock: flock module.
17021         * modules/flock-tests: flock tests module.
17022         * modules/sys_file: sys/file.h module.
17023         * tests/test-flock.c: test suite for flock.
17024
17025 2008-10-06  Jim Meyering  <meyering@redhat.com>
17026
17027         bootstrap: check for LT_INIT more portably still ;-)
17028         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
17029         Spotted by Bruno Haible.
17030
17031 2008-10-06  Eric Blake  <ebb9@byu.net>
17032
17033         test-signbit: avoid tripping Irix cc bug on -0.0L
17034         * tests/test-signbit.c (minus_zerol): Delete, and replace with
17035         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
17036         entire testsuite consistent and avoids an Irix 6.2 bug.
17037
17038 2008-10-05  Bruno Haible  <bruno@clisp.org>
17039             Jim Meyering  <jim@meyering.net>
17040
17041         Add an option for ignoring EPIPE during close_stdout.
17042         * lib/closeout.h: Include <stdbool.h>.
17043         (close_stdout_set_ignore_EPIPE): New declaration.
17044         * lib/closeout.c: Include <stdbool.h>.
17045         (ignore_EPIPE): New variable.
17046         (close_stdout_set_ignore_EPIPE): New function.
17047         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
17048         * lib/close-stream.c (close_stream): Mention the possible EPIPE
17049         failure.
17050         * modules/closeout (Depends-on): Add stdbool.
17051
17052 2008-10-05  Bruno Haible  <bruno@clisp.org>
17053
17054         * modules/accept: New file.
17055         * modules/bind: New file.
17056         * modules/connect: New file.
17057         * modules/getpeername: New file.
17058         * modules/getsockname: New file.
17059         * modules/getsockopt: New file.
17060         * modules/listen: New file.
17061         * modules/recv: New file.
17062         * modules/recvfrom: New file.
17063         * modules/send: New file.
17064         * modules/sendto: New file.
17065         * modules/setsockopt: New file.
17066         * modules/socket: New file.
17067         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
17068         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
17069         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
17070         the particular module is requested. Add a link warning when the
17071         particular module is not requested.
17072         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
17073         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
17074         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
17075         the particular module is requested.
17076         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
17077         gl_SYS_SOCKET_H_DEFAULTS): New macros.
17078         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
17079         * modules/sys_socket (Depends-on): Add link-warning.
17080         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
17081         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
17082         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
17083         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
17084         GL_LINK_WARNING.
17085         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
17086         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
17087         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
17088         * doc/posix-functions/getpeername.texi: Mention the new module
17089         'getpeername'.
17090         * doc/posix-functions/getsockname.texi: Mention the new module
17091         'getsockname'.
17092         * doc/posix-functions/getsockopt.texi: Mention the new module
17093         'getsockopt'.
17094         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
17095         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
17096         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
17097         * doc/posix-functions/send.texi: Mention the new module 'send'.
17098         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
17099         * doc/posix-functions/setsockopt.texi: Mention the new module
17100         'setsockopt'.
17101         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
17102         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
17103         listen, connect, accept.
17104         * modules/select-tests (Depends-on): Likewise.
17105
17106 2008-10-05  Bruno Haible  <bruno@clisp.org>
17107
17108         * lib/winsock.c (strerror): Remove unused #undef.
17109         (rpl_close): Remove unused local variable.
17110
17111         * modules/sys_socket (Depends-on); Add errno.
17112
17113 2008-10-05  Bruno Haible  <bruno@clisp.org>
17114
17115         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
17116         (select): Add a link warning when the 'select' module is not used.
17117         * modules/sys_select (Depends-on): Add link-warning.
17118         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
17119         Suggested by Paolo Bonzini.
17120
17121 2008-10-05  Jim Meyering  <meyering@redhat.com>
17122
17123         bootstrap: check for LT_INIT more portably
17124         * build-aux/bootstrap: Avoid using grep -E, since it's not
17125         portable enough.  Suggestion from Bruno Haible.
17126
17127 2008-10-05  Bruno Haible  <bruno@clisp.org>
17128
17129         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
17130         as being fixed by gnulib.
17131
17132 2008-10-05  Bruno Haible  <bruno@clisp.org>
17133
17134         * modules/select-tests: New file, mostly copied from
17135         modules/sys_select-tests.
17136         * tests/test-select.c: New file, mostly copied from
17137         tests/test-sys_select.c.
17138         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
17139         * modules/sys_select-tests (Depends-on): Remove all dependencies.
17140         (Makefile.am): Remove test_sys_select_LDADD.
17141
17142         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
17143         to an undefined symbol, for an error message.
17144         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
17145         (gl_SYS_SELECT_H_DEFAULTS): New macro.
17146         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
17147         winsock-select.c here.
17148         * modules/sys_select (Files): Remove lib/winsock-select.c.
17149         (Depends-on): Remove alloca.
17150         (Makefile.am): Substitute GNULIB_SELECT.
17151         * modules/select: New file.
17152         * doc/posix-functions/select.texi: Update.
17153
17154 2008-10-05  Bruno Haible  <bruno@clisp.org>
17155
17156         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
17157         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
17158         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
17159         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
17160         getdtablesize.
17161         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
17162         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
17163
17164 2008-10-05  Bruno Haible  <bruno@clisp.org>
17165
17166         * modules/getdtablesize-tests: New file.
17167         * tests/test-getdtablesize.c: New file.
17168
17169         New module 'getdtablesize'.
17170         * lib/unistd.in.h (getdtablesize): New declaration.
17171         * lib/getdtablesize.c: New file.
17172         * m4/getdtablesize.m4: New file.
17173         * modules/getdtablesize: New file.
17174         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
17175         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
17176         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
17177         HAVE_GETDTABLESIZE.
17178         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
17179
17180 2008-10-05  Bruno Haible  <bruno@clisp.org>
17181
17182         * modules/sched (Makefile.am): Fix typo.
17183         Reported by Simon Josefsson.
17184
17185 2008-10-05  Jim Meyering  <meyering@redhat.com>
17186
17187         bootstrap: check for LT_INIT, too
17188         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
17189         are deprecated.  Suggestion from Ralf Wildenhues.
17190
17191 2008-10-05  Bruno Haible  <bruno@clisp.org>
17192
17193         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
17194         overriding them by ours.
17195         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
17196
17197 2008-10-05  Jim Meyering  <meyering@redhat.com>
17198
17199         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
17200         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
17201         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
17202
17203 2008-10-04  Bruno Haible  <bruno@clisp.org>
17204
17205         * modules/dup2 (License): Change to LGPLv2+.
17206         * modules/sleep (License): Likewise.
17207         * modules/perror (License): Likewise.
17208         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
17209         Blake.
17210         * modules/signal (License): Likewise.
17211         * modules/sigprocmask (License): Likewise.
17212         * modules/raise (License): Change to LGPLv2+, with approval by Jim
17213         Meyering.
17214
17215 2008-10-04  Bruno Haible  <bruno@clisp.org>
17216
17217         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
17218         Reported by Rainer Tammer <tammer@tammer.net>.
17219
17220 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
17221             Bruno Haible  <bruno@clisp.org>
17222
17223         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
17224         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
17225         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
17226
17227 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
17228
17229         filevercmp: new module
17230         * lib/filevercmp.h: New function filevercmp comparing version strings.
17231         * lib/filevercmp.c: Implementation of filevercmp function.
17232         * modules/filevercmp: Module metadata.
17233         * tests/test-filevercmp.c: Unit test for new module.
17234         * modules/filevercmp-tests: Unit test metadata.
17235         * MODULES.html.sh: Add filevercmp module.
17236
17237 2008-10-03  Bruno Haible  <bruno@clisp.org>
17238
17239         * lib/c-ctype.h: Add comment.
17240         Reported by Jim Meyering.
17241
17242 2008-10-02  Bruno Haible  <bruno@clisp.org>
17243
17244         * modules/posix_spawn-internal (Depends-on): Add 'open'.
17245
17246 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
17247
17248         * build-aux/bootstrap: Allow renaming bootstrap, and change the
17249         name of bootstrap.conf accordingly.
17250
17251 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
17252
17253         * build-aux/bootstrap: Install git-merge-changelog configuration
17254         items into .gitconfig if needed.
17255
17256 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
17257
17258         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
17259         git repository, and initialize/update it accordingly.
17260
17261 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
17262
17263         * modules/fsync-tests: New file.
17264         * tests/test-fsync.c: New file.
17265
17266         New module 'fsync'.
17267         * lib/fsync.c: New file.
17268         * m4/fsync.m4: New file.
17269         * modules/fsync: New file.
17270         * lib/unistd.in.h (fsync): New declaration.
17271         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
17272         GNULIB_FSYNC and HAVE_FSYNC.
17273         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
17274         * MODULES.html.sh (posix_functions): Add fsync.
17275         * doc/posix-functions/fsync.texi: Mention the new module.
17276
17277 2008-10-02  Jim Meyering  <meyering@redhat.com>
17278
17279         fts.c: sync with similar code from coreutils' remove.c
17280         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
17281         Guard also with "#if defined __linux__", since for now at least,
17282         this code is Linux-kernel-specific.
17283
17284 2008-10-02  Jim Meyering  <meyering@redhat.com>
17285
17286         fts: bug fixes
17287         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
17288         Include <sys/vfs.h>, not <sys/statfs.h>.
17289
17290         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
17291         Include <sys/vfs.h>, not <sys/statfs.h>.
17292
17293 2008-10-01  Bruno Haible  <bruno@clisp.org>
17294
17295         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
17296         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
17297         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
17298         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
17299         * doc/posix-functions/posix_spawnp.texi: Likewise.
17300         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
17301         whether posix_spawn actually works.
17302         * m4/pipe.m4 (gl_PIPE): Likewise.
17303         * modules/execute (Files): Add m4/posix_spawn.m4.
17304         * modules/pipe (Files): Add m4/posix_spawn.m4.
17305         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
17306
17307 2008-10-01  Jim Meyering  <meyering@redhat.com>
17308
17309         remove trailing spaces
17310         * NEWS: Likewise.
17311         * lib/poll.c (poll): Likewise.
17312         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
17313         * lib/winsock.c (rpl_close): Likewise.
17314         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
17315         * modules/yield: Likewise.
17316         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
17317         * tests/test-sys_select.c (connect_to_socket): Likewise.
17318
17319         fts.c: adjust a new interface to be more generally useful
17320         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
17321         (fts_build): Adjust caller.
17322
17323 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17324
17325         * modules/cond-tests: New file.
17326         * tests/test-cond.c: New file.
17327
17328 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17329             Bruno Haible  <bruno@clisp.org>
17330
17331         * modules/cond (Dependencies): Add errno, time.
17332         * lib/glthread/cond.h: Include <time.h>.
17333         (gl_cond_define, gl_cond_define_initialized): Use the same definition
17334         across platforms.
17335
17336 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17337             Bruno Haible  <bruno@clisp.org>
17338
17339         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
17340
17341 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17342             Bruno Haible  <bruno@clisp.org>
17343
17344         * modules/tls-tests (Depends-on): Add thread, yield.
17345         (configure.ac): Remove all checks.
17346         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
17347         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
17348         gl_thread_self): Remove definitions. Include glthread/thread.h and
17349         glthread/yield.h instead.
17350         (test_tls): Pass an additional NULL argument to gl_thread_join.
17351
17352 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17353             Bruno Haible  <bruno@clisp.org>
17354
17355         * modules/lock-tests (Depends-on): Add thread, yield.
17356         (configure.ac): Remove all checks.
17357         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
17358         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
17359         gl_thread_self): Remove definitions. Include glthread/thread.h and
17360         glthread/yield.h instead.
17361         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
17362         additional NULL argument to gl_thread_join.
17363
17364 2008-09-30  Bruno Haible  <bruno@clisp.org>
17365
17366         Fix the Win32 implementation of the 'thread' module.
17367         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
17368         pointer type.
17369         (gl_thread_self): Invoke gl_thread_self_func.
17370         (gl_thread_self_func): New declaration.
17371         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
17372         (do_init_self_key, init_self_key): New functions.
17373         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
17374         Remove some fields.
17375         (running_threads, running_lock): Remove variables.
17376         (get_current_thread_handle): New function.
17377         (gl_thread_self_func, wrapper_func, glthread_create_func,
17378         glthread_join_func, gl_thread_exit_func): Largely rewritten and
17379         simplified.
17380
17381 2008-09-30  Bruno Haible  <bruno@clisp.org>
17382
17383         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
17384         files.
17385
17386 2008-09-30  Jim Meyering  <meyering@redhat.com>
17387
17388         fts.m4: correct the test for statfs.f_type
17389         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
17390         when checking for statfs.f_type.
17391
17392 2008-09-15  Simon Josefsson  <simon@josefsson.org>
17393
17394         tests: avoid some compiler warnings
17395         * tests/test-memchr.c (main): Pass NULL indirectly.
17396         * tests/test-getdate.c (main): Remove unused variable 'ret'.
17397
17398 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
17399
17400         getdate.y: disallow countable dayshifts like "4 yesterday ago"
17401         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
17402         exactly specified dayshifts.
17403         (dayshift): New rule.
17404         (rel): Add dayshift.
17405         (relative_time_table) [tomorrow, yesterday, today, now]:
17406         Use tDAY_SHIFT in place of tDAY_UNIT.
17407         * tests/test-getdate.c: Add tests for now-disallowed countable
17408         dayshifts, e.g., "4 yesterday ago".
17409
17410 2008-09-29  Bruno Haible  <bruno@clisp.org>
17411
17412         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
17413         * tests/test-posix_spawn1.in.sh: Renamed from
17414         tests/test-posix_spawn.in.sh.
17415         * tests/test-posix_spawn2.c: New file.
17416         * tests/test-posix_spawn2.in.sh: New file.
17417         * modules/posix_spawnp-tests (Files): Update.
17418         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
17419
17420 2008-09-29  Bruno Haible  <bruno@clisp.org>
17421
17422         Propagate effects of putenv/setenv/unsetenv to child processes.
17423         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
17424         * lib/pipe.c (create_pipe): Likewise.
17425
17426 2008-09-29  Bruno Haible  <bruno@clisp.org>
17427
17428         Enable use of shell scripts as executables in mingw.
17429         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
17430         run the program as a shell script.
17431         * lib/pipe.c (create_pipe): Likewise.
17432         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
17433         resulting array.
17434
17435 2008-09-29  Eric Blake  <ebb9@byu.net>
17436
17437         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
17438
17439 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
17440
17441         * doc/posix-functions/accept.texi: Update mingw problems.
17442         * doc/posix-functions/bind.texi: Update mingw problems.
17443         * doc/posix-functions/close.texi: Update mingw problems.
17444         * doc/posix-functions/connect.texi: Update mingw problems.
17445         * doc/posix-functions/getpeername.texi: Update mingw problems.
17446         * doc/posix-functions/getsockname.texi: Update mingw problems.
17447         * doc/posix-functions/getsockopt.texi: Update mingw problems.
17448         * doc/posix-functions/ioctl.texi: Update mingw problems.
17449         * doc/posix-functions/listen.texi: Update mingw problems.
17450         * doc/posix-functions/recv.texi: Update mingw problems.
17451         * doc/posix-functions/recvfrom.texi: Update mingw problems.
17452         * doc/posix-functions/select.texi: Update mingw problems.
17453         * doc/posix-functions/send.texi: Update mingw problems.
17454         * doc/posix-functions/sendto.texi: Update mingw problems.
17455         * doc/posix-functions/setsockopt.texi: Update mingw problems.
17456         * doc/posix-functions/socket.texi: Update mingw problems.
17457
17458 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
17459             Bruno Haible  <bruno@clisp.org>
17460
17461         * lib/sys_select.in.h: Include sys/time.h.
17462         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
17463         * modules/sys_select: Depend on sys_time.
17464         * tests/test-sys_select.c: Test that sys/select.h defines struct
17465         timeval fully.
17466
17467 2008-09-29  Bruno Haible  <bruno@clisp.org>
17468
17469         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
17470         * lib/sys_select.in.h: Likewise.
17471
17472 2008-09-29  Bruno Haible  <bruno@clisp.org>
17473
17474         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
17475
17476 2008-09-29  Bruno Haible  <bruno@clisp.org>
17477
17478         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
17479         Set LIBSOCKET instead of augmenting LIBS.
17480         * modules/sockets (Link): New section.
17481         * modules/sockets-tests (test_sockets_LDADD): New variable.
17482         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
17483         * modules/poll-tests (test_poll_LDADD): New variable.
17484         * NEWS: Document the change.
17485
17486 2008-09-29  Bruno Haible  <bruno@clisp.org>
17487
17488         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
17489         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
17490         ARPA_INET_H directly.
17491         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
17492
17493 2008-09-28  Bruno Haible  <bruno@clisp.org>
17494
17495         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
17496         from gl_HEADER_SYS_SOCKET.
17497         (gl_HEADER_SYS_SOCKET): Invoke it.
17498         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
17499
17500 2008-09-28  Bruno Haible  <bruno@clisp.org>
17501
17502         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
17503         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
17504         Needed on OSF/1 4.0.
17505
17506 2008-09-28  Bruno Haible  <bruno@clisp.org>
17507
17508         Override open more carefully.
17509         * lib/open.c (orig_open): New function.
17510         (rpl_open): Use orig_open instead of open.
17511         * lib/fcntl.in.h: Add special invocation convention.
17512         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
17513         (gl_FUNC_OPEN): Invoke it.
17514
17515         Override freopen more carefully.
17516         * lib/freopen.c (orig_freopen): New function.
17517         (rpl_freopen): Use orig_freopen instead of freopen.
17518         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
17519         (gl_FUNC_FREOPEN): Invoke it.
17520
17521         Override fopen more carefully.
17522         * lib/fopen.c (orig_fopen): New function.
17523         (rpl_fopen): Use orig_fopen instead of fopen.
17524         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
17525         (gl_FUNC_FOPEN): Invoke it.
17526         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
17527
17528 2008-09-28  Bruno Haible  <bruno@clisp.org>
17529
17530         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
17531         SIGPIPE.
17532
17533 2008-09-28  Bruno Haible  <bruno@clisp.org>
17534
17535         * tests/test-sigaction.c (handler, main): Disable the check whether
17536         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
17537         glibc systems with LinuxThreads.
17538
17539 2008-09-28  Bruno Haible  <bruno@clisp.org>
17540
17541         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
17542
17543         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
17544         with AIX xlc.
17545         * lib/fcntl.in.h (open): Likewise.
17546         Reported by Rainer Tammer <tammer@tammer.net>.
17547
17548 2008-09-28  Bruno Haible  <bruno@clisp.org>
17549
17550         * modules/posix_spawnp-tests: New file.
17551         * tests/test-posix_spawn.c: New file.
17552         * tests/test-posix_spawn.in.sh: New file.
17553
17554         New module 'posix_spawnp'.
17555         * modules/posix_spawnp: New file.
17556         * lib/spawnp.c: New file, from GNU libc with modifications.
17557         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
17558
17559         New module 'posix_spawn'.
17560         * modules/posix_spawn: New file.
17561         * lib/spawn.c: New file, from GNU libc with modifications.
17562         * doc/posix-functions/posix_spawn.texi: Mention the new module.
17563
17564         New module 'posix_spawnattr_destroy'.
17565         * modules/posix_spawnattr_destroy: New file.
17566         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
17567         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
17568         module.
17569
17570         New module 'posix_spawnattr_setsigmask'.
17571         * modules/posix_spawnattr_setsigmask: New file.
17572         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
17573         modifications.
17574         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
17575         new module.
17576
17577         New module 'posix_spawnattr_getsigmask'.
17578         * modules/posix_spawnattr_getsigmask: New file.
17579         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
17580         modifications.
17581         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
17582         new module.
17583
17584         New module 'posix_spawnattr_setsigdefault'.
17585         * modules/posix_spawnattr_setsigdefault: New file.
17586         * lib/spawnattr_setdefault.c: New file, from GNU libc with
17587         modifications.
17588         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
17589         new module.
17590
17591         New module 'posix_spawnattr_getsigdefault'.
17592         * modules/posix_spawnattr_getsigdefault: New file.
17593         * lib/spawnattr_getdefault.c: New file, from GNU libc with
17594         modifications.
17595         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
17596         new module.
17597
17598         New module 'posix_spawnattr_setschedpolicy'.
17599         * modules/posix_spawnattr_setschedpolicy: New file.
17600         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
17601         modifications.
17602         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
17603         new module.
17604
17605         New module 'posix_spawnattr_getschedpolicy'.
17606         * modules/posix_spawnattr_getschedpolicy: New file.
17607         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
17608         modifications.
17609         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
17610         new module.
17611
17612         New module 'posix_spawnattr_setschedparam'.
17613         * modules/posix_spawnattr_setschedparam: New file.
17614         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
17615         modifications.
17616         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
17617         new module.
17618
17619         New module 'posix_spawnattr_getschedparam'.
17620         * modules/posix_spawnattr_getschedparam: New file.
17621         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
17622         modifications.
17623         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
17624         new module.
17625
17626         New module 'posix_spawnattr_setpgroup'.
17627         * modules/posix_spawnattr_setpgroup: New file.
17628         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
17629         modifications.
17630         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
17631         module.
17632
17633         New module 'posix_spawnattr_getpgroup'.
17634         * modules/posix_spawnattr_getpgroup: New file.
17635         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
17636         modifications.
17637         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
17638         module.
17639
17640         New module 'posix_spawnattr_setflags'.
17641         * modules/posix_spawnattr_setflags: New file.
17642         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
17643         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
17644         module.
17645
17646         New module 'posix_spawnattr_getflags'.
17647         * modules/posix_spawnattr_getflags: New file.
17648         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
17649         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
17650         module.
17651
17652         New module 'posix_spawnattr_init'.
17653         * modules/posix_spawnattr_init: New file.
17654         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
17655         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
17656         module.
17657
17658         New module 'posix_spawn_file_actions_destroy'.
17659         * modules/posix_spawn_file_actions_destroy: New file.
17660         * lib/spawn_faction_destroy.c: New file, from GNU libc with
17661         modifications.
17662         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
17663         the new module.
17664
17665         New module 'posix_spawn_file_actions_addopen'.
17666         * modules/posix_spawn_file_actions_addopen: New file.
17667         * lib/spawn_faction_addopen.c: New file, from GNU libc with
17668         modifications.
17669         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
17670         the new module.
17671
17672         New module 'posix_spawn_file_actions_adddup2'.
17673         * modules/posix_spawn_file_actions_adddup2: New file.
17674         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
17675         modifications.
17676         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
17677         the new module.
17678
17679         New module 'posix_spawn_file_actions_addclose'.
17680         * modules/posix_spawn_file_actions_addclose: New file.
17681         * lib/spawn_faction_addclose.c: New file, from GNU libc with
17682         modifications.
17683         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
17684         the new module.
17685
17686         New module 'posix_spawn_file_actions_init'.
17687         * modules/posix_spawn_file_actions_init: New file.
17688         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
17689         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
17690         new module.
17691
17692         New module 'posix_spawn-internal'.
17693         * modules/posix_spawn-internal: New file.
17694         * lib/spawn_int.h: New file, from GNU libc with modifications.
17695         * lib/spawni.c: New file, from GNU libc with modifications.
17696         * m4/posix_spawn.m4: New file.
17697
17698         New module 'spawn'.
17699         * modules/spawn: New file.
17700         * lib/spawn.in.h: New file, from GNU libc with modifications.
17701         * m4/spawn_h.m4: New file.
17702         * doc/posix-headers/spawn.texi: Mention the new module.
17703
17704 2008-09-28  Bruno Haible  <bruno@clisp.org>
17705
17706         * modules/sched-tests: New file.
17707         * tests/test-sched.c: New file.
17708
17709         New module 'sched'.
17710         * modules/sched: New file.
17711         * lib/sched.in.h: New file.
17712         * m4/sched_h.m4: New file.
17713         * doc/posix-headers/sched.texi: Mention the new module.
17714
17715 2008-09-27  Eric Blake  <ebb9@byu.net>
17716
17717         Fix previous patch, and tweak references to $0.
17718         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
17719         (func_version, func_gnulib_dir): Don't call this program
17720         gnulib-tool.
17721         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
17722         with using $0 in function.
17723         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
17724         (func_fatal_error): Reuse the name the user invoked us with.
17725
17726 2008-09-27  Bruno Haible  <bruno@clisp.org>
17727
17728         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
17729         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
17730         (gl_ICONV_H): Not here.
17731         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
17732         instead of assigning ICONV_H directly.
17733
17734         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
17735         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
17736         WCHAR_H directly.
17737
17738 2008-09-27  Bruno Haible  <bruno@clisp.org>
17739
17740         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
17741         * modules/arpa_inet (Depends-on): Add link-warning.
17742         (Makefile.am): Insert the definition of GL_LINK-WARNING.
17743         * modules/unistd (Makefile.am): Likewise.
17744
17745 2008-09-26  Bruno Haible  <bruno@clisp.org>
17746
17747         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
17748         variables.
17749         (func_version): Essentially copied from gnulib-tool.
17750         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
17751         func_readlink): Copied from gnulib-tool.
17752
17753 2008-09-26  Bruno Haible  <bruno@clisp.org>
17754
17755         * gnulib-tool (func_version): Change directory to $gnulib_dir before
17756         invoking git-version-gen.
17757
17758 2008-09-26  Bruno Haible  <bruno@clisp.org>
17759
17760         * posix-modules: Update to directory names changed on 2008-01-19.
17761         Remove commas in output before splitting into words. No more need to
17762         avoid 'ftruncate' since 2007-02-19.
17763
17764 2008-09-26  Bruno Haible  <bruno@clisp.org>
17765
17766         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
17767
17768 2008-09-26  Bruno Haible  <bruno@clisp.org>
17769
17770         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
17771         * modules/fwriteerror (Depends-on): Add errno.
17772
17773 2008-09-26  Bruno Haible  <bruno@clisp.org>
17774
17775         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
17776         * tests/test-vc-list-files-cvs.sh: Likewise.
17777
17778 2008-09-26  Bruno Haible  <bruno@clisp.org>
17779
17780         * doc/posix-headers/sys_resource.texi: Reorder items.
17781
17782 2008-09-26  Jim Meyering  <meyering@redhat.com>
17783
17784         fts: tweak inode comparison function
17785         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
17786         inode numbers, as documented.
17787
17788         fts: sort dirent entries on inode number before traversing
17789         This avoids a quadratic, seek-related performance penalty when
17790         operating on a directory containing many entries (measurable at 10k;
17791         3.5 hours at 2 million entries with a cold cache) on certain types
17792         of file systems, including ext3 and ext4, but not tmpfs.
17793         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
17794         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
17795         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
17796         (fs_handles_readdir_ordered_dirents_efficiently): New function.
17797         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
17798         (fts_build): Set the stat.st_ino member from D_INO.
17799         If it is likely to be useful, sort dirent entries on inode number.
17800
17801         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
17802         and the struct statfs.f_type member.
17803         * modules/fts (Depends-on): Add d-ino.
17804
17805 2008-09-26  Bruno Haible  <bruno@clisp.org>
17806
17807         * modules/sigpipe-die (Depends-on): Add sigpipe.
17808
17809         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
17810         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
17811         and GNULIB_STDIO_H_SIGPIPE are set.
17812         * lib/stdio-write.c: New file.
17813         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
17814         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
17815         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
17816         REPLACE_STDIO_WRITE_FUNCS.
17817         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
17818         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
17819         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
17820         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
17821         * modules/stdio (Files): Add lib/stdio-write.c.
17822         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
17823         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
17824         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
17825         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
17826         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
17827         REPLACE_FPRINTF_POSIX.
17828         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
17829         REPLACE_PRINTF_POSIX.
17830         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
17831         REPLACE_VFPRINTF_POSIX.
17832         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
17833         REPLACE_VPRINTF_POSIX.
17834         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
17835         SIGPIPE issue.
17836         * doc/posix-functions/fputc.texi: Likewise.
17837         * doc/posix-functions/fputs.texi: Likewise.
17838         * doc/posix-functions/fwrite.texi: Likewise.
17839         * doc/posix-functions/printf.texi: Likewise.
17840         * doc/posix-functions/putc.texi: Likewise.
17841         * doc/posix-functions/putchar.texi: Likewise.
17842         * doc/posix-functions/puts.texi: Likewise.
17843         * doc/posix-functions/vfprintf.texi: Likewise.
17844         * doc/posix-functions/vprintf.texi: Likewise.
17845
17846         * modules/safe-write (Depends-on): Add write.
17847
17848         * modules/sigpipe-tests: New file.
17849         * tests/test-sigpipe.c: New file.
17850         * tests/test-sigpipe.sh: New file.
17851
17852         * modules/write: New file.
17853         * lib/unistd.in.h: Include <sys/types.h>.
17854         (write): New declaration.
17855         * lib/write.c: New file.
17856         * m4/write.m4: New file.
17857         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
17858         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
17859         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
17860         GNULIB_WRITE, REPLACE_WRITE.
17861         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
17862         and the SIGPIPE issue.
17863
17864         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
17865         (raise): New declaration.
17866         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
17867         (ext_signal): New function.
17868         (rpl_raise): New function.
17869         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
17870         GNULIB_SIGNAL_H_SIGPIPE.
17871         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
17872         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
17873
17874         * modules/sigpipe: New file.
17875         * m4/sigpipe.m4: New file.
17876
17877 2008-09-25  Derek Price  <derek@ximbiot.com>
17878             Bruno Haible  <bruno@clisp.org>
17879
17880         * gnulib-tool (func_import): Report all license incompatibilities, not
17881         just the first one.
17882
17883 2008-09-25  Bruno Haible  <bruno@clisp.org>
17884
17885         * gnulib-tool (func_import): When computing the edits, consider not
17886         only the Makefile.ams that exist but also those that will be generated.
17887
17888 2008-09-25  Simon Josefsson  <simon@josefsson.org>
17889
17890         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
17891         fixes gnulib-tool --test warning about duplicate dependency.
17892
17893 2008-09-25  Bruno Haible  <bruno@clisp.org>
17894
17895         * gnulib-tool: Don't ask the user to perform edits in the generated
17896         Makefile.ams.
17897         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
17898         apply to the Makefile.am being generated.
17899         (func_emit_tests_Makefile_am): Execute edits that apply to the
17900         Makefile.am being generated.
17901         (func_import): Setup list of Makefile.am edits before emitting the
17902         Makefile.ams, not at the end.
17903         (func_create_testdir): Update.
17904         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
17905
17906 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17907
17908         * gnulib-tool (func_import): Store the --tests-base option in the
17909         comment in gnulib-cache.m4.
17910
17911 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
17912
17913         * NEWS: Document increased portability that sys_select now provides.
17914
17915         * lib/sys_select.in.h: Install select wrapper.
17916         * lib/sys_socket.in.h: Use more descriptive name when there is no
17917         select wrapper.
17918         * lib/winsock-select.c: New.
17919         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
17920         Require gl_HEADER_SYS_SOCKET.
17921         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
17922         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
17923         * tests/test-sys_select.c: Add functional tests.
17924
17925 2008-09-24  Eric Blake  <ebb9@byu.net>
17926
17927         open, fopen: close fd leak in last patch
17928         * lib/open.c (rpl_open): Close fd before returning error.
17929         * lib/fopen.c (rpl_fopen): Close fd before returning error.
17930         * doc/posix-functions/open.texi (open): Document that Irix also
17931         has the bug.
17932         * doc/posix-functions/fopen.texi (fopen): Likewise.
17933         Reported by Paolo Bonzini.
17934
17935 2008-09-24  Bruno Haible  <bruno@clisp.org>
17936
17937         Ensure that a filename ending in a slash cannot be used to access a
17938         non-directory.
17939         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
17940         to check whether it's really a directory.
17941         * lib/fopen.c: Include fcntl.h, unistd.h.
17942         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
17943         and fdopen().
17944         * modules/fopen (Depends-on): Add unistd.
17945         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
17946         * tests/test-fopen.c (main): Likewise.
17947         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
17948         * doc/posix-functions/fopen.texi: Likewise.
17949         Reported by Eric Blake.
17950
17951 2008-09-23  Eric Blake  <ebb9@byu.net>
17952
17953         c-stack: avoid compiler optimizations when provoking overflow
17954         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
17955         recursion harder to optimize, to ensure a stack overflow occurs.
17956         * tests/test-c-stack.c (recurse): Likewise.
17957         Borrowed from libsigsegv.
17958
17959         c-stack: work around Irix sigaltstack bug
17960         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
17961         whether sigaltstack uses wrong end of stack_t (copied in part from
17962         libsigsegv).
17963         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
17964         Irix bug, without requiring an over-allocation.
17965         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
17966         bug.
17967
17968         fopen: document mingw bug on directories
17969         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
17970         not allowing a stream visiting a directory, even though reading
17971         from such a stream is not portable.
17972
17973 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
17974
17975         * lib/poll.c: Rewrite.
17976         * modules/poll: Depend on alloca.
17977
17978 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
17979
17980         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
17981         instead define prototypes for a full set of wrappers.  Ensure
17982         that Cygwin does not use the compatibility code, which is only
17983         for MinGW.
17984         * lib/winsock.c: New.
17985         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
17986         * modules/sys_socket: Add lib/winsock.c.
17987
17988         * modules/poll-tests: Add errno and perror.
17989         * tests/test-poll.c: Use ioctl, not ioctlsocket.
17990
17991 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
17992
17993         * tests/test-poll.c: Downgrade minimum needed Winsock version.
17994
17995 2008-09-23  Bruno Haible  <bruno@clisp.org>
17996
17997         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
17998         * doc/glibc-functions/*: Likewise.
17999
18000 2008-09-23  Simon Josefsson  <simon@josefsson.org>
18001
18002         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
18003         success.
18004
18005 2008-09-22  Eric Blake  <ebb9@byu.net>
18006             Bruno Haible  <bruno@clisp.org>
18007
18008         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
18009         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
18010         supply %A but mishandle pseudo-NaN.
18011         Reported by Simon Josefsson.
18012
18013 2008-09-21  Bruno Haible  <bruno@clisp.org>
18014
18015         * tests/test-lock.c (main): Tweak skip message.
18016         * tests/test-tls.c (main): Likewise.
18017
18018 2008-09-21  Bruno Haible  <bruno@clisp.org>
18019
18020         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
18021         whether 'struct sigaction' has sa_sigaction here...
18022         (gl_PREREQ_SIG_HANDLER_H): ... not here.
18023         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
18024
18025 2008-09-21  Bruno Haible  <bruno@clisp.org>
18026
18027         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
18028         section.
18029         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
18030         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
18031         the new section.
18032         (Support for obsolete systems lacking POSIX:2001): New section.
18033         (String handling <string.h>): Move strdup to the new section.
18034         Suggested by Simon Josefsson and Paolo Bonzini.
18035
18036 2008-09-21  Bruno Haible  <bruno@clisp.org>
18037
18038         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
18039         exponents in %e and %g results on 'long double'. Needed for mingw's
18040         improved *printf functions.
18041         * tests/test-vasprintf-posix.c (test_function): Likewise.
18042         * tests/test-snprintf-posix.h (test_function): Likewise.
18043         * tests/test-sprintf-posix.h (test_function): Likewise.
18044         Reported by Eric Blake.
18045
18046 2008-09-21  Bruno Haible  <bruno@clisp.org>
18047
18048         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
18049         * tests/test-sprintf-posix.h (test_function): Likewise.
18050
18051 2008-09-21  Bruno Haible  <bruno@clisp.org>
18052
18053         * modules/getpass (Depends-on): Add strdup-posix.
18054
18055         New module 'strdup-posix'.
18056         * modules/strdup-posix: New file.
18057         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
18058         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
18059         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
18060         REPLACE_STRDUP.
18061         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
18062         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
18063         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18064         strdup-posix.
18065
18066         * modules/strdup (Depends-on): Remove malloc-posix.
18067
18068 2008-09-20  Bruno Haible  <bruno@clisp.org>
18069
18070         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
18071         Wildenhues.
18072
18073 2008-09-20  Bruno Haible  <bruno@clisp.org>
18074
18075         Ensure that wint_t gets defined on IRIX 5.3.
18076         * lib/wchar.in.h (wint_t): Define if not defined by the system.
18077         * lib/wctype.in.h (wint_t): Likewise.
18078         (__wctype_wint_t): Remove type.
18079         (isw*): Use wint_t instead of __wctype_wint_t.
18080         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
18081         * modules/wchar (Files): Add m4/wint_t.m4.
18082         (Makefile.am): Substitute HAVE_WINT_T.
18083         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
18084         * tests/test-wctype.c: Check that wint_t is defined.
18085         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
18086         * doc/posix-headers/wctype.texi: Likewise.
18087         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18088
18089 2008-09-18  Bruno Haible  <bruno@clisp.org>
18090
18091         * gnulib-tool (func_exit): Update comment.
18092
18093 2008-09-18  Simon Josefsson  <simon@josefsson.org>
18094
18095         * modules/getaddrinfo (Depends-on): Remove strdup, this module
18096         assumes strdup exists and does not depend on strdup to return
18097         ENOMEM on out of memory conditions.
18098
18099 2008-09-18  Bruno Haible  <bruno@clisp.org>
18100
18101         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
18102         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
18103         digits for the exponent.
18104
18105 2008-09-18  Jim Meyering  <meyering@redhat.com>
18106             Bruno Haible  <bruno@clisp.org>
18107
18108         * lib/vasnprintf.c (decimal_point_char): Define also if
18109         NEED_PRINTF_INFINITE_LONG_DOUBLE.
18110
18111 2008-09-16  Bruno Haible  <bruno@clisp.org>
18112         and Eric Blake  <ebb9@byu.net>
18113
18114         vasnprintf: support Irix 5.3
18115         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
18116         that mishandle long double infinity.
18117         Reported by Tom G. Christensen.
18118
18119 2008-09-16  Bruno Haible  <bruno@clisp.org>
18120
18121         * doc/glibc-functions/scandir.texi: Mention the function is missing on
18122         Solaris 9.
18123         * doc/glibc-functions/alphasort.texi: Likewise.
18124         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
18125
18126 2008-09-16  Jim Meyering  <meyering@redhat.com>
18127
18128         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
18129         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
18130         a umask modification leak out of a subshell.  Otherwise, the
18131         opensolaris /bin/sh would be accepted and thus cause unwarranted
18132         failures in the coreutils test suite.
18133
18134 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
18135
18136         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
18137         to succeed.
18138
18139 2008-09-16  Jim Meyering  <meyering@redhat.com>
18140
18141         avoid spurious test failure when library is built without ACL support
18142         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
18143         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
18144         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
18145         * tests/test-copy-acl.sh: Likewise.
18146
18147 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18148
18149         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
18150         based on character occurrence counts.
18151
18152 2008-09-15  Eric Blake  <ebb9@byu.net>
18153
18154         tests: avoid some compiler warnings
18155         * tests/test-memchr.c (main): Pass NULL indirectly.
18156         * tests/test-closein.c (main): Avoid unused variable.
18157
18158 2008-09-15  Bruno Haible  <bruno@clisp.org>
18159
18160         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
18161         are missing on OpenBSD 4.0 individually.
18162         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18163
18164 2008-09-15  Bruno Haible  <bruno@clisp.org>
18165
18166         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
18167         * doc/posix-functions/strerror.texi: Mention also Cygwin.
18168         * doc/posix-functions/perror.texi: Likewise.
18169         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
18170         is missing.
18171         Reported by Eric Blake.
18172
18173         * lib/errno.in.h: Use replacement values >= 2000.
18174         Reported by Eric Blake.
18175
18176 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18177
18178         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
18179         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
18180         limit.
18181         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
18182         compareseq was aborted.
18183
18184 2008-09-14  Bruno Haible  <bruno@clisp.org>
18185
18186         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
18187         yvec_edit_count.
18188         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
18189         (fstrcmp_bounded): Simplify result computation accordingly.
18190
18191 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18192
18193         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
18194         (fstrcmp): Define in terms of fstrcmp_bounded.
18195         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
18196         lower_bound argument.
18197         Return quickly if the result is certainly < lower_bound.
18198         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
18199
18200 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18201
18202         * lib/diffseq.h (EARLY_ABORT): New macro.
18203         (compareseq): Change return type to bool. Return true when EARLY_ABORT
18204         evaluates to true.
18205
18206 2008-09-14  Bruno Haible  <bruno@clisp.org>
18207
18208         * modules/perror-tests: New file.
18209         * tests/test-perror.sh: New file.
18210         * tests/test-perror.c: New file.
18211
18212         New module 'perror'.
18213         * lib/stdio.in.h (perror): New declaration.
18214         * lib/perror.c: New file.
18215         * m4/perror.m4: New file.
18216         * modules/perror: New file.
18217         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
18218         * doc/posix-functions/perror.texi: Mention the perror module.
18219         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
18220         REPLACE_PERROR.
18221         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
18222         REPLACE_PERROR.
18223
18224 2008-09-14  Bruno Haible  <bruno@clisp.org>
18225
18226         * modules/stdio (Makefile.am): Reorder to match the order in
18227         lib/stdio.in.h.
18228         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
18229
18230 2008-09-13  Bruno Haible  <bruno@clisp.org>
18231
18232         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
18233
18234 2008-09-13  Bruno Haible  <bruno@clisp.org>
18235
18236         Extend strerror to cover the added errno values.
18237         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
18238         (rpl_strerror): Provide error messages for the added errno values and
18239         for the WSA* values.
18240         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
18241         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
18242         strerror.
18243         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
18244         * modules/strerror (Depends-on): Add errno.
18245         * doc/posix-functions/strerror.texi: Document the change.
18246         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
18247         and EOVERFLOW.
18248
18249 2008-09-13  Bruno Haible  <bruno@clisp.org>
18250
18251         * modules/EOVERFLOW: Remove file.
18252         * m4/eoverflow.m4: Remove file.
18253         * modules/EOVERFLOW-tests: Remove file.
18254         * tests/test-EOVERFLOW.c: Remove file.
18255         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
18256         * modules/ftell (Depends-on): Likewise.
18257         * modules/getdelim (Depends-on): Likewise.
18258         * modules/getugroups (Depends-on): Likewise.
18259         * modules/poll (Depends-on): Likewise.
18260         * modules/snprintf (Depends-on): Likewise.
18261         * modules/sprintf-posix (Depends-on): Likewise.
18262         * modules/vasnprintf (Depends-on): Likewise.
18263         * modules/vasprintf (Depends-on): Likewise.
18264         * modules/vfprintf-posix (Depends-on): Likewise.
18265         * modules/vsnprintf (Depends-on): Likewise.
18266         * modules/vsprintf-posix (Depends-on): Likewise.
18267         * modules/xvasprintf (Depends-on): Likewise.
18268         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
18269         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
18270         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
18271         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
18272         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
18273         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
18274         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
18275         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
18276         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
18277         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
18278         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
18279         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
18280         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
18281         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
18282         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
18283         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
18284         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
18285         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
18286         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
18287         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
18288         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
18289         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
18290         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
18291         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
18292         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
18293         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
18294         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
18295         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
18296         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
18297         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
18298         * MODULES.html.sh: Remove EOVERFLOW.
18299         * NEWS: Mention the change.
18300
18301 2008-09-13  Bruno Haible  <bruno@clisp.org>
18302
18303         * modules/errno-tests: New file.
18304         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
18305
18306         * lib/errno.in.h: New file.
18307         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
18308         * modules/errno: New file.
18309         * doc/posix-headers/errno.texi: Update documentation.
18310         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
18311
18312 2008-09-13  Bruno Haible  <bruno@clisp.org>
18313
18314         * tests/test-poll.c: Use #if for native Windows, rather than testing
18315         __MSVCRT__.
18316
18317 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18318             Bruno Haible  <bruno@clisp.org>
18319
18320         * lib/glob.c: Don't include <pwd.h> on native Windows.
18321         (WINDOWS32): New macro.
18322         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
18323
18324 2008-09-13  Bruno Haible  <bruno@clisp.org>
18325
18326         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
18327         (ETIMEDOUT): Remove macro.
18328         (glthread_cond_timedwait_multithreaded): New declaration.
18329         (glthread_cond_timedwait): Use it.
18330         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
18331         (glthread_cond_timedwait_multithreaded): New function.
18332
18333 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
18334
18335         * modules/poll-tests: Do not check for io.h.
18336         * tests/test-poll.c: Check for __MSVCRT__ instead.
18337
18338 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
18339
18340         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
18341         * modules/poll-tests: Add inet_pton, stdbool, sockets.
18342         * tests/test-poll.c: Use them.  Use _pipe on Windows.
18343
18344 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
18345
18346         * modules/poll-tests: New.
18347         * tests/test-poll.c: New.
18348
18349 2008-09-12  Eric Blake  <ebb9@byu.net>
18350
18351         frexp: test for NetBSD failure on -0.0
18352         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
18353         not all, bugs from NetBSD 3.0 have been fixed.
18354         * doc/posix-functions/frexp.texi (frexp): Document bug.
18355         Reported by Thomas Klausner.
18356
18357         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
18358         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
18359         literal -0.0.
18360         Reported by Jonathan C. Patschke <jp@centtech.com>.
18361
18362 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18363
18364         * lib/glthread/cond.h: Use dummy implementation also if
18365         USE_WIN32_THREADS.
18366
18367 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18368
18369         * modules/fnmatch-posix (License): Change to LGPLv2+.
18370         * modules/fnmatch-gnu (License): Likewise.
18371
18372 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18373
18374         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
18375
18376 2008-09-11  Jim Meyering  <meyering@redhat.com>
18377
18378         * users.txt: Add gtk-vnc.
18379
18380 2008-09-08  Simon Josefsson  <simon@josefsson.org>
18381
18382         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
18383         rotate amounts.
18384
18385         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
18386         required for 16-bit and 8-bit rotates.
18387         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
18388         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
18389         UINT8_MAX instead of hard-coded constants.
18390         Suggested by Paul Eggert.
18391
18392 2008-09-07  Bruno Haible  <bruno@clisp.org>
18393
18394         * tests/test-striconveh.c (main): Check behaviour when converting from
18395         UTF-7.
18396
18397         Make striconveh work better with stateful encodings.
18398         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
18399         that iconv does not increment the inptr when returning -1/EINVAL.
18400
18401 2008-09-07  Bruno Haible  <bruno@clisp.org>
18402
18403         * build-aux/config.rpath: Update according to libtool-2.2.6.
18404         * build-aux/config.libpath: Likewise.
18405
18406 2008-09-06  Bruno Haible  <bruno@clisp.org>
18407
18408         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
18409         * lib/freadptr.c (freadptr): Likewise.
18410         * lib/freadseek.c (freadptrinc): Likewise.
18411         Reported by Simon Josefsson.
18412
18413 2008-09-06  Bruno Haible  <bruno@clisp.org>
18414
18415         * modules/freadptr (License): Change to LGPLv2+.
18416         * modules/freadseek (License): Likewise.
18417         Suggested by Eric Blake.
18418
18419         * modules/memchr2 (License): Change to LGPLv2+.
18420         Approved by Eric Blake.
18421
18422 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18423             Bruno Haible  <bruno@clisp.org>
18424
18425         Make gnulib-tool work with native 'sed' on AIX.
18426         * gnulib-tool (sed_noop): New variable.
18427         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
18428         func_add_or_update, func_create_testdir): Use it to initialize sed
18429         script variables.
18430         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
18431
18432 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
18433             Bruno Haible  <bruno@clisp.org>
18434
18435         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
18436         also works after #include directives.
18437
18438 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
18439
18440         getdate.y: reject an out-of-range timezone value
18441         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
18442         the range [-24...+24].  When specified with only one or two digits,
18443         * tests/test-getdate.c: Tests for the fix.
18444         * doc/getdate.texi: Document this change.
18445
18446 2008-09-03  Bruno Haible  <bruno@clisp.org>
18447
18448         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
18449
18450 2008-09-02  Simon Josefsson  <simon@josefsson.org>
18451
18452         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
18453         <bruce.korb@gmail.com> with ideas from Ben Pfaff
18454         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
18455         Blake <ebb9@byu.net>.
18456
18457         * tests/test-bitrotate.c: Add more test vectors.
18458
18459 2008-09-02  Eric Blake  <ebb9@byu.net>
18460
18461         vasnprintf-posix: handle large precision via %.*d
18462         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
18463         when handling it ourselves.
18464         * tests/test-vasnprintf-posix.c (test_function): Add test.
18465         * tests/test-snprintf-posix.h (test_function): Likewise.
18466         * tests/test-sprintf-posix.h (test_function): Likewise.
18467         * tests/test-vasprintf-posix.c (test_function): Likewise.
18468         Reported by Alain Guibert.
18469
18470 2008-09-01  Eric Blake  <ebb9@byu.net>
18471
18472         c-stack: make configure-time check more robust
18473         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
18474         successful sigaction call.
18475         Reported by Tom G. Christensen.
18476
18477 2008-09-01  Bruno Haible  <bruno@clisp.org>
18478
18479         New module 'findprog-lgpl'.
18480         * modules/findprog-lgpl: New file.
18481         * lib/findprog-lgpl.c: New file.
18482         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
18483         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
18484         to decide whether to use strdup or xstrdup, concatenated_filename or
18485         xconcatenated_filename.
18486
18487 2008-09-01  Bruno Haible  <bruno@clisp.org>
18488
18489         Split module 'concat-filename' into 'concat-filename' (LGPL) and
18490         'xconcat-filename' (GPL).
18491         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
18492         (License): Change to LGPLv2+.
18493         * modules/xconcat-filename: New file.
18494         * lib/concat-filename.h (concatenated_filename): Change specification.
18495         (xconcatenated_filename): New declaration.
18496         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
18497         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
18498         memory situations.
18499         * lib/xconcat-filename.c: New file.
18500         * NEWS: Mention the change.
18501         * lib/findprog.c: Include concat-filename.h, not filename.h.
18502         (find_in_path): Use xconcatenated_filename instead of
18503         concatenated_filename.
18504         * lib/javacomp.c: Include concat-filename.h, not filename.h.
18505         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
18506         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
18507         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
18508         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
18509         instead of concatenated_filename.
18510         * lib/javaexec.c: Include concat-filename.h, not filename.h.
18511         (execute_java_class): Use xconcatenated_filename instead of
18512         concatenated_filename.
18513         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
18514         * modules/javacomp (Depends-on): Likewise.
18515         * modules/javaexec (Depends-on): Likewise.
18516
18517 2008-09-01  Bruno Haible  <bruno@clisp.org>
18518
18519         Split module 'filename' into 'filename' and 'concat-filename'.
18520         * modules/filename: Keep only lib/filename.h.
18521         (License): Change to LGPLv2+.
18522         * modules/concat-filename: New file, extracted from modules/filename.
18523         * lib/filename.h (concatenated_filename): Remove declaration.
18524         * lib/concat-filename.h: New file, extracted from lib/filename.h.
18525         * lib/concat-filename.c: Include concat-filename.h.
18526         * NEWS: Mention the change.
18527
18528 2008-09-01  Simon Josefsson  <simon@josefsson.org>
18529
18530         * lib/bitrotate.h (rotl8, rotr8): Add.
18531
18532         * modules/bitrotate (configure.ac): Need
18533         AC_REQUIRE([AC_C_INLINE]).
18534         (Description): Mention stdint.h.  Reported by Bruno Haible
18535         <bruno@clisp.org>.
18536
18537         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
18538         Paolo Bonzini <bonzini@gnu.org>.
18539
18540 2008-08-31  Bruno Haible  <bruno@clisp.org>
18541
18542         Assume Solaris specific bi-arch conventions on Solaris systems.
18543         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
18544         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
18545         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
18546         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
18547         like acl_libdirstem.
18548         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
18549         acl_libdirstem.
18550         * NEWS: Mention the change.
18551         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
18552
18553 2008-08-31  Jim Meyering  <meyering@redhat.com>
18554
18555         * lib/strftime.h: Add comments describing the two added arguments.
18556
18557         remove duplicate #include directives
18558         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
18559         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
18560
18561 2008-08-31  Bruno Haible  <bruno@clisp.org>
18562
18563         New module 'sigpipe-die'.
18564         * modules/sigpipe-die: New file.
18565         * lib/sigpipe-die.h: New file.
18566         * lib/sigpipe-die.c: New file.
18567         * MODULES.html.sh (Signal handling): Add sigpipe-die.
18568
18569 2008-08-31  Bruno Haible  <bruno@clisp.org>
18570
18571         Don't override previously installed signal handlers.
18572         * lib/fatal-signal.c (saved_sigactions): New variable.
18573         (uninstall_handlers): Reset the signal to the saved handler, not
18574         to SIG_DFL (except when ignored).
18575         (install_handlers): Save the previous handlers.
18576
18577 2008-08-30  Bruno Haible  <bruno@clisp.org>
18578
18579         * gnulib-tool (func_reset_sigpipe): New function.
18580         (func_get_automake_snippet, func_modules_transitive_closure,
18581         func_import): Invoke it before a join command that reads from stdin,
18582         to avoid "echo: write error: Broken pipe" error messages on stderr.
18583         Reported by Sam Steingold <sds@gnu.org>.
18584
18585 2008-08-30  Bruno Haible  <bruno@clisp.org>
18586
18587         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
18588         Code copied from m4/open.m4.
18589         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
18590         access and the filename ends in a slash. Code copied from lib/open.c.
18591         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
18592         * tests/test-fopen.c (main): Check against bug with trailing slash.
18593
18594 2008-08-29  Bruno Haible  <bruno@clisp.org>
18595
18596         Avoid some "gcc -pedantic" warnings.
18597         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
18598         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
18599         * lib/dirent.in.h: Likewise.
18600         * lib/fcntl.in.h: Likewise.
18601         * lib/float.in.h: Likewise.
18602         * lib/iconv.in.h: Likewise.
18603         * lib/inttypes.in.h: Likewise.
18604         * lib/locale.in.h: Likewise.
18605         * lib/math.in.h: Likewise.
18606         * lib/netinet_in.in.h: Likewise.
18607         * lib/search.in.h: Likewise.
18608         * lib/signal.in.h: Likewise.
18609         * lib/stdarg.in.h: Likewise.
18610         * lib/stdint.in.h: Likewise.
18611         * lib/stdio.in.h: Likewise.
18612         * lib/stdlib.in.h: Likewise.
18613         * lib/string.in.h: Likewise.
18614         * lib/strings.in.h: Likewise.
18615         * lib/sys_select.in.h: Likewise.
18616         * lib/sys_socket.in.h: Likewise.
18617         * lib/sys_stat.in.h: Likewise.
18618         * lib/sys_time.in.h: Likewise.
18619         * lib/sysexits.in.h: Likewise.
18620         * lib/time.in.h: Likewise.
18621         * lib/unistd.in.h: Likewise.
18622         * lib/wchar.in.h: Likewise.
18623         * lib/wctype.in.h: Likewise.
18624         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
18625         * modules/fchdir (Makefile.am): Likewise.
18626         * modules/fcntl (Makefile.am): Likewise.
18627         * modules/float (Makefile.am): Likewise.
18628         * modules/iconv_open (Makefile.am): Likewise.
18629         * modules/inttypes (Makefile.am): Likewise.
18630         * modules/locale (Makefile.am): Likewise.
18631         * modules/math (Makefile.am): Likewise.
18632         * modules/netinet_in (Makefile.am): Likewise.
18633         * modules/search (Makefile.am): Likewise.
18634         * modules/signal (Makefile.am): Likewise.
18635         * modules/stdarg (Makefile.am): Likewise.
18636         * modules/stdint (Makefile.am): Likewise.
18637         * modules/stdio (Makefile.am): Likewise.
18638         * modules/stdlib (Makefile.am): Likewise.
18639         * modules/string (Makefile.am): Likewise.
18640         * modules/strings (Makefile.am): Likewise.
18641         * modules/sys_select (Makefile.am): Likewise.
18642         * modules/sys_socket (Makefile.am): Likewise.
18643         * modules/sys_stat (Makefile.am): Likewise.
18644         * modules/sys_time (Makefile.am): Likewise.
18645         * modules/sysexits (Makefile.am): Likewise.
18646         * modules/time (Makefile.am): Likewise.
18647         * modules/unistd (Makefile.am): Likewise.
18648         * modules/wchar (Makefile.am): Likewise.
18649         * modules/wctype (Makefile.am): Likewise.
18650         Reported by Reuben Thomas <rrt@sc3d.org>.
18651
18652 2008-08-29  Bruno Haible  <bruno@clisp.org>
18653
18654         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
18655         any more.
18656
18657 2008-08-29  Simon Josefsson  <simon@josefsson.org>
18658
18659         * MODULES.html.sh (Misc): Add bitrotate.
18660
18661         * modules/bitrotate: New file.
18662
18663         * lib/bitrotate.h: New file.
18664
18665         * modules/bitrotate-tests: New file.
18666
18667         * tests/test-bitrotate.c: New file.
18668
18669         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
18670         on the bitrotate module.
18671
18672         * lib/arctwo.c: Use new bitrotate module.
18673
18674 2008-08-29  Jim Meyering  <meyering@redhat.com>
18675
18676         bootstrap: merge changes from coreutils
18677         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
18678         of copied files.  Remove a kludge, now that this is fixed.
18679         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
18680         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
18681         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
18682
18683 2008-08-29  Bruno Haible  <bruno@clisp.org>
18684
18685         * MODULES.html.sh: Remove --cvs-urls option.
18686
18687 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
18688
18689         maint.mk: adjust to file name change
18690         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
18691
18692 2008-08-28  Jim Meyering  <meyering@redhat.com>
18693
18694         * modules/getndelim2 (License): Relicense to LGPLv2+.
18695         Approved by Richard Stallman for the version of 1995, and by
18696         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
18697
18698 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
18699
18700         * lib/getdelim.c (flockfile, funlockfile): Make all of them
18701         dummy if one is not available.  Do not touch them if
18702         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
18703         (getc_maybe_unlocked): New.
18704         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
18705
18706 2008-08-26  Eric Blake  <ebb9@byu.net>
18707
18708         doc/INSTALL: resync from autoconf
18709         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
18710         (INSTALL_PRELUDE): Delete; this is done more efficiently by
18711         moving...
18712         * install.texi [!autoconf]: ...here.  Resync from autoconf.
18713         * INSTALL: Regenerate.
18714         * INSTALL.ISO: New file.
18715         * INSTALL.UTF-8: Likewise.
18716
18717 2008-08-26  Jim Meyering  <meyering@redhat.com>
18718
18719         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
18720         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
18721         these definitions conditional, so that they may be overridden, too.
18722
18723 2008-08-26  Bruno Haible  <bruno@clisp.org>
18724
18725         Generate INSTALL file variants with prettier quotes.
18726         * doc/Makefile (INSTALL_PRELUDE): New macro.
18727         (INSTALL): Use it.
18728         (INSTALL.ISO, INSTALL.UTF-8): New rules.
18729
18730 2008-08-26  Bruno Haible  <bruno@clisp.org>
18731
18732         Run makeinfo in an English locale.
18733         * doc/Makefile (MAKEINFO): New variable.
18734
18735 2008-08-26  Bruno Haible  <bruno@clisp.org>
18736
18737         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
18738         Suggested by Eric Blake.
18739
18740 2008-08-25  Bruno Haible  <bruno@clisp.org>
18741
18742         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
18743
18744 2008-08-25  Eric Blake  <ebb9@byu.net>
18745
18746         c-stack: test that stack overflow can be caught
18747         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
18748         that platform allows handling stack overflow; at least OS/2 EMX
18749         has sigaltstack, but crashes before transferring control to
18750         handler on stack overflow.
18751         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
18752         check for HAVE_STACK_OVERFLOW_HANDLING.
18753         Reported by Elbert Pol.
18754
18755 2008-08-25  Bruno Haible  <bruno@clisp.org>
18756
18757         * doc/posix-functions/strftime.texi: Fix description of strftime
18758         module.
18759
18760 2008-08-24  Bruno Haible  <bruno@clisp.org>
18761
18762         * tests/uniwidth/test-uc_width2.c: New file.
18763         * tests/uniwidth/test-uc_width2.sh: New file.
18764         * modules/uniwidth/width-tests (Files): Add the new files.
18765         (TESTS): Add uniwidth/test-uc_width2.sh.
18766         (TESTS_ENVIRONMENT): New variable.
18767         (check_PROGRAMS): Add test-uc_width2.
18768         (test_uc_width2_SOURCES): New variable.
18769
18770         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
18771         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
18772         not 0x00AB.
18773         Reported by Alexander V. Lukyanov <lav@netis.ru>.
18774
18775 2008-08-22  Eric Blake  <ebb9@byu.net>
18776
18777         test-lock, test-tls: mention why a test is skipped
18778         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
18779         skipped.
18780         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
18781
18782         count-one-bits: relax license
18783         * modules/count-one-bits (License): Relicense to LGPLv2+.
18784         Suggested by Ludovic Courtès, approved by Ben Pfaff.
18785
18786 2008-08-22  Andreas Schwab  <schwab@suse.de>
18787
18788         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
18789         Remove spurious space in assignment.
18790
18791 2008-08-21  Simon Josefsson  <simon@josefsson.org>
18792
18793         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
18794         Paul Eggert <eggert@CS.UCLA.EDU>.
18795
18796 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
18797
18798         * modules/gettext: Add m4/threadlib.m4.
18799
18800 2008-08-19  Eric Blake  <ebb9@byu.net>
18801
18802         test-c-stack: fix compilation failure on FreeBSD 5.0
18803         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
18804         headers before <sys/resource.h>.
18805         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
18806         the bug.
18807         Reported by Nelson H. F. Beebe.
18808
18809         strverscmp: migrate from "strverscmp.h" to <string.h>
18810         * modules/string (Makefile.am): Add new hooks.
18811         * modules/strverscmp (Files): Remove strverscmp.h.
18812         (Depends-on): Add string.
18813         (configure.ac): Add indicator.
18814         (Include): Mention new header.
18815         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
18816         defaults.
18817         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
18818         results.
18819         * lib/strverscmp.h: Delete.
18820         * lib/string.in.h (strverscmp): Provide declaration, when needed.
18821         * tests/test-strverscmp.c (includes): Adjust client.
18822         * lib/check-version.c (includes): Likewise.
18823         * NEWS: Document the change.
18824
18825         strverscmp: add unit test
18826         * modules/strverscmp-tests: New file.
18827         * tests/test-strverscmp.c: Likewise.
18828
18829 2008-08-19  Simon Josefsson  <simon@josefsson.org>
18830
18831         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
18832         regarding Windows crypto stuff, from Mono.
18833
18834 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
18835
18836         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
18837         if present, for intel RND.  Return error on failures.
18838
18839 2008-08-18  Ben Pfaff  <blp@gnu.org>
18840
18841         gitlog-to-changelog: give better diagnostic for failed pipe-open
18842         * build-aux/gitlog-to-changelog: Improve error message: suggest
18843         that the version of Git may be too old.
18844
18845 2008-08-18  Simon Josefsson  <simon@josefsson.org>
18846
18847         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
18848         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
18849
18850 2008-08-18  Bruno Haible  <bruno@clisp.org>
18851
18852         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
18853         pthread_in_use().
18854
18855 2008-08-18  Bruno Haible  <bruno@clisp.org>
18856
18857         * lib/glthread/threadlib.c: Include <pthread.h>.
18858
18859 2008-08-18  Bruno Haible  <bruno@clisp.org>
18860
18861         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
18862         glthread_recursive_lock_* macros.
18863         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
18864         Fix syntax error.
18865
18866 2008-08-18  Bruno Haible  <bruno@clisp.org>
18867
18868         * lib/glthread/thread.c: Avoid forcing a context switch right after
18869         thread creation.
18870
18871 2008-08-17  Bruno Haible  <bruno@clisp.org>
18872
18873         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
18874         * lib/glthread/thread.h: Provide Win32 specific implementation.
18875         * modules/thread (Files): Add lib/glthread/thread.c.
18876         (Depends-on): Add lock.
18877         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
18878
18879 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18880
18881         New module 'yield'.
18882         * modules/yield: New file.
18883         * lib/glthread/yield.h: New file.
18884         * m4/yield.m4: New file.
18885         * MODULES.html.sh (Multithreading): Add yield.
18886
18887 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18888
18889         New module 'thread'.
18890         * modules/thread: New file.
18891         * lib/glthread/thread.h: New file.
18892         * m4/thread.m4: New file.
18893         * MODULES.html.sh (Multithreading): Add thread.
18894
18895 2008-08-17  Bruno Haible  <bruno@clisp.org>
18896
18897         * lib/glthread/lock.h: Include <stdlib.h> always.
18898         * lib/glthread/tls.h: Likewise.
18899         * lib/glthread/cond.h: Likewise.
18900
18901 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18902
18903         New module 'cond'.
18904         * modules/cond: New file.
18905         * lib/glthread/cond.h: New file.
18906         * lib/glthread/cond.c: New file.
18907         * m4/cond.m4: New file.
18908         * MODULES.html.sh (Multithreading): Add cond.
18909
18910 2008-08-16  Eric Blake  <ebb9@byu.net>
18911
18912         c-stack: fix regression on Irix 5.3 from 2008-06-21
18913         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
18914         sa_sigaction...
18915         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
18916         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
18917         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
18918         * modules/signal (Makefile.am): Use the value.
18919         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
18920         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
18921         * doc/posix-headers/signal.texi (signal.h): Document this
18922         portability issue.
18923         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
18924         Reported by Tom G. Christensen.
18925
18926 2008-08-17  Bruno Haible  <bruno@clisp.org>
18927
18928         New module 'threadlib'.
18929         * modules/threadlib: New file.
18930         * lib/glthread/threadlib.c: New file, extracted from
18931         lib/glthread/lock.c.
18932         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
18933         functions.
18934         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
18935         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
18936         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
18937         macros.
18938         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
18939         (gl_DISABLE_THREADS): Remove macro.
18940         * modules/lock (Files): Remove build-aux/config.rpath.
18941         (Depends-on): Remove havelib. Add threadlib.
18942         (configure.ac-early): Remove section.
18943         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
18944         * modules/tls (Depends-on): Remove lock. Add threadlib.
18945         (Link): New section, copied from threadlib.
18946         * MODULES.html.sh (Multithreading): Add threadlib.
18947
18948 2008-08-14  Bruno Haible  <bruno@clisp.org>
18949
18950         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
18951         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
18952         glthread_rwlock_unlock, glthread_rwlock_destroy,
18953         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
18954         glthread_recursive_lock_destroy): Define as macros always.
18955         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
18956         glthread_lock_lock.
18957         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
18958         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
18959         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
18960         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
18961         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
18962         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
18963         (glthread_recursive_lock_lock_func): Renamed from
18964         glthread_recursive_lock_lock.
18965         (glthread_recursive_lock_unlock_func): Renamed from
18966         glthread_recursive_lock_unlock.
18967         (glthread_recursive_lock_destroy_func): Renamed from
18968         glthread_recursive_lock_destroy.
18969
18970 2008-08-14  Bruno Haible  <bruno@clisp.org>
18971
18972         * lib/glthread/lock.h: Renamed from lib/lock.h.
18973         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
18974         * lib/glthread/tls.h: Renamed from lib/tls.h.
18975         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
18976         * lib/fstrcmp.c: Update includes.
18977         * lib/strsignal.c: Update includes.
18978         * modules/lock (Files, Makefile.am): Update.
18979         (Include): Change to "glthread/lock.h".
18980         * modules/tls (Files, Makefile.am): Update.
18981         (Include): Change to "glthread/tls.h".
18982         * tests/test-lock.c: Update includes.
18983         * tests/test-tls.c: Update includes.
18984         * NEWS: Mention the renamed header files.
18985
18986 2008-08-11  Jim Meyering  <meyering@redhat.com>
18987
18988         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
18989
18990 2008-08-11  Eric Blake  <ebb9@byu.net>
18991
18992         test-c-stack: avoid C99-ism
18993         * tests/test-c-stack.c (main): Fix whitespace, move declaration
18994         before statement.
18995         Reported by Alain Guibert.
18996
18997 2008-08-10  Jim Meyering  <meyering@redhat.com>
18998
18999         ensure that return value of uinttostr et al are not ignored
19000         * lib/inttostr.h (__GNUC_PREREQ): Define.
19001         (__attribute_warn_unused_result__): Define.
19002         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
19003
19004 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
19005
19006         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
19007         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
19008
19009 2008-08-07  Jim Meyering  <meyering@redhat.com>
19010
19011         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
19012
19013         * modules/mkstemp (License): Relicense under LGPLv2+.
19014         * modules/tempname (License): Likewise.
19015
19016 2008-08-06  Bruno Haible  <bruno@clisp.org>
19017
19018         * lib/poll.c (poll): Further micro-optimization.
19019
19020 2008-08-06  Jim Meyering  <meyering@redhat.com>
19021
19022         inet_pton.c: use locale-independent tolower
19023         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
19024         (inet_pton6): Use c_tolower rather than tolower.
19025         * modules/inet_pton (Depends-on): Add c-ctype.
19026
19027 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
19028
19029         * lib/poll.c (poll): Avoid division when timeout is 0, cache
19030         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
19031
19032 2008-08-06  Jim Meyering  <meyering@redhat.com>
19033
19034         * modules/inet_pton (License): Relicense under LGPLv2+.
19035
19036 2008-08-03  Bruno Haible  <bruno@clisp.org>
19037
19038         Additional non-aborting API for lock and tls.
19039         * lib/lock.h: Include <errno.h>.
19040         (glthread_lock_init): New macro/function.
19041         (gl_lock_init): Define as wrapper around glthread_lock_init.
19042         (glthread_lock_lock): New macro/function.
19043         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
19044         (glthread_lock_unlock): New macro/function.
19045         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
19046         (glthread_lock_destroy): New macro/function.
19047         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
19048         (glthread_rwlock_init): New macro/function.
19049         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
19050         (glthread_rwlock_rdlock): New macro/function.
19051         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
19052         (glthread_rwlock_wrlock): New macro/function.
19053         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
19054         (glthread_rwlock_unlock): New macro/function.
19055         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
19056         (glthread_rwlock_destroy): New macro/function.
19057         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
19058         (glthread_recursive_lock_init): New macro/function.
19059         (gl_recursive_lock_init): Define as wrapper around
19060         glthread_recursive_lock_init.
19061         (glthread_recursive_lock_lock): New macro/function.
19062         (gl_recursive_lock_lock): Define as wrapper around
19063         glthread_recursive_lock_lock.
19064         (glthread_recursive_lock_unlock): New macro/function.
19065         (gl_recursive_lock_unlock): Define as wrapper around
19066         glthread_recursive_lock_unlock.
19067         (glthread_recursive_lock_destroy): New macro/function.
19068         (gl_recursive_lock_destroy): Define as wrapper around
19069         glthread_recursive_lock_destroy.
19070         (glthread_once): New macro/function.
19071         (gl_once): Define as wrapper around glthread_once.
19072         Update function declarations.
19073         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
19074         glthread_rwlock_init. Return error code.
19075         (glthread_rwlock_rdlock_multithreaded): Renamed from
19076         glthread_rwlock_rdlock. Return error code.
19077         (glthread_rwlock_wrlock_multithreaded): Renamed from
19078         glthread_rwlock_wrlock. Return error code.
19079         (glthread_rwlock_unlock_multithreaded): Renamed from
19080         glthread_rwlock_unlock. Return error code.
19081         (glthread_rwlock_destroy_multithreaded): Renamed from
19082         glthread_rwlock_destroy. Return error code.
19083         (glthread_recursive_lock_init_multithreaded): Renamed from
19084         glthread_recursive_lock_init. Return error code.
19085         (glthread_recursive_lock_lock_multithreaded): Renamed from
19086         glthread_recursive_lock_lock. Return error code.
19087         (glthread_recursive_lock_unlock_multithreaded): Renamed from
19088         glthread_recursive_lock_unlock. Return error code.
19089         (glthread_recursive_lock_destroy_multithreaded): Renamed from
19090         glthread_recursive_lock_destroy. Return error code.
19091         (glthread_once_call): Make static.
19092         (glthread_once_multithreaded): Renamed from glthread_once.
19093         * lib/tls.h: Include <errno.h>.
19094         (glthread_tls_key_init): New macro/function.
19095         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
19096         (glthread_tls_set): New macro/function.
19097         (gl_tls_set): Define as wrapper around glthread_tls_set.
19098         (glthread_tls_key_destroy): New macro/function.
19099         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
19100         Update function declarations.
19101         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
19102         glthread_tls_get.
19103         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
19104
19105 2008-08-04  Eric Blake  <ebb9@byu.net>
19106
19107         gnumakefile: use space, not TAB, outside of targets
19108         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
19109
19110 2008-08-02  Jim Meyering  <meyering@redhat.com>
19111
19112         getdate.y: avoid locale-dependent date parsing failure
19113         In Turkish locales, getdate would fail to recognize keywords
19114         containing a lowercase "i".  The solution is not to rely on
19115         locale-sensitive case-conversion.
19116         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
19117         (lookup_word): Use c_toupper in place of toupper.
19118         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
19119         Reported by Vefa Bicakci <bicave@superonline.com> in
19120         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
19121         * modules/getdate (Depends-on): Add c-ctype.
19122
19123 2008-08-02  Bruno Haible  <bruno@clisp.org>
19124
19125         * gnulib-tool (func_import): When updating or creating a .gitignore
19126         file, prepend each added line with a slash, and ignore leading slashes
19127         from the existing lines.
19128         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
19129
19130 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19131
19132         Portability fix for GNU make 3.79.1.
19133         * top/GNUmakefile: Avoid 'else COND', which older GNU make
19134         versions do not understand.
19135
19136 2008-08-01  Bruno Haible  <bruno@clisp.org>
19137
19138         Work around bug of HP-UX 10.20 cc with -0.0 literal.
19139         * tests/test-isnanf.h (zero): New variable.
19140         (main): Avoid literal -0.0f.
19141         * tests/test-isnand.h (zero): New variable.
19142         (main): Avoid literal -0.0.
19143         * tests/test-isnanl.h (zero): New variable.
19144         (main): Avoid literal -0.0L.
19145         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
19146         (test_float, test_double, test_long_double): Avoid literals -0.0f,
19147         -0.0, -0.0L.
19148         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
19149         (test_signbitd): Avoid literal -0.0.
19150         (test_signbitl): Avoid literal -0.0L.
19151         * tests/test-ceilf1.c (zero): New variable.
19152         (main): Avoid literal -0.0f.
19153         * tests/test-ceill.c (zero): New variable.
19154         (main): Avoid literal -0.0L.
19155         * tests/test-floorf1.c (zero): New variable.
19156         (main): Avoid literal -0.0f.
19157         * tests/test-floorl.c (zero): New variable.
19158         (main): Avoid literal -0.0L.
19159         * tests/test-roundf1.c (zero): New variable.
19160         (main): Avoid literal -0.0f.
19161         * tests/test-round1.c (zero): New variable.
19162         (main): Avoid literal -0.0.
19163         * tests/test-roundl.c (zero): New variable.
19164         (main): Avoid literal -0.0L.
19165         * tests/test-truncf1.c (zero): New variable.
19166         (main): Avoid literal -0.0f.
19167         * tests/test-trunc1.c (zero): New variable.
19168         (main): Avoid literal -0.0.
19169         * tests/test-truncl.c (zero): New variable.
19170         (main): Avoid literal -0.0L.
19171         * tests/test-frexp.c (zero): New variable.
19172         (main): Avoid literal -0.0.
19173         * tests/test-frexpl.c (zero): New variable.
19174         (main): Avoid literal -0.0L.
19175         * tests/test-ldexpl.c (zero): New variable.
19176         (main): Avoid literal -0.0L.
19177         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
19178         (zerod, zerol): New variables.
19179         (test_function): Avoid literals -0.0, -0.0L.
19180         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
19181         (zerod, zerol): New variables.
19182         (test_function): Avoid literals -0.0, -0.0L.
19183         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
19184         (zerod, zerol): New variables.
19185         (test_function): Avoid literals -0.0, -0.0L.
19186         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
19187         (zerod, zerol): New variables.
19188         (test_function): Avoid literals -0.0, -0.0L.
19189         * tests/test-strtod.c (zero): New variable.
19190         (main): Avoid literal -0.0.
19191         Reported by Jonathan C. Patschke <jp@centtech.com>.
19192
19193 2008-07-31  Jim Meyering  <meyering@redhat.com>
19194
19195         sha256.h: correct definition of SHA224_DIGEST_SIZE
19196         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
19197         Reported by Paulie Pena IV <paulie4@gmail.com>.
19198         Define as 224 / 8, rather than as a literal.
19199         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
19200         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
19201         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
19202
19203 2008-07-31  Bruno Haible  <bruno@clisp.org>
19204
19205         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
19206         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
19207         Reported by Jonathan Patschke <jp@centtech.com>.
19208
19209 2008-07-31  Bruno Haible  <bruno@clisp.org>
19210
19211         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
19212         Reported by Paolo Bonzini <bonzini@gnu.org>.
19213
19214 2008-07-30  Eric Blake  <ebb9@byu.net>
19215
19216         test-strtod: allow compilation without -lm
19217         * tests/test-strtod.c (main): Avoid link dependence on fabs.
19218         Reported by Dennis Clarke <blastwave@gmail.com>.
19219
19220 2008-07-28  Jim Meyering  <meyering@redhat.com>
19221
19222         bootstrap: work also when there are no .po files in po/
19223         * build-aux/bootstrap (update_po_files): Complete the change
19224         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
19225
19226 2008-07-27  Jim Meyering  <meyering@redhat.com>
19227
19228         * users.txt: Add zile.
19229
19230 2008-07-26  Ben Pfaff  <blp@gnu.org>
19231
19232         Add missing dependencies on new m4/exponent[fdl].m4 files.
19233         * modules/isnanf-nolibm: Add m4/exponentf.m4.
19234         * modules/isnand-nolibm: Add m4/exponentd.m4.
19235         * modules/isnanl-nolibm: Add m4/exponentl.m4.
19236         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
19237         m4/isnan[fdl].m4, because the macros actually used moved.
19238         Reported by Jim Meyering.
19239
19240 2008-07-14  Ben Pfaff  <blp@gnu.org>
19241
19242         Add isinf module.
19243         * lib/isinf.c: New file.
19244         * lib/math.in.h: Define isinf macro if we have decided to replace
19245         it.
19246         * m4/isinf.m4: New file.
19247         * m4/math_h.m4: Initialize and substitute variables for isinf
19248         module.
19249         * modules/isinf: New file.
19250         * modules/isinf-tests: New file.
19251         * modules/math: Add substitutions for new module.
19252         * tests/test-isinf.c: New file.
19253         * doc/posix-functions/isinf.texi: Mention new module.
19254         * MODULES.html.sh: Mention new module.
19255
19256 2008-07-14  Ben Pfaff  <blp@gnu.org>
19257
19258         Factor out some macros for use by additional modules.
19259         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
19260         exponentf.m4.
19261         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
19262         exponentd.m4.
19263         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
19264         file exponentl.m4.
19265         * m4/exponentf.m4: New file.
19266         * m4/exponentd.m4: New file.
19267         * m4/exponentl.m4: New file.
19268         * modules/isnanf: Use new file m4/exponentf.m4.
19269         * modules/isnand: Use new file m4/exponentd.m4.
19270         * modules/isnanl: Use new file m4/exponentl.m4.
19271
19272 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
19273
19274         mktime.c: normalize tp->tm_isdst value to -1/0/1.
19275         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
19276         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
19277         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
19278
19279         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
19280         readlink on platforms without PATH_MAX.
19281
19282 2008-07-21  Eric Blake  <ebb9@byu.net>
19283
19284         Warn, not fail, on stale version.
19285         * top/GNUmakefile (_curr-ver): Tone down previous patch.
19286
19287         Don't allow installation with stale devel version number.
19288         * top/GNUmakefile (_is-install-target): New macro.
19289         (_curr-ver): Forbid installation with stale version number.
19290
19291 2008-07-20  Bruno Haible  <bruno@clisp.org>
19292
19293         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
19294         TESTS_ENVIRONMENT.
19295         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
19296
19297 2008-07-20  Bruno Haible  <bruno@clisp.org>
19298
19299         * lib/c-stack.h (c_stack_action): Add documentation.
19300         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
19301
19302 2008-07-20  Bruno Haible  <bruno@clisp.org>
19303
19304         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
19305         * modules/readlink (License): Likewise.
19306
19307 2008-07-17  Eric Blake  <ebb9@byu.net>
19308
19309         * modules/c-stack (Link): Fix typo.
19310
19311         Make c-stack use libsigsegv, when available.
19312         * modules/c-stack (Depends-on): Add libsigsegv.
19313         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
19314         needed.
19315         * lib/c-stack.c (SIGSTKSZ): Define fallback.
19316         (segv_handler, overflow_handler, c_stack_action)
19317         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
19318         implementation when libsigsegv is available, but only when using
19319         the library is necessary.
19320         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
19321         comment, explaining why XSI check fails on Linux.
19322         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
19323         * tests/test-c-stack2.sh: Tweak skip message.
19324         * NEWS: Document new link-time requirements.
19325
19326 2008-07-16  Eric Blake  <ebb9@byu.net>
19327
19328         c-stack: Expose false positives when not using libsigsegv.
19329         * modules/c-stack-tests (Files): Expand test.
19330         * tests/test-c-stack.c (main): Add means to conditionally trigger
19331         non-overflow SIGSEGV.
19332         * tests/test-c-stack2.sh: New file.
19333
19334 2008-07-14  Bruno Haible  <bruno@clisp.org>
19335
19336         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
19337         Reported by Eric Blake.
19338
19339 2008-07-14  Sam Steingold  <sds@gnu.org>
19340             Bruno Haible  <bruno@clisp.org>
19341
19342         New module libsigsegv.
19343         * modules/libsigsegv: New file.
19344         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
19345         modifications.
19346         * MODULES.html.sh (Signal handling): New section.
19347
19348 2008-07-14  Bruno Haible  <bruno@clisp.org>
19349
19350         * modules/unictype/ctype-* (Description): Add the word "function".
19351         Improves the resulting doc in MODULES.html.
19352
19353 2008-07-12  Ben Pfaff  <blp@gnu.org>
19354
19355         Add longlong module.
19356         * modules/longlong: New file.
19357
19358 2008-07-12  Bruno Haible  <bruno@clisp.org>
19359
19360         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
19361         to empty.
19362
19363 2008-07-10  Ben Pfaff  <blp@gnu.org>
19364
19365         Add isnan module.
19366         * doc/posix-functions/isnan.texi: Mention new module.
19367         * lib/math.in.h: Define isnan macro if we have decided to replace
19368         it.
19369         * m4/isnan.m4: New file.
19370         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
19371         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
19372         also.
19373         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
19374         redundancy.
19375         * m4/math_h.m4: Initialize and substitute variables for isnan
19376         module.
19377         * modules/isnan: New file.
19378         * modules/isnan-tests: New file.
19379         * modules/math: Add substitutions for new module.
19380         * tests/test-isnan.c: New file.
19381         * MODULES.html.sh: Mention new module.
19382
19383 2008-07-10  Ben Pfaff  <blp@gnu.org>
19384
19385         Add isnanf module.
19386         * lib/isnanf.m4: New file.
19387         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
19388         (gl_HAVE_ISNANF_IN_LIBM): New macro.
19389         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
19390         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
19391         * modules/isnanf: New file.
19392         * modules/isnanf-tests: New file.
19393         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
19394         files.
19395         * tests/test-isnanf-nolibm.c: factored most of its contents into
19396         new file tests/test-isnanf.h.
19397         * tests/test-isnanf.h: New file.
19398         * tests/test-isnanf.c: New file.
19399         * MODULES.html.sh: Mention new module.
19400         * doc/glibc-functions/isnanf.texi: Mention new module.
19401
19402 2008-07-10  Ben Pfaff  <blp@gnu.org>
19403
19404         Add isnand module.
19405         * lib/isnand.h: New file.
19406         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
19407         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
19408         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
19409         functionality also.
19410         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
19411         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
19412         (gl_HAVE_ISNAND_IN_LIBM): New macro.
19413         * modules/isnand: New file.
19414         * modules/isnand-tests: New file.
19415         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
19416         files.
19417         * tests/test-isnand-nolibm.c: factored most of its contents into
19418         new file tests/test-isnand.h.
19419         * tests/test-isnand.h: New file.
19420         * tests/test-isnand.c: New file.
19421         * MODULES.html.sh: Mention new module.
19422
19423 2008-07-10  Ben Pfaff  <blp@gnu.org>
19424
19425         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
19426         * lib/isnand.h: Rename lib/isnand-nolibm.h.
19427         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
19428         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
19429         * modules/isnanf-nolibm: Update references to renamed files.
19430         * modules/isnand-nolibm: Likewise.
19431         * modules/isnanf-nolibm-tests: Likewise.
19432         * modules/isnand-nolibm-tests: Likewise.
19433         * lib/frexp.c: Likewise.
19434         * lib/isfinite.c: Likewise.
19435         * lib/signbitd.c: Likewise.
19436         * lib/signbitf.c: Likewise.
19437         * lib/vasnprintf.c: Likewise.
19438         * tests/test-ceilf1.c: Likewise.
19439         * tests/test-ceilf2.c: Likewise.
19440         * tests/test-floorf1.c: Likewise.
19441         * tests/test-floorf2.c: Likewise.
19442         * tests/test-frexp.c: Likewise.
19443         * tests/test-round1.c: Likewise.
19444         * tests/test-round2.c: Likewise.
19445         * tests/test-roundf1.c: Likewise.
19446         * tests/test-strtod.c: Likewise.
19447         * tests/test-trunc1.c: Likewise.
19448         * tests/test-trunc2.c: Likewise.
19449         * tests/test-truncf1.c: Likewise.
19450         * tests/test-truncf2.c: Likewise.
19451         * NEWS: Mention the renamed header files.
19452
19453 2008-07-11  Jim Meyering  <meyering@redhat.com>
19454
19455         vc-list-files: make the last-resort awk code more portable
19456         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
19457         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
19458         does not support it.
19459
19460 2008-07-10  Eric Blake  <ebb9@byu.net>
19461
19462         Work with tar's bootstrap.
19463         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
19464         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
19465         an m4 comment.
19466
19467 2008-07-09  Jim Meyering  <meyering@redhat.com>
19468
19469         posix-shell.m4: fix typo that made this test malfunction
19470         * m4/posix-shell.m4: Remove capitalization in variable name.
19471
19472 2008-07-08  Bruno Haible  <bruno@clisp.org>
19473
19474         * m4/onceonly.m4: Update comments.
19475         Reported by Ben Pfaff <blp@cs.stanford.edu>.
19476
19477 2008-07-04  Jim Meyering  <meyering@redhat.com>
19478
19479         * users.txt: Add vc-dwim.
19480         (bison, coreutils): Use the gitweb URL.
19481
19482 2008-07-03  Jim Meyering  <meyering@redhat.com>
19483
19484         * users.txt: Add libffcall.  From Sam Steingold.
19485
19486 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
19487
19488         getdate.y: do not ignore TZ with relative day, month or year offset
19489         * lib/getdate.y (get_date): Move the tz-handling block to follow the
19490         relative-date-handling, since otherwise, the latter would clobber the
19491         sole output (an updated Start value) of the tz-handling block.
19492         * tests/test-getdate.c: Tests for the fix
19493
19494 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19495
19496         Recognize 'foo_LIBRARIES += libgnu.a'.
19497         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
19498         makefile snippet has already specified an installation location,
19499         also using '+='.
19500
19501 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
19502
19503         getdate.y: factor out common actions
19504         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
19505         Use them in place of open-coded actions.
19506
19507 2008-07-01  Simon Josefsson  <simon@josefsson.org>
19508
19509         Add self-test for getdate module.
19510         * modules/getdate-tests: New file.
19511         * tests/test-getdate.c: New file.
19512
19513 2008-06-29  Bruno Haible  <bruno@clisp.org>
19514
19515         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
19516         .gitignore.
19517         Reported by Sylvain Beucler <beuc@beuc.net>.
19518
19519 2008-06-29  Bruno Haible  <bruno@clisp.org>
19520
19521         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
19522         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
19523
19524 2008-06-29  Bruno Haible  <bruno@clisp.org>
19525
19526         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
19527         EXTRA_DIST.
19528         Reported by Sylvain Beucler <beuc@beuc.net>.
19529
19530 2008-06-26  Jim Meyering  <meyering@redhat.com>
19531
19532         make several modules depend on the "open" module
19533         This provides slightly increased consistency when opening-for-write
19534         the name of a non-directory spelled with a trailing slash.
19535         * modules/chdir-safer: Likewise.
19536         * modules/chown: Likewise.
19537         * modules/clean-temp: Likewise.
19538         * modules/copy-file: Likewise.
19539         * modules/fchdir: Likewise.
19540         * modules/fcntl-safer: Likewise.
19541         * modules/pipe: Likewise.
19542         * modules/utime: Likewise.
19543         Prompted by Eric Blake and Bruno Haible.
19544
19545 2008-06-24  Andreas Schwab  <schwab@suse.de>
19546
19547         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
19548         literals can be used as initializers for global variables.
19549
19550 2008-06-23  Eric Blake  <ebb9@byu.net>
19551
19552         Make gnulib-cache.m4 easier to diff.
19553         * gnulib-tool (func_import): Allow newlines when reading cached
19554         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
19555
19556 2008-06-23  Bruno Haible  <bruno@clisp.org>
19557
19558         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
19559         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
19560         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
19561         m4/signalblocking.m4.
19562         (gl_PREREQ_SIGACTION): Don't invoke it.
19563         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
19564         gl_PREREQ_SIG_HANDLER_H.
19565         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
19566         Don't check for sigaction here.
19567
19568 2008-06-23  Bruno Haible  <bruno@clisp.org>
19569
19570         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
19571         (install_handlers): Don't set the SA_RESETHAND flag.
19572
19573 2008-06-23  Bruno Haible  <bruno@clisp.org>
19574
19575         * m4/sigaction.m4: Comment fixes.
19576         * lib/signal.in.h: Likewise.
19577
19578 2008-06-23  Eric Blake  <ebb9@byu.net>
19579
19580         Fix typo.
19581         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
19582
19583         Avoid SA_ namespace.
19584         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
19585         Reported by Ralf Wildenhues.
19586
19587         Avoid test failure due to SA_RESTORER.
19588         * tests/test-sigaction.c (SA_MASK): New macro.
19589         (main): Avoid failing due to extension flags being set.
19590         Reported by Jim Meyering.
19591
19592         Revert use of sig-handler.h in sigprocmask.c.
19593         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
19594         it requires the existence of struct sigaction.
19595         * lib/sigprocmask.c (handler_t): Restore typedef.
19596         (rpl_signal, old_handlers): Use local type.
19597
19598 2008-06-22  Bruno Haible  <bruno@clisp.org>
19599
19600         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
19601         conditionally.
19602         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19603
19604 2008-06-22  Bruno Haible  <bruno@clisp.org>
19605
19606         * doc/posix-functions/siginterrupt.texi: Move note.
19607
19608         * lib/signal.in.h (SA_RESTART): New macro.
19609         * lib/sigaction.c: Update comment.
19610
19611         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
19612
19613         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
19614         (gl_PREREQ_SIGPROCMASK): Invoke it.
19615         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
19616
19617         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
19618
19619         * lib/sigprocmask.c: Update a comment.
19620
19621 2008-06-21  Eric Blake  <ebb9@byu.net>
19622
19623         Use sigaction module rather than signal().
19624         * modules/c-stack (Depends-on): Add sigaction.
19625         * modules/fatal-signal (Depends-on): Likewise.
19626         * modules/nanosleep (Depends-on): Likewise.
19627         * modules/sigprocmask (Files): Add sig-handler.h.
19628         * modules/sigaction (Files): Likewise.
19629         * lib/sig-handler.h (get_handler): New file, suggested by Paul
19630         Eggert.
19631         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
19632         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
19633         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
19634         (init_fatal_signals): Likewise.
19635         * lib/nanosleep.c (rpl_nanosleep): Likewise.
19636         (siginterrupt): Delete fallback.
19637         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
19638         instead.
19639         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
19640         siginterrupt.
19641
19642         New module sigaction, for mingw.
19643         * modules/sigaction: New module...
19644         * modules/sigaction-tests: ...and its test.
19645         * m4/sigaction.m4: New file.
19646         * lib/sigaction.c: Likewise.
19647         * tests/test-sigaction.c: Likewise.
19648         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
19649         * modules/signal (Makefile.am): Likewise.
19650         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
19651         needed.
19652         * doc/posix-headers/signal.texi (signal.h): Mention provided
19653         types.
19654         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
19655         that sigaction is preferable.
19656         * doc/posix-functions/sigaction.texi (sigaction): Mention new
19657         module.
19658         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19659         sigaction.
19660
19661         Improve robustness of sigprocmask by overriding signal.
19662         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
19663         is in use.
19664         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
19665         (SIGKILL, SIGSTOP): Provide fallbacks.
19666         (rpl_signal): Implement.
19667         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
19668         signal can be called inside handlers.
19669
19670         Fix nanosleep module on mingw.
19671         * modules/nanosleep (Depends-on): Add sys_select.
19672         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
19673
19674         Fix licensing of sigprocmask.
19675         * modules/raise (License): Relicense as LGPL.
19676
19677 2008-06-21  Bruno Haible  <bruno@clisp.org>
19678
19679         * lib/propername.c (proper_name_utf8): Don't use the transliterated
19680         result if it contains question marks.
19681         Reported by Michael Geng <linux@michaelgeng.de>.
19682
19683 2008-06-19  Bruno Haible  <bruno@clisp.org>
19684
19685         Fix CVS-ism.
19686         * doc/gnulib.texi: Include updated-stamp.texi.
19687         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
19688         (updated-stamp.texi): New rule.
19689         (gnulib.info): Depend on it.
19690         * doc/.gitignore: Add updated-stamp.texi.
19691         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
19692
19693 2008-06-19  Bruno Haible  <bruno@clisp.org>
19694
19695         * doc/Makefile (gnulib.info): Update and simplify dependencies.
19696         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
19697
19698 2008-06-19  Eric Blake  <ebb9@byu.net>
19699
19700         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
19701         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
19702         Reported by Stepan Kasal.
19703
19704 2008-06-18  Bruno Haible  <bruno@clisp.org>
19705
19706         * lib/fatal-signal.c (init_fatal_signals): Add comment.
19707         Reported by Eric Blake.
19708
19709 2008-06-18  Eric Blake  <ebb9@byu.net>
19710
19711         Work around cygwin 1.5.25 strsignal bug.
19712         * tests/test-strsignal.c: Allow for const char *.
19713         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
19714
19715 2008-06-18  Simon Josefsson  <simon@josefsson.org>
19716
19717         * users.txt: Update URL to article and add author/date
19718         information.
19719
19720 2008-06-17  Bruno Haible  <bruno@clisp.org>
19721
19722         New macro gl_DISABLE_THREADS.
19723         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
19724         if the user did not pass --enable-threads or --disable-threads option.
19725         (gl_DISABLE_THREADS): New macro.
19726         Reported by Eric Blake <ebb9@byu.net>.
19727
19728 2008-06-17  Bruno Haible  <bruno@clisp.org>
19729
19730         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
19731         when the macro ignores it.
19732         Based on a patch by Eric Blake <ebb9@byu.net>.
19733
19734 2008-06-17  Bruno Haible  <bruno@clisp.org>
19735
19736         * modules/tls (License): Change to LGPLv2+.
19737         Reported by Eric Blake.
19738
19739 2008-06-17  Eric Blake  <ebb9@byu.net>
19740
19741         Simplify c-stack prerequisites.
19742         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
19743         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
19744         no longer requires <ucontext.h> to exist.  Optimize setrlimit
19745         check.
19746         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
19747         <sys/resource.h>.
19748
19749         Move c-stack test into testsuite.
19750         * modules/c-stack-tests: New file.
19751         * lib/c-stack.c [DEBUG]: Move test program...
19752         * tests/test-c-stack.c: ...into this new file.  Skip rather than
19753         fail test if sigaltstack is lacking.
19754         * tests/test-c-stack.sh: New driver file.
19755
19756 2008-06-16  Eric Blake  <ebb9@byu.net>
19757
19758         Use raise module consistently.
19759         * modules/fatal-signal (Depends-on): Add raise.
19760         * modules/sigprocmask (Depends-on): Likewise.
19761         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
19762         * lib/sigprocmask.c (sigprocmask): Likewise.
19763         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
19764         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
19765
19766         Fix compliance bug in sigpending.
19767         * lib/sigprocmask.c (sigpending): Return pending array via
19768         parameter, not return value.
19769
19770 2008-06-14  Eric Blake  <ebb9@byu.net>
19771
19772         Improve obstack-printf test code.
19773         * tests/test-obstack-printf.c (test_function): Fix comment, and
19774         simplify usage of obstack_* in macros.  Add a test for coverage.
19775         Reported by Bruno Haible.
19776
19777 2008-06-14  Bruno Haible  <bruno@clisp.org>
19778
19779         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
19780         array size as a constant, not as a const variable.
19781         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
19782         AC_USE_SYSTEM_EXTENSIONS.
19783         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
19784         Test whether the obstack_printf function actually exists.
19785         * modules/obstack-printf (Depends-on): Add extensions.
19786         (Include): Remove obstack.h.
19787         * modules/obstack-printf-posix (Depends-on): Add extensions.
19788         (Include): Remove obstack.h.
19789
19790 2008-06-13  Eric Blake  <ebb9@byu.net>
19791
19792         Add obstack-printf and obstack-printf-posix modules.
19793         * modules/obstack-printf: New file.
19794         * modules/obstack-printf-posix: Likewise.
19795         * MODULES.html.sh (Misc): Mention them.
19796         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
19797         Likewise.
19798         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
19799         Likewise.
19800         * modules/stdio (Makefile.am): Accomodate new modules.
19801         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
19802         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
19803         Declare.
19804         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
19805         functions.
19806         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
19807         (gl_REPLACE_OBSTACK_PRINTF): New macros
19808         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
19809         * tests/test-obstack-printf.c: New file.
19810         * modules/obstack-printf-tests: Likewise.
19811         * modules/obstack-printf-posix-tests: Likewise.
19812
19813 2008-06-11  Bruno Haible  <bruno@clisp.org>
19814
19815         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
19816         * lib/open.c: Include errno.h.
19817         (open): Fail when attempting to write to a file that has a trailing
19818         slash.
19819         * tests/test-open.c (main): Test against trailing slash bug.
19820         * doc/posix-functions/open.texi: Mention the trailing slash bug.
19821
19822 2008-06-10  Bruno Haible  <bruno@clisp.org>
19823
19824         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
19825         for $? to work inside the trap command, with various /bin/sh-s.
19826         * tests/test-vc-list-files-cvs.sh: Likewise.
19827
19828 2008-06-10  Bruno Haible  <bruno@clisp.org>
19829
19830         * lib/acl-internal.h: Don't include gettext.h here.
19831         * lib/set-mode-acl.c: Include gettext.h here.
19832         * lib/copy-acl.c: Likewise.
19833
19834 2008-06-10  Bruno Haible  <bruno@clisp.org>
19835
19836         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
19837         * lib/wait-process.c (wait_subprocess): Likewise.
19838         * lib/execute.h (execute): Add termsigp argument.
19839         * lib/execute.c (execute): Likewise.
19840         * lib/csharpcomp.c (compile_csharp_using_pnet,
19841         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
19842         * lib/csharpexec.c (execute_csharp_using_pnet,
19843         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
19844         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
19845         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
19846         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
19847         is_jikes_present): Update.
19848         * lib/javaexec.c (execute_java_class): Update.
19849         * lib/javaversion.c (execute_and_read_line): Update.
19850         * NEWS: Document the changes.
19851         Reported by Eric Blake.
19852
19853 2008-06-10  Eric Blake  <ebb9@byu.net>
19854
19855         Add missing include.
19856         * tests/test-strstr.c (includes): Add <signal.h>.
19857         * tests/test-strcasestr.c (includes): Likewise.
19858         * tests/test-memmem.c (includes): Likewise.
19859
19860 2008-06-10  Bruno Haible  <bruno@clisp.org>
19861
19862         * lib/wait-process.c (wait_subprocess): Add an assertion.
19863
19864 2008-06-10  Bruno Haible  <bruno@clisp.org>
19865
19866         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
19867
19868 2008-06-10  Bruno Haible  <bruno@clisp.org>
19869
19870         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
19871         using alarm().
19872         * tests/test-strcasestr.c (main): Likewise.
19873         * tests/test-strstr.c (main): Likewise.
19874
19875 2008-06-09  Bruno Haible  <bruno@clisp.org>
19876
19877         Work around the Solaris 10 ACE ACLs ABI change.
19878         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
19879         declare if ACL_NO_TRIVIAL is present.
19880         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
19881         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
19882         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
19883         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
19884         define if ACL_NO_TRIVIAL is present.
19885         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
19886         and use the current ABI.
19887         (file_has_acl): Use same #if condition as elsewhere.
19888         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
19889         in use, and use the current ABI.
19890         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
19891         Reported by Jim Meyering.
19892
19893 2008-06-09  Eric Blake  <ebb9@byu.net>
19894
19895         Work around environments that (stupidly) ignore SIGALRM.
19896         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
19897         before using alarm().
19898         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
19899         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
19900         Reported by Ian Beckwith <ianb@erislabs.net>.
19901
19902         Produce autobuild blurb earlier in log.
19903         * modules/autobuild (configure.ac-early): Move AB_INIT here.
19904
19905 2008-06-09  Jim Meyering  <meyering@redhat.com>
19906         and OndÅ™ej Vašík  <ovasik@redhat.com>
19907
19908         utimens.c: correct kernel bug work-around
19909         OndÅ™ej Vašík found that the invalid return value of 280 indicates
19910         failure, not success, and the kernel bug we're trying to work
19911         around affects not just the utimensat call, but also the fallback
19912         futimens call.
19913         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
19914         not success.
19915         [HAVE_FUTIMENS]: Use the same work-around, here.
19916
19917 2008-06-09  Jim Meyering  <meyering@redhat.com>
19918
19919         add more guards around definition of ACE_-related code
19920         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
19921         ALLOW and ACE_OWNER are also defined.
19922
19923 2008-06-08  Bruno Haible  <bruno@clisp.org>
19924
19925         * lib/acl-internal.h: Add me as co-author.
19926         * lib/file-has-acl.c: Likewise.
19927         * lib/set-mode-acl.c: Likewise.
19928         * lib/copy-acl.c: Likewise.
19929
19930 2008-06-08  Bruno Haible  <bruno@clisp.org>
19931
19932         Add support for AIX ACLs.
19933         * lib/acl-internal.h (acl_nontrivial): New declaration.
19934         * lib/file-has-acl.c (acl_nontrivial): New function.
19935         (file_has_acl): Add implementation using AIX 4 ACL API.
19936         * lib/set-mode-acl.c (qset_acl): Likewise.
19937         * lib/copy-acl.c (qcopy_acl): Likewise.
19938
19939 2008-06-08  Bruno Haible  <bruno@clisp.org>
19940
19941         Add support for HP-UX ACLs.
19942         * lib/acl-internal.h (acl_nontrivial): New declaration.
19943         * lib/file-has-acl.c (acl_nontrivial): New function.
19944         (file_has_acl): Add implementation using HP-UX 11 ACL API.
19945         * lib/set-mode-acl.c (qset_acl): Likewise.
19946         * lib/copy-acl.c (qcopy_acl): Likewise.
19947
19948 2008-06-08  Bruno Haible  <bruno@clisp.org>
19949
19950         Add support for Cygwin ACLs.
19951         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
19952         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
19953         the chmod_or_fchmod call.
19954         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
19955
19956 2008-06-08  Bruno Haible  <bruno@clisp.org>
19957
19958         Fix bug with setuid modes in Solaris 10+ code.
19959         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
19960         succeeded, when the mode contains some special bits.
19961
19962 2008-06-08  Bruno Haible  <bruno@clisp.org>
19963
19964         Add support for Solaris 7..10 ACLs.
19965         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
19966         declarations.
19967         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
19968         functions.
19969         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
19970         * lib/set-mode-acl.c (qset_acl): Likewise.
19971         * lib/copy-acl.c (qcopy_acl): Likewise.
19972
19973 2008-06-08  Bruno Haible  <bruno@clisp.org>
19974
19975         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
19976         declaration.
19977         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
19978         (acl_access_nontrivial): Remove MacOS X case.
19979         (file_has_acl): Use acl_extended_nontrivial.
19980         * lib/copy-acl.c (qcopy_acl): Likewise.
19981
19982 2008-06-08  Bruno Haible  <bruno@clisp.org>
19983
19984         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
19985
19986 2008-06-08  Jim Meyering  <meyering@redhat.com>
19987
19988         * modules/acl (Maintainer): Add Bruno Haible.
19989
19990 2008-06-07  Bruno Haible  <bruno@clisp.org>
19991
19992         Improve support for Tru64 ACLs.
19993         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
19994         ACL on OSF/1.
19995
19996 2008-06-07  Bruno Haible  <bruno@clisp.org>
19997
19998         Add support for MacOS X ACLs.
19999         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
20000         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
20001         * lib/set-mode-acl.c (qset_acl): Likewise.
20002         * lib/copy-acl.c (qcopy_acl): Likewise.
20003
20004 2008-06-07  Bruno Haible  <bruno@clisp.org>
20005
20006         Fix memory leak introduced on 2008-05-22.
20007         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
20008         use.
20009
20010 2008-06-07  Bruno Haible  <bruno@clisp.org>
20011
20012         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
20013         to construct an empty ACL.
20014
20015 2008-06-07  Bruno Haible  <bruno@clisp.org>
20016
20017         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
20018         precisely.
20019         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
20020
20021 2008-06-07  Bruno Haible  <bruno@clisp.org>
20022
20023         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
20024         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
20025
20026 2008-06-07  Bruno Haible  <bruno@clisp.org>
20027
20028         * doc/posix-functions/_setjmp.texi: Explain the use of this function
20029         regardless of POSIX.
20030         * doc/posix-functions/_longjmp.texi: Likewise.
20031         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
20032         SystemV platform in this case.
20033
20034 2008-06-06  Eric Blake  <ebb9@byu.net>
20035
20036         Document abort() bugs.
20037         * doc/posix-functions/abort.texi (abort): Mention anomalies.
20038
20039         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
20040         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
20041         sigsetjmp.
20042         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
20043         siglongjmp, but only as a macro.
20044         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
20045         is obsolete.
20046         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
20047
20048         Tweak documentation to cover cygwin argz bugs.
20049         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
20050         argz bug fix; no code change needed since no cygwin releases
20051         occurred between the last fix and the bug being tested.
20052         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
20053         module and recently fixed cygwin bugs.
20054         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
20055         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
20056         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
20057         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
20058         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
20059         Likewise.
20060         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
20061         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
20062         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
20063         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
20064         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
20065         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
20066         Likewise.
20067
20068         Avoid gcc warning on cygwin.
20069         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
20070         !ACL_NO_TRIVIAL]: Avoid unused variable.
20071
20072 2008-06-05  Eric Blake  <ebb9@byu.net>
20073
20074         Be tolerant of UNKNOWN version in gnulib-tool test dir.
20075         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
20076         git-version-gen fails to come up with a version.
20077         Reported by Simon Josefsson.
20078
20079 2008-06-05  Jim Meyering  <meyering@redhat.com>
20080             Paul Eggert  <eggert@cs.ucla.edu>
20081
20082         utimens.c: work around a probable Linux kernel bug
20083         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
20084         appears to be a kernel bug that causes utimensat to return 280
20085         instead of 0, indicating success.
20086
20087 2008-06-04  Bruno Haible  <bruno@clisp.org>
20088
20089         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
20090         2008-06-01 commit.
20091
20092 2008-06-04  Bruno Haible  <bruno@clisp.org>
20093
20094         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
20095         * lib/file-has-acl.c (acl_access_nontrivial): New function.
20096         (file_has_acl): Use it. Save errno afterwards.
20097         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
20098
20099 2008-06-03  Bruno Haible  <bruno@clisp.org>
20100
20101         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
20102         draft code. Simplify #ifs.
20103         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
20104         Put Solaris code after POSIX-draft code. Fix comments regarding
20105         Solaris 10, HP-UX. Mention Cygwin.
20106         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
20107
20108 2008-06-03  Eric Blake  <ebb9@byu.net>
20109
20110         Provide fallback for older kernels.
20111         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
20112         Provide runtime fallback if kernel lacks support.
20113         Reported by Mike Frysinger.
20114
20115 2008-06-02  Bruno Haible  <bruno@clisp.org>
20116
20117         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
20118         it exists.
20119
20120 2008-06-02  Bruno Haible  <bruno@clisp.org>
20121
20122         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
20123         * lib/copy-acl.c (qcopy_acl): Update comment.
20124
20125 2008-06-02  Bruno Haible  <bruno@clisp.org>
20126
20127         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
20128         like ACL APIs.
20129
20130 2008-06-02  Bruno Haible  <bruno@clisp.org>
20131
20132         * tests/test-file-has-acl.sh: Use different code for Cygwin.
20133         * tests/test-set-mode-acl.sh: Likewise.
20134         * tests/test-copy-acl.sh: Likewise.
20135         * tests/test-copy-file.sh: Likewise.
20136
20137 2008-06-02  Bruno Haible  <bruno@clisp.org>
20138
20139         * tests/test-file-has-acl.sh: Remove unused code.
20140
20141 2008-06-01  Bruno Haible  <bruno@clisp.org>
20142
20143         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
20144         (copy_acl): Just a wrapper around qcopy_acl that emits the error
20145         messages.
20146         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
20147
20148 2008-06-01  Bruno Haible  <bruno@clisp.org>
20149
20150         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
20151         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
20152         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
20153         APIs.
20154         * modules/acl-tests (configure.ac): Remove tests now contained in
20155         m4/acl.m4.
20156
20157 2008-06-02  Jim Meyering  <meyering@redhat.com>
20158
20159         announce-gen: use a better key-server host name
20160         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
20161         it may be more consistently reliable.  Suggested by Werner Koch
20162         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
20163
20164 2008-06-01  Bruno Haible  <bruno@clisp.org>
20165
20166         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
20167         Reported by Voroskoi Andras <voroskoi@gmail.com>.
20168
20169 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
20170
20171         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
20172
20173 2008-06-01  Bruno Haible  <bruno@clisp.org>
20174
20175         New ACL tests.
20176         * tests/test-file-has-acl.sh: New file.
20177         * tests/test-file-has-acl.c: New file.
20178         * tests/test-set-mode-acl.sh: New file.
20179         * tests/test-set-mode-acl.c: New file.
20180         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
20181         * tests/test-copy-acl.c: New file.
20182         * modules/acl-tests: New file, based on modules/copy-file-tests.
20183         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
20184         (Depends-on): Add acl-tests.
20185         (configure.ac): Remove checks.
20186         (Makefile.am): Don't create test-sameacls program here any more.
20187
20188 2008-06-01  Bruno Haible  <bruno@clisp.org>
20189
20190         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
20191         * tests/test-sameacls.c: Include progname.h.
20192         (main): Invoke set_program_name. Portability fixes for MacOS X,
20193         Solaris, HP-UX.
20194
20195 2008-06-01  Bruno Haible  <bruno@clisp.org>
20196
20197         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
20198         function.
20199         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
20200
20201 2008-06-01  Bruno Haible  <bruno@clisp.org>
20202
20203         * modules/rpmatch (Depends-on): Add strdup.
20204
20205 2008-06-01  Bruno Haible  <bruno@clisp.org>
20206
20207         * lib/pipe.c: Include unistd-safer.h.
20208         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
20209         * modules/pipe (Depends-on): Add unistd-safer.
20210
20211 2008-05-30  Simon Josefsson  <simon@josefsson.org>
20212
20213         * modules/autobuild (configure.ac): Call AB_INIT.
20214
20215 2008-05-30  Simon Josefsson  <simon@josefsson.org>
20216
20217         * tests/test-getaddrinfo.c: Don't print debug messages by default.
20218         Suggested by Bruno Haible <bruno@clisp.org>.
20219
20220 2008-05-30  Simon Josefsson  <simon@josefsson.org>
20221
20222         * tests/test-base64.c: Cast size_t to unsigned long when invoking
20223         printf.  Use %lu instead of %d.  Reported by Bruno Haible
20224         <bruno@clisp.org>.
20225
20226 2008-05-29  Eric Blake  <ebb9@byu.net>
20227
20228         Prefer new POSIX 200x interfaces over futimesat.
20229         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
20230         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
20231         when available.
20232         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
20233
20234 2008-05-28  Bruno Haible  <bruno@clisp.org>
20235
20236         * modules/stpcpy (License): Change to LGPLv2+.
20237         Requested by David Lutterkort <dlutter@redhat.com>.
20238
20239 2008-05-27  Bruno Haible  <bruno@clisp.org>
20240
20241         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
20242         current mingw.
20243         Reported by Jose E. Marchesi <jemarch@gnu.org>.
20244
20245 2008-05-27  Bruno Haible  <bruno@clisp.org>
20246
20247         * modules/iconv_open (Link): New section, from module 'iconv'.
20248         * modules/striconv (Link): Likewise.
20249         * modules/striconveh (Link): Likewise.
20250         * modules/xstriconv (Link): Likewise.
20251         * modules/unicodeio (Link): Likewise.
20252         * modules/propername (Link): Likewise.
20253         Reported by Jim Meyering.
20254
20255 2008-05-26  Jim Meyering  <meyering@redhat.com>
20256
20257         sha256: do not artificially restrict buffer length to be < 2^32
20258         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
20259         uint32_t to size_t.
20260         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
20261         to match.
20262
20263         avoid unaligned access errors, e.g., on sparc
20264         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
20265         direct access through a possibly-unaligned uint64* pointer.
20266         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
20267         direct access through a possibly-unaligned uint32* pointer.
20268         Prompted by this patch from Tom "spot" Callaway:
20269         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
20270
20271         sha512.c: fix typo in comment
20272         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
20273
20274 2008-05-25  Bruno Haible  <bruno@clisp.org>
20275
20276         * lib/set-mode-acl.c: Renamed from lib/acl.c.
20277         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
20278         (Makefile.am): Update lib_SOURCES.
20279
20280 2008-05-25  Bruno Haible  <bruno@clisp.org>
20281
20282         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
20283
20284 2008-05-25  Jim Meyering  <meyering@redhat.com>
20285
20286         useless-if-before-free: freed expr may have white-space differences
20287         * build-aux/useless-if-before-free: Recognize cases in which the
20288         freed expression differs from the tested one in embedded white
20289         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
20290         $1 was used, so we can't make any regexp shy.  Improved tests now
20291         detect this.
20292
20293         useless-if-before-free: accept white space in the expression.
20294         * build-aux/useless-if-before-free: For now, any white space
20295         in the expression must be identical in the free argument.
20296
20297         useless-if-before-free: efficiency tweak
20298         * build-aux/useless-if-before-free: Make the expression-matching
20299         regexp "shy".
20300         Make the *outer* regexp shy, not the expr-matching one.
20301
20302         update code-in-comment to accept cast of free arg
20303         * build-aux/useless-if-before-free: Update regexp.
20304
20305 2008-05-25  Bruno Haible  <bruno@clisp.org>
20306
20307         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
20308         * modules/copy-file-tests (Files, Makefile.am): Update.
20309         * tests/test-copy-file.c (func_test_copy): Update.
20310
20311 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
20312
20313         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
20314
20315 2008-05-23  Bruno Haible  <bruno@clisp.org>
20316
20317         Improve support for ACLs on OSF/1.
20318         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
20319         Remove fallback for unknown flavors of ACLs.
20320
20321 2008-05-22  Bruno Haible  <bruno@clisp.org>
20322
20323         Add support for ACLs on OSF/1.
20324         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
20325         replacements.
20326         (acl_free_text): New macro fallback.
20327         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
20328         acl_free.
20329         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
20330         acl_free_text function. Require AC_C_INLINE.
20331
20332 2008-05-22  Bruno Haible  <bruno@clisp.org>
20333
20334         Make copy_acl work on MacOS X 10.5.
20335         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
20336         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
20337         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
20338         If MODE_INSIDE_ACL, don't assume that every system has the same text
20339         representation for ACLs as FreeBSD.
20340         * lib/copy-acl.c (copy_acl): Add support for platforms with
20341         !MODE_INSIDE_ACL.
20342         * lib/file-has-acl.c (file_has_acl): Likewise.
20343         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
20344         FreeBSD, MacOS X, or IRIX, respectively.
20345
20346 2008-05-22  Bruno Haible  <bruno@clisp.org>
20347
20348         * lib/acl.h: Don't include <sys/acl.h>.
20349         (GETACLCNT): Move fallback to lib/acl-internal.h.
20350         * lib/acl-internal.h: Include <sys/acl.h> here.
20351         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
20352
20353 2008-05-22  Bruno Haible  <bruno@clisp.org>
20354
20355         Split off copy_acl function to separate file.
20356         * lib/copy-acl.c: New file, extracted from lib/acl.c.
20357         * lib/acl.c (copy_acl): Moved function to separate file.
20358         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
20359         * modules/acl (Files): Add lib/copy-acl.c.
20360         (Makefiles.am): Augment lib_SOURCES.
20361
20362 2008-05-22  Bruno Haible  <bruno@clisp.org>
20363
20364         * modules/copy-file-tests: New file.
20365         * tests/test-copy-file.sh: New file.
20366         * tests/test-copy-file.c: New file.
20367         * tests/test-copy-file-sameacls.c: New file.
20368
20369 2008-05-22  Eric Blake  <ebb9@byu.net>
20370
20371         Avoid gcc warning.
20372         * tests/test-memcmp.c (main): Pass NULL indirectly.
20373
20374 2008-05-21  Bruno Haible  <bruno@clisp.org>
20375
20376         Add reference doc about ACLs.
20377         * doc/acl-resources.txt: New file.
20378         * doc/acl-cygwin.txt: New file.
20379
20380 2008-05-21  Bruno Haible  <bruno@clisp.org>
20381
20382         Avoid one more warning from gcc.
20383         * lib/vasnprintf.c (IF_LINT): Update comments.
20384         (VASNPRINTF): Use it also for the 'prefix' array initializer.
20385
20386 2008-05-21  Jim Meyering  <meyering@redhat.com>
20387
20388         avoid a warning from gcc
20389         * lib/vasnprintf.c (IF_LINT): Define.
20390         (scale10_round_decimal_long_double):
20391         Use it to avoid a "may be used uninitialized" warning.
20392         (scale10_round_decimal_double): Likewise.
20393
20394 2008-05-21  Simon Josefsson  <simon@josefsson.org>
20395
20396         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
20397         declared.
20398
20399 2008-05-20  Bruno Haible  <bruno@clisp.org>
20400
20401         * tests/test-memcmp.c (main): Test also the sign of the result. Test
20402         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
20403
20404 2008-05-20  Simon Josefsson  <simon@josefsson.org>
20405
20406         * modules/memcmp-tests: New file.
20407         * tests/test-memcmp.c: New file.
20408
20409 2008-05-19  Bruno Haible  <bruno@clisp.org>
20410
20411         * modules/propername (Notice, configure.ac): Put quoted "..." into
20412         --keyword option.
20413         * lib/propername.h: Update comments accordingly.
20414         Reported by Eric Blake.
20415
20416 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
20417
20418         * modules/getpass-gnu (Depends-on): Add fseeko.
20419
20420 2008-05-19  Simon Josefsson  <simon@josefsson.org>
20421
20422         * modules/base64-tests: New file.
20423
20424 2008-05-19  Bo Borgerson <gigabo@gmail.com>
20425
20426         * lib/base64.c (base64_decode_ctx): If a decode context structure
20427         was passed in use it to ignore newlines.  If a context structure
20428         was _not_ passed in, continue to treat newlines as garbage (this
20429         is the historical behavior).  Formerly base64_decode.
20430         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
20431         takes a decode context structure.
20432         * lib/base64.h (base64_decode): Macro for four-argument calls.
20433         (base64_decode_alloc): Likewise.
20434         * lib/base64.c (base64_decode_ctx): If a decode context structure
20435         was passed in use it to ignore newlines.  If a context structure
20436         was _not_ passed in, continue to treat newlines as garbage (this
20437         is the historical behavior).  Formerly base64_decode.
20438         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
20439         takes a decode context structure.
20440         * lib/base64.h (base64_decode): Macro for four-argument calls.
20441         (base64_decode_alloc): Likewise.
20442
20443 2008-05-19  Jim Meyering  <meyering@redhat.com>
20444
20445         avoid a warning from gcc
20446         * lib/trim.c (IF_LINT): Define.
20447         (trim2): Use it to avoid a "may be used uninitialized" warning.
20448
20449         Fix doc typo.
20450         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
20451
20452 2008-05-19  Bruno Haible  <bruno@clisp.org>
20453
20454         * doc/glibc-functions/getpass.texi: Document limits of other
20455         implementations.
20456
20457 2008-05-19  Simon Josefsson  <simon@josefsson.org>
20458             Bruno Haible <bruno@clisp.org>
20459
20460         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
20461
20462 2008-05-18  Bruno Haible  <bruno@clisp.org>
20463
20464         * modules/propername: New file, from GNU gettext.
20465         * lib/propername.h: New file, from GNU gettext.
20466         * lib/propername.c: New file, from GNU gettext.
20467         * MODULES.html.sh (Internationalization functions): Add propername.
20468
20469 2008-05-16  Jim Meyering  <meyering@redhat.com>
20470             Bruno Haible  <bruno@clisp.org>
20471
20472         Avoid some warnings from "gcc -Wshadow".
20473         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
20474
20475 2008-05-15  Eric Blake  <ebb9@byu.net>
20476
20477         Extend previous patch to cygwin 1.7.0.
20478         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
20479         fast implementation in cygwin >= 1.7.0.
20480         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
20481         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
20482
20483 2008-05-15  Bruno Haible  <bruno@clisp.org>
20484
20485         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
20486         implementation in glibc >= 2.9.
20487         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
20488         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
20489
20490 2008-05-15  Bruno Haible  <bruno@clisp.org>
20491
20492         * MODULES.html.sh (Internationalization functions): Remove linebreak.
20493         (Unicode string functions): Add unilbrk/*.
20494         Reported by Karl Berry.
20495
20496 2008-05-15  Eric Blake  <ebb9@byu.net>
20497
20498         Fix violation of <stdbool.h> replacement in regex.
20499         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
20500         * lib/regexec.c (re_search_internal): Likewise.
20501         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
20502
20503 2008-05-15  Jim Meyering  <meyering@redhat.com>
20504
20505         avoid distracting test output when git or cvs is not found
20506         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
20507         * tests/test-vc-list-files-git.sh: Likewise.
20508
20509 2008-05-15  Eric Blake  <ebb9@byu.net>
20510
20511         Glibc finally accepted the memmem speedup code, bugzilla #5514.
20512         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
20513         glibc version.
20514         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
20515         * doc/posix-functions/strstr.texi (strstr): Likewise.
20516         * lib/str-two-way.h (MAX): Sychronize with glibc.
20517
20518 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
20519
20520         * lib/regcomp.c (optimize_utf8): Add a note on why we test
20521         opr.ctx_type.
20522         (calc_first): Initialize constraint field.
20523         (duplicate_node_closure): Use it instead of special casing ANCHORS.
20524         Fix grammar.
20525         (duplicate_node): Merge constraint field for all node types.
20526         (calc_eclosure_iter): Look at constraint field for all node types.
20527         * lib/regex_internal.c (create_cd_newstate): Don't look at
20528         opr.ctx_type.
20529
20530 2008-05-14  Bruno Haible  <bruno@clisp.org>
20531
20532         Help GCC to do better code generation.
20533         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
20534         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
20535         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
20536         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
20537         Declare with attribute 'malloc' if supported.
20538
20539 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
20540
20541         use "echo STR|wc -c" rather than unportable "expr length STR"
20542         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
20543         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
20544
20545 2008-05-14  Jim Meyering  <meyering@redhat.com>
20546
20547         use dd ibs=$n count=1 ... rather than less-portable head -c$n
20548         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
20549         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
20550         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
20551         via Collin Lasse.
20552
20553 2008-05-14  Eric Blake  <ebb9@byu.net>
20554
20555         Avoid quadratic growth in gl_LIBSOURCES.
20556         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
20557         Suggested by Bruno Haible.
20558
20559         Test xmemdup0.
20560         * modules/xmemdup0-tests: New file.
20561         * tests/test-xmemdup0.c: Likewise.
20562
20563 2008-05-13  Eric Blake  <ebb9@byu.net>
20564
20565         Split xmemdup0 into its own module.
20566         * modules/xmemdup0: New file.
20567         * lib/xmemdup0.h: Likewise.
20568         * lib/xmemdup0.c: Likewise.
20569         * MODULES.html.sh (Memory management functions): Add xmemdup0.
20570         * lib/xalloc.h (xmemdup0): Remove.
20571         * lib/xmalloc.c (xmemdup0): Likewise.
20572
20573 2008-05-13  Eric Blake  <ebb9@byu.net>
20574             Bruno Haible  <bruno@clisp.org>
20575
20576         Reduce number of forks required during autoconf.
20577         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
20578         and gl_LIBSOURCES_DIR.
20579         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
20580         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
20581         m4_syscmd per file.
20582         <m4_foreach_w>: Move...
20583         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
20584
20585 2008-05-13  Eric Blake  <ebb9@byu.net>
20586
20587         * gnulib-tool: Fix various comment typos.
20588
20589 2008-05-12  Bruno Haible  <bruno@clisp.org>
20590
20591         Tailor the linebreaking algorithm.
20592         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
20593
20594 2008-05-12  Bruno Haible  <bruno@clisp.org>
20595
20596         Update to Unicode 5.0.0.
20597         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
20598         LBP_JV, LBP_JT. Redistribute values.
20599         (unilbrk_table): Change size.
20600         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
20601         Unicode TR#14 rev. 22.
20602         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
20603         LBP_JV, LBP_JT. Redistribute values.
20604         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
20605         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
20606         Update.
20607         * lib/unilbrk/lbrkprop1.h: Regenerated.
20608         * lib/unilbrk/lbrkprop2.h: Regenerated.
20609         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
20610         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
20611         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
20612         Likewise.
20613         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
20614         Likewise.
20615         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
20616         result.
20617         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
20618         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
20619         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
20620         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
20621         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
20622         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
20623
20624 2008-05-11  Bruno Haible  <bruno@clisp.org>
20625
20626         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
20627
20628 2008-05-11  Bruno Haible  <bruno@clisp.org>
20629
20630         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
20631         * modules/unilbrk/gen-lbrk: New file.
20632
20633 2008-05-11  Bruno Haible  <bruno@clisp.org>
20634
20635         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
20636         * m4/sha512.m4 (gl_SHA512): Likewise.
20637
20638 2008-05-11  Jim Meyering  <meyering@redhat.com>
20639
20640         New modules: crypto/sha256, crypto/sha512 (from coreutils)
20641         * modules/crypto/sha256: New file.
20642         * modules/crypto/sha512: Likewise.
20643         * lib/sha256.c: Likewise.
20644         * lib/sha256.h: Likewise.
20645         * lib/sha512.c: Likewise.
20646         * lib/sha512.h: Likewise.
20647         * lib/u64.h: Likewise.
20648         * m4/sha256.m4: Likewise.
20649         * m4/sha512.m4: Likewise.
20650         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
20651
20652 2008-05-10  Bruno Haible  <bruno@clisp.org>
20653
20654         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
20655         (Input/Output <stdio.h>): Add xprintf.
20656         (Signal handling <signal.h>): Add strsignal.
20657         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
20658         (Core language properties): Add func.
20659         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
20660         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
20661         strings.
20662         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
20663         (Input/output): New section.
20664         (File system functions): Add openat-die, stat-macros.
20665         (Networking functions): Add sockets.
20666         (Unicode string functions): Add unictype/*.
20667         (Support for building libraries and executables): Add gperf.
20668         (Support for building documentation): Add agpl-3.0.
20669         (Misc): Add nocrash.
20670
20671 2008-05-10  Bruno Haible  <bruno@clisp.org>
20672
20673         * modules/unictype/gen-ctype: New file.
20674
20675 2008-05-10  Jim Meyering  <meyering@redhat.com>
20676
20677         Make chdir-safer.c more efficient on a system with no symlinks.
20678         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
20679         also if ELOOP is zero.  Suggested by Bruno Haible.
20680
20681         Make chdir-safer.c slightly safer.
20682         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
20683         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
20684
20685         Avoid compile failure on systems without ELOOP (like mingw).
20686         * lib/chdir-safer.c (ELOOP): Define if not already defined.
20687         Reported by Bruno Haible.
20688
20689 2008-05-10  Bruno Haible  <bruno@clisp.org>
20690
20691         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
20692         (is_utf8_encoding): Use a case-insensitive comparison.
20693         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
20694         streq.
20695
20696 2008-05-10  Bruno Haible  <bruno@clisp.org>
20697
20698         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
20699         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
20700         * lib/unilbrk/ulc-common.h (iconv_string_length,
20701         iconv_string_keeping_offsets): Remove declarations.
20702         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
20703         Don't include <iconv.h>, streq.h, xsize.h.
20704         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
20705         conversion.
20706         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
20707         <iconv.h>, streq.h, xsize.h.
20708         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
20709         conversion.
20710         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
20711         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
20712         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
20713         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
20714
20715 2008-05-10  Bruno Haible  <bruno@clisp.org>
20716
20717         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
20718         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
20719
20720         * modules/unilbrk/u32-width-linebreaks-tests: New file.
20721         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
20722
20723         * modules/unilbrk/u16-width-linebreaks-tests: New file.
20724         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
20725
20726         * modules/unilbrk/u8-width-linebreaks-tests: New file.
20727         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
20728
20729         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
20730         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
20731
20732         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
20733         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
20734
20735         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
20736         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
20737
20738         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
20739         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
20740
20741 2008-05-10  Bruno Haible  <bruno@clisp.org>
20742
20743         Split up 'linebreak' module.
20744         * lib/unilbrk.h: New file, based on lib/linebreak.h.
20745         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
20746         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
20747         modifications.
20748         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
20749         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
20750         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
20751         lib/linebreak.c.
20752         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
20753         lib/linebreak.c.
20754         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
20755         lib/linebreak.c.
20756         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
20757         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
20758         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
20759         lib/linebreak.c.
20760         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
20761         lib/linebreak.c.
20762         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
20763         lib/linebreak.c.
20764         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
20765         lib/linebreak.c.
20766         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
20767         lib/linebreak.c.
20768         * modules/unilbrk/base: New file.
20769         * modules/unilbrk/tables: New file.
20770         * modules/unilbrk/u8-possible-linebreaks: New file.
20771         * modules/unilbrk/u16-possible-linebreaks: New file.
20772         * modules/unilbrk/u32-possible-linebreaks: New file.
20773         * modules/unilbrk/ulc-common: New file.
20774         * modules/unilbrk/ulc-possible-linebreaks: New file.
20775         * modules/unilbrk/u8-width-linebreaks: New file.
20776         * modules/unilbrk/u16-width-linebreaks: New file.
20777         * modules/unilbrk/u32-width-linebreaks: New file.
20778         * modules/unilbrk/ulc-width-linebreaks: New file.
20779         * lib/linebreak.h: Remove file.
20780         * lib/linebreak.c: Remove file.
20781         * m4/linebreak.m4: Remove file.
20782         * modules/linebreak: Remove file.
20783         * NEWS: Mention the changes.
20784
20785 2008-05-09  Eric Blake  <ebb9@byu.net>
20786
20787         Add xmemdup0.
20788         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
20789         implementation.
20790         * lib/xmalloc.c (xmemdup0): New C implementation.
20791
20792 2008-05-08  Bruno Haible  <bruno@clisp.org>
20793
20794         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
20795
20796 2008-05-07  Eric Blake  <ebb9@byu.net>
20797
20798         Support cross-compilation of <wctype.h>.
20799         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
20800         AC_CACHE_CHECK.
20801
20802 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
20803
20804         * build-aux/vc-list-files: Add support for bzr.
20805
20806 2008-05-03  Jim Meyering  <meyering@redhat.com>
20807
20808         avoid failed assertion with tight malloc
20809         * tests/test-getndelim2.c: Correct an off-by-one assertion.
20810
20811 2008-05-03  Simon Josefsson  <simon@josefsson.org>
20812
20813         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
20814         are needed from arpa/inet.h.
20815         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
20816         Reported by Bruno Haible.
20817
20818 2008-05-02  Jim Meyering  <meyering@redhat.com>
20819
20820         avoid compilation error on FreeBSD 6
20821         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
20822
20823 2008-05-01  Jim Meyering  <meyering@redhat.com>
20824
20825         useless-if-before-free: correct --help's exit status description
20826         * build-aux/useless-if-before-free (usage): Like grep, exit 0
20827         for one or more matches, etc.  Reported by Bruno Haible.
20828
20829         vc-list-files: make the stand-alone gnulib test work
20830         * modules/vc-list-files-tests (configure.ac):
20831         Define and AC_SUBST abs_aux_dir.
20832         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
20833         $(abs_top_srcdir) to each script and having each of them
20834         duplicate the work of setting PATH, set PATH here, using
20835         the new variable, abs_aux_dir instead.
20836         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
20837         * tests/test-vc-list-files-git.sh: Likewise.
20838         Reported by Bruno Haible.
20839
20840 2008-05-01  Bruno Haible  <bruno@clisp.org>
20841
20842         * lib/getndelim2.c (getndelim2): Fix newsize computation during
20843         reallocation. Rename 'done' to 'found_delimiter'.
20844
20845 2008-05-01  Jim Meyering  <meyering@redhat.com>
20846
20847         vc-list-files: accommodate /bin/sh like the one from Solaris 10
20848         * build-aux/vc-list-files: Use `...`, not $(...).
20849
20850 2008-04-30  Jim Meyering  <meyering@redhat.com>
20851
20852         add tests for vc-list-files
20853         * modules/vc-list-files-tests: New module.
20854         * tests/test-vc-list-files-cvs.sh: New file.
20855         * tests/test-vc-list-files-git.sh: New file.
20856
20857         avoid a warning from gcc
20858         * lib/getndelim2.c (IF_LINT): Define.
20859         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
20860
20861         vc-list-files: work properly with build-aux/cvsu, too
20862         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
20863         to all cvs-based clauses.
20864
20865         vc-list-files: work properly in the CVS+awk case, too
20866         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
20867
20868         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
20869         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
20870         take more than one file argument, so .  Add quotes, just in case $dir
20871         ever contains a shell meta-character.  Prompted by Soren Hansen in
20872         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
20873
20874 2008-04-29  Eric Blake  <ebb9@byu.net>
20875
20876         Optimize getndelim2 to use block operations when possible.
20877         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
20878         freadseek, and memchr2.
20879         * lib/getndelim2.c (getndelim2): Use them for block reads.
20880
20881 2008-04-29  Bruno Haible  <bruno@clisp.org>
20882
20883         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
20884         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
20885         * modules/inet_ntop (Depends-on): Add extensions.
20886         * modules/inet_pton (Depends-on): Likewise.
20887         Reported by Simon Josefsson.
20888
20889 2008-04-29  Jim Meyering  <meyering@redhat.com>
20890
20891         When the is more than one match in a block, match all of them.
20892         * build-aux/useless-if-before-free: Iterate through each block
20893         until there are no more matches.
20894
20895         Fix broken useless-if-before-free script.
20896         * build-aux/useless-if-before-free: Fix typo: missing "?" after
20897         the expression to match cast of argument to free-like function.
20898
20899 2008-04-29  Eric Blake  <ebb9@byu.net>
20900
20901         Use new header.
20902         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
20903
20904 2008-04-29  Jim Meyering  <meyering@redhat.com>
20905
20906         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
20907         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
20908         by gnulib to exist and to declare e.g., inet_ntop.
20909         Don't include "inet_ntop.h", now removed.
20910
20911         * m4/arpa_inet_h.m4: Remove trailing blanks.
20912
20913 2008-04-29  Eric Blake  <ebb9@byu.net>
20914
20915         Silence valgrind on safe reads beyond potential array bounds.
20916         * lib/rawmemchr.valgrind: New file.
20917         * lib/strchrnul.valgrind: Likewise.
20918         * modules/rawmemchr (Files): Distribute new file.
20919         * modules/strchrnul (Files): Likewise.
20920         Suggested by Bruno Haible.
20921
20922 2008-04-29  Bruno Haible  <bruno@clisp.org>
20923
20924         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
20925         (inet_ntop, inet_pton): Change portability warning's wording.
20926         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
20927         Invoke gl_CHECK_NEXT_HEADERS.
20928         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
20929         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
20930         set ARPA_INET_H.
20931         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
20932         * modules/arpa_inet (Description): No longer only for systems that
20933         lack it.
20934         (Depends-on): Add include_next.
20935         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
20936         HAVE_ARPA_INET_H.
20937
20938 2008-04-29  Jim Meyering  <meyering@redhat.com>
20939
20940         * modules/mkdir (License): Re-license as LGPLv2+.
20941
20942 2008-04-29  Bruno Haible  <bruno@clisp.org>
20943
20944         * modules/rawmemchr (Maintainer): Set to Eric.
20945         * modules/strchrnul (Maintainer): Likewise.
20946
20947 2008-04-29  Simon Josefsson  <simon@josefsson.org>
20948
20949         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
20950         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
20951
20952         * modules/arpa_inet (arpa/inet.h): Use them.
20953
20954 2008-04-28  Eric Blake  <ebb9@byu.net>
20955
20956         Test getndelim2.
20957         * modules/getndelim2-tests: New file.
20958         * tests/test-getndelim2.c: Likewise.
20959         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
20960         stream.
20961         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
20962
20963         * MODULES.html.sh: Document new module.
20964
20965 2008-04-20  Bruno Haible  <bruno@clisp.org>
20966
20967         * lib/c-stack.c (die): Use raise.
20968         * modules/c-stack (Depends-on): Add raise.
20969
20970 2008-04-28  Bruno Haible  <bruno@clisp.org>
20971
20972         Expect rpmatch to be declared.
20973         * lib/yesno.c (rpmatch): Remove declaration.
20974
20975         Declare rpmatch.
20976         * lib/stdlib.in.h (rpmatch): New declaration.
20977         * lib/rpmatch.c: Include <stdlib.h> first.
20978         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
20979         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
20980         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
20981         HAVE_RPMATCH.
20982         * modules/rpmatch (Depends-on): Add stdlib, extensions.
20983         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20984         (Include): Set to <stdlib.h>.
20985         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
20986         HAVE_RPMATCH.
20987         * NEWS: Document the change.
20988
20989 2008-04-28  Bruno Haible  <bruno@clisp.org>
20990
20991         Change rpmatch to use nl_langinfo when appropriate.
20992         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
20993         (N_): New macro.
20994         (localized_pattern): New function/macro.
20995         (try): Remove match, nomatch arguments. Copy the pattern into safe
20996         memory before caching it.
20997         (rpmatch): Use localized_pattern. Add translator comments.
20998         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
20999         Suggested by Eric Blake.
21000         * modules/rpmatch (Depends-on): Add stdbool.
21001
21002 2008-04-28  Eric Blake  <ebb9@byu.net>
21003
21004         Add rawmemchr module, matching glibc.
21005         * modules/string (Makefile.am): New indicator.
21006         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
21007         * lib/string.in.h (rawmemchr): Declare when appropriate.
21008         * modules/rawmemchr: New file.
21009         * m4/rawmemchr.m4: Likewise.
21010         * lib/rawmemchr.c: Likewise.
21011         * modules/rawmemchr-tests: Likewise.
21012         * tests/test-rawmemchr.c: Likewise.
21013         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
21014         module.
21015         * modules/strchrnul (Depends-on): Add rawmemchr.
21016         * lib/strchrnul.c (strchrnul): Optimize a corner case.
21017
21018         Whitespace cleanup.
21019         * tests/test-strchrnul.c: Reindent.
21020         * lib/strchrnul.c: Likewise.
21021
21022         Optimize and test strchrnul.
21023         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
21024         * modules/strchrnul-tests: New file.
21025         * tests/test-strchrnul.c: Likewise.
21026
21027         Remove intprops dependency.
21028         * modules/memchr (Depends-on): Remove intprops.
21029         * modules/memrchr (Depends-on): Likewise.
21030         * modules/memchr2 (Depends-on): Likewise.
21031         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
21032         * lib/memrchr.c (__memrchr): Likewise.
21033         * lib/memrchr2.c (memchr2): Likewise.
21034         Reported by Simon Josefsson.
21035
21036 2008-04-28  Simon Josefsson  <simon@josefsson.org>
21037
21038         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
21039         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21040
21041 2008-04-28  Simon Josefsson  <simon@josefsson.org>
21042
21043         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
21044
21045         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
21046
21047         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
21048
21049         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
21050         declarations.
21051         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
21052
21053         * m4/inet_pton.m4: Don't check for header files.
21054
21055         * m4/inet_ntop.m4: Don't check for header files.
21056
21057 2008-04-28  Simon Josefsson  <simon@josefsson.org>
21058
21059         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
21060         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
21061         trigger for cygwin).
21062         Reported by Bruno Haible  <bruno@clisp.org>.
21063
21064 2008-04-28  Bruno Haible  <bruno@clisp.org>
21065
21066         * doc/posix-functions/strdup.texi: Mention mingw problem.
21067
21068 2008-04-27  Bruno Haible  <bruno@clisp.org>
21069
21070         * modules/stat-time-tests (Depends-on): Add sleep.
21071         * tests/test-stat-time.c (force_unlink): New function.
21072         (cleanup): Use it.
21073         (test_mtime): Remove the ctime related tests.
21074         (test_ctime): New function, containing the ctime related tests.
21075         (main): Call test_ctime, except on native Windows platforms.
21076
21077 2008-04-27  Bruno Haible  <bruno@clisp.org>
21078
21079         * lib/rpmatch.c (rpmatch): Add some comments.
21080         Reported by James Youngman <jay@gnu.org>.
21081
21082 2008-04-27  Bruno Haible  <bruno@clisp.org>
21083
21084         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
21085         quiet NaNs.
21086
21087 2008-04-27  Bruno Haible  <bruno@clisp.org>
21088
21089         Make test-yesno.sh work on mingw.
21090         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
21091         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
21092         (main): Set stdin to binary mode.
21093         * modules/yesno-tests (Depends-on): Add binary-io.
21094
21095 2008-04-27  Bruno Haible  <bruno@clisp.org>
21096
21097         Fix 'isfinite' on x86, x86_64, ia64 platforms.
21098         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
21099         argument that lie outside the IEEE 854 domain.
21100         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
21101         (gl_ISFINITE): Use it.
21102         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
21103
21104 2008-04-27  Bruno Haible  <bruno@clisp.org>
21105
21106         Allow local renaming in config.h.
21107         * lib/memrchr.c (memrchr): Don't undefine outside libc.
21108
21109 2008-04-27  Bruno Haible  <bruno@clisp.org>
21110
21111         * lib/memchr.c (__memchr): Change type of 'i'.
21112         * lib/memchr2.c (memchr2): Likewise.
21113
21114 2008-04-26  Eric Blake  <ebb9@byu.net>
21115         and Bruno Haible  <bruno@clisp.org>
21116
21117         Optimize and test memrchr.
21118         * modules/memrchr (Depends-on): Add intprops.
21119         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
21120         * modules/memrchr-tests: New file.
21121         * tests/test-memrchr.c: New file.
21122
21123 2008-04-26  Bruno Haible  <bruno@clisp.org>
21124
21125         Add tentative support for DragonFly BSD.
21126         * lib/stdio-impl.h: Add macros for DragonFly BSD.
21127         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
21128         fp.
21129         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
21130         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
21131         * lib/fpurge.c (fpurge): Likewise.
21132         * lib/freadable.c (freaadable): Likewise.
21133         * lib/freadahead.c (freadahead): Likewise.
21134         * lib/freading.c (freading): Likewise.
21135         * lib/freadptr.c (freadptr): Likewise.
21136         * lib/freadseek.c (freadptrinc): Likewise.
21137         * lib/fseeko.c (fseeko): Likewise.
21138         * lib/fseterr.c (fseterr): Likewise.
21139         * lib/fwritable.c (fwritable): Likewise.
21140         * lib/fwriting.c (fwriting): Likewise.
21141
21142 2008-04-26  Bruno Haible  <bruno@clisp.org>
21143
21144         * lib/stdio-impl.h: New file.
21145         * lib/fbufmode.c: Include stdio-impl.h.
21146         (fbufmode): Use fp_, remove redundant #defines.
21147         * lib/fflush.c: Include stdio-impl.h.
21148         (clear_ungetc_buffer): Remove redundant #defines.
21149         * lib/fpurge.c: Include stdio-impl.h.
21150         (fpurge): Remove redundant #defines.
21151         * lib/freadable.c: Include stdio-impl.h.
21152         (freadable): Remove redundant #defines.
21153         * lib/freadahead.c: Include stdio-impl.h.
21154         (freadahead): Remove redundant #defines.
21155         * lib/freading.c: Include stdio-impl.h.
21156         (freading): Remove redundant #defines.
21157         * lib/freadptr.c: Include stdio-impl.h.
21158         (freadptr): Remove redundant #defines.
21159         * lib/freadseek.c: Include stdio-impl.h.
21160         (freadptrinc): Remove redundant #defines.
21161         * lib/fseeko.c: Include stdio-impl.h.
21162         (rpl_fseeko): Remove redundant #defines.
21163         * lib/fseterr.c: Include stdio-impl.h.
21164         (fseterr): Remove redundant #defines.
21165         * lib/fwritable.c: Include stdio-impl.h.
21166         (fwritable: Remove redundant #defines.
21167         * lib/fwriting.c: Include stdio-impl.h.
21168         (fwriting): Remove redundant #defines.
21169         * modules/fbufmode (Files): Add lib/stdio-impl.h.
21170         * modules/fflush (Files): Likewise.
21171         * modules/fpurge (Files): Likewise.
21172         * modules/freadable (Files): Likewise.
21173         * modules/freadahead (Files): Likewise.
21174         * modules/freading (Files): Likewise.
21175         * modules/freadptr (Files): Likewise.
21176         * modules/freadseek (Files): Likewise.
21177         * modules/fseeko (Files): Likewise.
21178         * modules/fseterr (Files): Likewise.
21179         * modules/fwritable (Files): Likewise.
21180         * modules/fwriting (Files): Likewise.
21181
21182 2008-04-26  Bruno Haible  <bruno@clisp.org>
21183
21184         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
21185         restore_seek_optimization, update_fpos_cache): New functions, extracted
21186         from rpl_fflush.
21187         (rpl_fflush): Use them.
21188         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
21189         (gl_REPLACE_FFLUSH): Use it.
21190
21191 2008-04-26  Bruno Haible  <bruno@clisp.org>
21192
21193         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
21194         on Solaris.
21195         * tests/test-xstrtoimax.sh: Likewise.
21196         * tests/test-xstrtoumax.sh: Likewise.
21197         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21198
21199 2008-04-26  Bruno Haible  <bruno@clisp.org>
21200
21201         * modules/memchr-tests: New file.
21202         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
21203
21204 2008-04-26  Eric Blake  <ebb9@byu.net>
21205             Bruno Haible  <bruno@clisp.org>
21206
21207         * lib/memchr.c: Include intprops.h.
21208         (__memchr): Optimize parallel detection of matching bytes. Rename local
21209         variables. Add explanatory comments.
21210
21211 2008-04-26  Bruno Haible  <bruno@clisp.org>
21212
21213         Fix module 'memchr', broken since 2000-10-28.
21214         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
21215
21216 2008-04-26  Bruno Haible  <bruno@clisp.org>
21217
21218         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
21219         comments.
21220
21221 2008-04-25  Eric Blake  <ebb9@byu.net>
21222
21223         Use native fstatat on cygwin 1.7.0.
21224         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
21225         first.
21226
21227 2008-04-23  Eric Blake  <ebb9@byu.net>
21228
21229         Improve memchr2 performance.
21230         * lib/memchr2.c (memchr2): Further optimize parallel detection of
21231         NUL bytes.
21232         * modules/memchr2 (Depends-on): Use intprops.h.
21233
21234 2008-04-23  Simon Josefsson  <simon@josefsson.org>
21235
21236         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
21237         an inline function instead of a CPP macro.  Patch by Ben Pfaff
21238         <blp@cs.stanford.edu>.
21239
21240 2008-04-23  Simon Josefsson  <simon@josefsson.org>
21241
21242         * lib/arpa_inet.in.h: New file.
21243
21244         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
21245         (Makefile.am): Sed in substitute header file.
21246
21247         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
21248         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
21249
21250         * modules/inet_ntop (configure.ac): Use
21251         gl_ARPA_INET_MODULE_INDICATOR.
21252
21253         * modules/inet_pton (configure.ac): Use
21254         gl_ARPA_INET_MODULE_INDICATOR.
21255
21256 2008-04-22  Jim Meyering  <meyering@redhat.com>
21257
21258         * modules/verify (License): Re-license as LGPLv2+.
21259
21260 2008-04-22  Simon Josefsson  <simon@josefsson.org>
21261
21262         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
21263         parameter to void* as per POSIX standard (MinGW uses char*).
21264
21265 2008-04-21  Bruno Haible  <bruno@clisp.org>
21266
21267         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
21268         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
21269         Define to replacements if REPLACE_ISWCNTRL is 1.
21270         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
21271         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
21272         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
21273         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
21274         what it fixes.
21275         * doc/posix-functions/iswalpha.texi: Likewise.
21276         * doc/posix-functions/iswblank.texi: Likewise.
21277         * doc/posix-functions/iswcntrl.texi: Likewise.
21278         * doc/posix-functions/iswdigit.texi: Likewise.
21279         * doc/posix-functions/iswgraph.texi: Likewise.
21280         * doc/posix-functions/iswlower.texi: Likewise.
21281         * doc/posix-functions/iswprint.texi: Likewise.
21282         * doc/posix-functions/iswpunct.texi: Likewise.
21283         * doc/posix-functions/iswspace.texi: Likewise.
21284         * doc/posix-functions/iswupper.texi: Likewise.
21285         * doc/posix-functions/iswxdigit.texi: Likewise.
21286         Reported by Alain Guibert.
21287
21288 2008-04-21  Bruno Haible  <bruno@clisp.org>
21289
21290         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
21291         Patch by Alain Guibert.
21292
21293 2008-04-21  Bruno Haible  <bruno@clisp.org>
21294
21295         Fix test failures on mingw.
21296         * tests/test-xstrtol.c (print_no_progname): New function.
21297         (main): Install it in error_print_progname hook.
21298         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
21299         * tests/test-xstrtoimax.sh: Likewise.
21300         * tests/test-xstrtoumax.sh: Likewise.
21301
21302 2008-04-21  Bruno Haible  <bruno@clisp.org>
21303
21304         Fix test failure on mingw.
21305         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
21306
21307 2008-04-21  Bruno Haible  <bruno@clisp.org>
21308
21309         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
21310         Actually assign a value.
21311
21312 2008-04-20  Bruno Haible  <bruno@clisp.org>
21313
21314         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
21315         take 2.
21316         * lib/canonicalize.c (canonicalize_file_name): Elide if the
21317         'canonicalize-lgpl' module is also used.
21318         * lib/canonicalize-lgpl.c: Undo last change.
21319         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
21320
21321 2008-04-20  Bruno Haible  <bruno@clisp.org>
21322
21323         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
21324         config.h. Provide _mkdir based fallback for mingw.
21325         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
21326         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
21327         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
21328         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
21329         rather than defining mkdir in config.h.
21330         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
21331         (gl_SYS_STAT_H_DEFAULTS): New macro.
21332         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
21333         HAVE_IO_H any more.
21334         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
21335         HAVE_DECL_MKDIR and HAVE_IO_H.
21336
21337 2008-04-20  Bruno Haible  <bruno@clisp.org>
21338
21339         * lib/isapipe.c: Port to native Windows platforms.
21340
21341 2008-04-20  Bruno Haible  <bruno@clisp.org>
21342
21343         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
21344
21345 2008-04-21  Eric Blake  <ebb9@byu.net>
21346
21347         Work around preprocessors that don't handle UINTMAX_MAX.
21348         * lib/memchr2.c (memchr2): Avoid embedded #if.
21349         Reported by Alain Guibert, fix suggested by Bruno Haible.
21350
21351 2008-04-21  Simon Josefsson  <simon@josefsson.org>
21352
21353         * doc/posix-functions/strftime.texi (strftime): Explain better
21354         Windows incompatibility.  Suggested by Micah Cowan
21355         <micah@cowan.name>.
21356
21357 2008-04-20  Bruno Haible  <bruno@clisp.org>
21358
21359         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
21360         unistr/u8-mblen.
21361
21362 2008-04-20  Bruno Haible  <bruno@clisp.org>
21363
21364         Fix test failure on platforms with non-GNU iconv.
21365         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
21366         (U_TO_U8): Use it, rather than u16_to_u8.
21367         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
21368         units at the end of the input string.
21369         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
21370
21371 2008-04-20  Bruno Haible  <bruno@clisp.org>
21372
21373         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
21374         when the resulting length is 0.
21375         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
21376
21377 2008-04-20  Bruno Haible  <bruno@clisp.org>
21378
21379         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
21380         works.
21381         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
21382
21383 2008-04-20  Bruno Haible  <bruno@clisp.org>
21384
21385         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
21386         * modules/tsearch-tests (configure.ac): Test for initstate function.
21387
21388 2008-04-20  Bruno Haible  <bruno@clisp.org>
21389
21390         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
21391         for nlink_t if missing.
21392         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
21393
21394 2008-04-19  Bruno Haible  <bruno@clisp.org>
21395
21396         Work around snprintf bug on Linux libc5.
21397         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
21398         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
21399         gl_SNPRINTF_SIZE1.
21400         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21401         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
21402         that test failed.
21403         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
21404         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
21405         * modules/snprintf (Files): Add m4/printf.m4.
21406         * modules/vsnprintf (Files): Likewise.
21407         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
21408         * doc/posix-functions/vsnprintf.texi: Likewise.
21409
21410 2008-04-19  Bruno Haible  <bruno@clisp.org>
21411
21412         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
21413         from 0.0058 to less than 10^-7.
21414
21415 2008-04-19  Bruno Haible  <bruno@clisp.org>
21416
21417         Fix rounding when a precision is given.
21418         * lib/vasnprintf.c (is_borderline): New function.
21419         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
21420         9...9x.
21421         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
21422         %e, %g.
21423         * tests/test-vasprintf-posix.c (test_function): Likewise.
21424         * tests/test-snprintf-posix.h (test_function): Likewise.
21425         * tests/test-sprintf-posix.h (test_function): Likewise.
21426         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
21427         * tests/test-printf-posix.h (test_function): Likewise.
21428         * tests/test-printf-posix.output: Update.
21429         Reported by John Darrington <john@darrington.wattle.id.au> via
21430         Ben Pfaff <blp@cs.stanford.edu>.
21431
21432 2008-04-18  Simon Josefsson  <simon@josefsson.org>
21433
21434         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
21435         Suggested by Bruno Haible <bruno@clisp.org>.
21436
21437 2008-04-17  Bruno Haible  <bruno@clisp.org>
21438
21439         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
21440         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
21441         implementation.
21442         Patch by Bruce Merry <bmerry@gmail.com>.
21443
21444 2008-04-17  Simon Josefsson  <simon@josefsson.org>
21445
21446         * doc/posix-functions/strftime.texi (strftime): Mention that %e
21447         doesn't work under Windows.
21448
21449 2008-04-16  Bruno Haible  <bruno@clisp.org>
21450
21451         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
21452         New macros.
21453         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
21454         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
21455         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
21456         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
21457         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
21458         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
21459         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
21460         macros.
21461         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
21462         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
21463         Northern Sotho, Uighur.
21464
21465 2008-04-16  Bruno Haible  <bruno@clisp.org>
21466
21467         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
21468         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
21469         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
21470         Reported by Daniel Bergström <daniel@octocode.com>.
21471
21472 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
21473             Bruno Haible  <bruno@clisp.org>
21474
21475         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
21476         function.
21477         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
21478         New functions, mostly extracted from gl_locale_name_default.
21479         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
21480
21481 2008-04-16  Eric Blake  <ebb9@byu.net>
21482
21483         Adjust strtod detection to catch glibc 2.7 bug.
21484         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
21485         Reported by John Gatewood Ham.
21486
21487 2008-04-16  Bruno Haible  <bruno@clisp.org>
21488
21489         Add tentative support for Linux libc5.
21490         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
21491         * lib/fpurge.c (fpurge): Likewise.
21492         * lib/freadable.c (freadable): Likewise.
21493         * lib/freadahead.c (freadahead): Likewise.
21494         * lib/freading.c (freading): Likewise.
21495         * lib/freadptr.c (freadptr): Likewise.
21496         * lib/freadseek.c (freadptrinc): Likewise.
21497         * lib/fseeko.c (rpl_fseeko): Likewise.
21498         * lib/fseterr.c (fseterr): Likewise.
21499         * lib/fwritable.c (fwritable): Likewise.
21500         * lib/fwriting.c (fwriting): Likewise.
21501         Reported by Alain Guibert <alguibert+bts@free.fr>.
21502
21503 2008-04-15  Bruno Haible  <bruno@clisp.org>
21504
21505         * modules/mathl (configure.ac): Define module indicator.
21506
21507 2008-04-15  Bruno Haible  <bruno@clisp.org>
21508
21509         * lib/logl.c (logl): Remove unused variables.
21510
21511 2008-04-15  Bruno Haible  <bruno@clisp.org>
21512
21513         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
21514         fails.
21515
21516 2008-04-15  Bruno Haible  <bruno@clisp.org>
21517
21518         * lib/trim.c (trim2): Fix argument of isspace() macro.
21519
21520 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
21521
21522         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
21523         to 0.
21524         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
21525
21526 2008-04-14  Bruno Haible  <bruno@clisp.org>
21527
21528         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
21529         AC_LANG_PROGRAM argument.
21530         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
21531         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
21532         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
21533         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
21534         * m4/math_h.m4 (gl_MATH_H): Likewise.
21535         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
21536         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
21537         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
21538         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
21539         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
21540         * m4/regex.m4 (gl_REGEX): Likewise.
21541         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
21542         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
21543         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
21544         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
21545         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
21546         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
21547         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21548         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
21549
21550 2008-04-14  Jim Meyering  <meyering@redhat.com>
21551
21552         test-strtod: fix typos: s/abs/fabs/
21553         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
21554
21555 2008-04-13  Bruno Haible  <bruno@clisp.org>
21556
21557         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
21558         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
21559         module is also used and while not building the reloc-wrapper.
21560
21561 2008-04-13  Bruno Haible  <bruno@clisp.org>
21562
21563         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
21564
21565 2008-04-13  Bruno Haible  <bruno@clisp.org>
21566
21567         Fix AIX compilation failure introduced on 2008-04-02.
21568         * tests/test-frexp.c (exp): Undefine before redefining.
21569         * tests/test-frexpl.c (exp): Likewise.
21570
21571 2008-04-13  Bruno Haible  <bruno@clisp.org>
21572
21573         Work around a HP-UX stdio bug.
21574         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
21575         * tests/test-ftello.c (main): Likewise.
21576         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
21577         * doc/posix-functions/ftello.texi: Likewise.
21578
21579 2008-04-13  Bruno Haible  <bruno@clisp.org>
21580
21581         Make test-signbit pass on HP-UX/hppa.
21582         * tests/test-signbit.c (minus_zerol): New variable.
21583         (test_signbitl): Use it.
21584
21585 2008-04-13  Bruno Haible  <bruno@clisp.org>
21586
21587         Make truncl work on OSF/1 4.0.
21588         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
21589         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
21590         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
21591         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
21592         HAVE_DECL_TRUNCL.
21593         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
21594         HAVE_DECL_TRUNCL.
21595         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
21596
21597 2008-04-13  Bruno Haible  <bruno@clisp.org>
21598
21599         * lib/unictype.h: Remove trailing comma from enumeration definitions.
21600
21601 2008-04-13  Bruno Haible  <bruno@clisp.org>
21602
21603         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
21604         expression, so as to avoid HP-UX 11 cc compiler bug.
21605
21606 2008-04-13  Bruno Haible  <bruno@clisp.org>
21607
21608         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
21609
21610 2008-04-13  Bruno Haible  <bruno@clisp.org>
21611
21612         * lib/git-merge-changelog.c: Remove empty declaration outside of
21613         functions.
21614
21615 2008-04-13  Bruno Haible  <bruno@clisp.org>
21616
21617         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
21618
21619 2008-04-13  Bruno Haible  <bruno@clisp.org>
21620
21621         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
21622         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
21623         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
21624         also if it exists but lacks definitions of the SHUT_* macros.
21625         * modules/sys_socket (Description): Update.
21626         Reported by Elbert Pol <e.pol@chello.nl>.
21627
21628 2008-04-13  Bruno Haible  <bruno@clisp.org>
21629
21630         * lib/localcharset.c (OS2): Don't redefine if already defined.
21631         Reported by Elbert Pol <e.pol@chello.nl>.
21632
21633 2008-04-13  Bruno Haible  <bruno@clisp.org>
21634
21635         * lib/binary-io.h [__EMX__]: Include <io.h>.
21636         Reported by Elbert Pol <e.pol@chello.nl>.
21637
21638 2008-04-12  Bruno Haible  <bruno@clisp.org>
21639
21640         * lib/fpucw.h: Enable the definitions also for x86_64.
21641         Needed for NetBSD/x86_64.
21642         Reported by Thomas Klausner <tk@giga.or.at>.
21643
21644 2008-04-12  Bruno Haible  <bruno@clisp.org>
21645
21646         * tests/test-strtod.c: Include isnand.h.
21647         (main): Use isnand instead of isnan.
21648         Reported by Jim Meyering.
21649
21650 2008-04-12  Bruno Haible  <bruno@clisp.org>
21651
21652         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
21653         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
21654
21655 2008-04-12  Jim Meyering  <meyering@redhat.com>
21656
21657         * m4/math_h.m4 (gl_MATH_H): Fix typos.
21658
21659 2008-04-12  Bruno Haible  <bruno@clisp.org>
21660
21661         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
21662         Reported by Elbert Pol <e.pol@chello.nl>.
21663
21664 2008-04-12  Eric Blake  <ebb9@byu.net>
21665
21666         Work around Solaris 10 math.h bug.
21667         * m4/math_h.m4 (gl_MATH_H): Check for bug.
21668         (gl_MATH_H_DEFAULTS): Set up default.
21669         * modules/math (Makefile.am): Replace new indicators.
21670         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
21671         * tests/test-math.c (main): Test this.
21672         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
21673         * doc/posix-headers/math.texi (math.h): Mention bug.
21674         Reported by Nelson H. F. Beebe and Jim Meyering.
21675
21676 2008-04-11  Bruno Haible  <bruno@clisp.org>
21677
21678         Adapt to future versions of Apple GCC.
21679         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
21680         Reported by Peter O'Gorman <peter@pogma.com>.
21681
21682 2008-04-11  Bruno Haible  <bruno@clisp.org>
21683
21684         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
21685
21686 2008-04-11  Bruno Haible  <bruno@clisp.org>
21687
21688         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
21689
21690         * modules/getaddrinfo-tests (Makefile.am): Define
21691         test_getaddrinfo_LDADD.
21692
21693 2008-04-11  Bruno Haible  <bruno@clisp.org>
21694
21695         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
21696         (init): Fix syntax error.
21697         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
21698         is declared.
21699
21700 2008-04-11  Bruno Haible  <bruno@clisp.org>
21701
21702         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
21703         * modules/glob (Depends-on): Add stdbool.
21704
21705 2008-04-11  Bruno Haible  <bruno@clisp.org>
21706
21707         * lib/trim.c: Include <string.h>.
21708
21709 2008-04-11  Eric Blake  <ebb9@byu.net>
21710
21711         Avoid compile failure on OS/2.
21712         * lib/regex_internal.h (internal_function): Disable optimization
21713         on OS/2 (__EMX__), where it caused compiler error.
21714         Reported by Elbert Pol.
21715
21716 2008-04-11  Bruno Haible  <bruno@clisp.org>
21717
21718         Flush the standard error stream before aborting. Needed on mingw.
21719         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
21720         * tests/test-array_list.c (ASSERT): Likewise.
21721         * tests/test-array_oset.c (ASSERT): Likewise.
21722         * tests/test-avltree_list.c (ASSERT): Likewise.
21723         * tests/test-avltree_oset.c (ASSERT): Likewise.
21724         * tests/test-avltreehash_list.c (ASSERT): Likewise.
21725         * tests/test-binary-io.c (ASSERT): Likewise.
21726         * tests/test-byteswap.c (ASSERT): Likewise.
21727         * tests/test-c-ctype.c (ASSERT): Likewise.
21728         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
21729         * tests/test-c-strcasestr.c (ASSERT): Likewise.
21730         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
21731         * tests/test-c-strstr.c (ASSERT): Likewise.
21732         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
21733         * tests/test-canonicalize.c (ASSERT): Likewise.
21734         * tests/test-carray_list.c (ASSERT): Likewise.
21735         * tests/test-ceilf1.c (ASSERT): Likewise.
21736         * tests/test-ceilf2.c (ASSERT): Likewise.
21737         * tests/test-ceill.c (ASSERT): Likewise.
21738         * tests/test-count-one-bits.c (ASSERT): Likewise.
21739         * tests/test-fbufmode.c (ASSERT): Likewise.
21740         * tests/test-fflush2.c (ASSERT): Likewise.
21741         * tests/test-floorf1.c (ASSERT): Likewise.
21742         * tests/test-floorf2.c (ASSERT): Likewise.
21743         * tests/test-floorl.c (ASSERT): Likewise.
21744         * tests/test-fopen.c (ASSERT): Likewise.
21745         * tests/test-fpending.c (ASSERT): Likewise.
21746         * tests/test-fprintf-posix.c (ASSERT): Likewise.
21747         * tests/test-fpurge.c (ASSERT): Likewise.
21748         * tests/test-freadable.c (ASSERT): Likewise.
21749         * tests/test-freadahead.c (ASSERT): Likewise.
21750         * tests/test-freading.c (ASSERT): Likewise.
21751         * tests/test-freadptr.c (ASSERT): Likewise.
21752         * tests/test-freadptr2.c (ASSERT): Likewise.
21753         * tests/test-freadseek.c (ASSERT): Likewise.
21754         * tests/test-freopen.c (ASSERT): Likewise.
21755         * tests/test-frexp.c (ASSERT): Likewise.
21756         * tests/test-frexpl.c (ASSERT): Likewise.
21757         * tests/test-fseek.c (ASSERT): Likewise.
21758         * tests/test-fseeko.c (ASSERT): Likewise.
21759         * tests/test-fstrcmp.c (ASSERT): Likewise.
21760         * tests/test-ftell.c (ASSERT): Likewise.
21761         * tests/test-ftello.c (ASSERT): Likewise.
21762         * tests/test-func.c (ASSERT): Likewise.
21763         * tests/test-fwritable.c (ASSERT): Likewise.
21764         * tests/test-fwriting.c (ASSERT): Likewise.
21765         * tests/test-getdelim.c (ASSERT): Likewise.
21766         * tests/test-getline.c (ASSERT): Likewise.
21767         * tests/test-i-ring.c (ASSERT): Likewise.
21768         * tests/test-iconv-utf.c (ASSERT): Likewise.
21769         * tests/test-iconv.c (ASSERT): Likewise.
21770         * tests/test-isfinite.c (ASSERT): Likewise.
21771         * tests/test-isnand.c (ASSERT): Likewise.
21772         * tests/test-isnanf.c (ASSERT): Likewise.
21773         * tests/test-isnanl.h (ASSERT): Likewise.
21774         * tests/test-ldexpl.c (ASSERT): Likewise.
21775         * tests/test-linked_list.c (ASSERT): Likewise.
21776         * tests/test-linkedhash_list.c (ASSERT): Likewise.
21777         * tests/test-localename.c (ASSERT): Likewise.
21778         * tests/test-lseek.c (ASSERT): Likewise.
21779         * tests/test-mbscasecmp.c (ASSERT): Likewise.
21780         * tests/test-mbscasestr1.c (ASSERT): Likewise.
21781         * tests/test-mbscasestr2.c (ASSERT): Likewise.
21782         * tests/test-mbscasestr3.c (ASSERT): Likewise.
21783         * tests/test-mbscasestr4.c (ASSERT): Likewise.
21784         * tests/test-mbschr.c (ASSERT): Likewise.
21785         * tests/test-mbscspn.c (ASSERT): Likewise.
21786         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
21787         * tests/test-mbspbrk.c (ASSERT): Likewise.
21788         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
21789         * tests/test-mbsrchr.c (ASSERT): Likewise.
21790         * tests/test-mbsspn.c (ASSERT): Likewise.
21791         * tests/test-mbsstr1.c (ASSERT): Likewise.
21792         * tests/test-mbsstr2.c (ASSERT): Likewise.
21793         * tests/test-mbsstr3.c (ASSERT): Likewise.
21794         * tests/test-memchr2.c (ASSERT): Likewise.
21795         * tests/test-memmem.c (ASSERT): Likewise.
21796         * tests/test-open.c (ASSERT): Likewise.
21797         * tests/test-printf-frexp.c (ASSERT): Likewise.
21798         * tests/test-printf-frexpl.c (ASSERT): Likewise.
21799         * tests/test-printf-posix.c (ASSERT): Likewise.
21800         * tests/test-quotearg.c (ASSERT): Likewise.
21801         * tests/test-rbtree_list.c (ASSERT): Likewise.
21802         * tests/test-rbtree_oset.c (ASSERT): Likewise.
21803         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
21804         * tests/test-round1.c (ASSERT): Likewise.
21805         * tests/test-roundf1.c (ASSERT): Likewise.
21806         * tests/test-roundl.c (ASSERT): Likewise.
21807         * tests/test-signbit.c (ASSERT): Likewise.
21808         * tests/test-sleep.c (ASSERT): Likewise.
21809         * tests/test-snprintf-posix.c (ASSERT): Likewise.
21810         * tests/test-snprintf.c (ASSERT): Likewise.
21811         * tests/test-sprintf-posix.c (ASSERT): Likewise.
21812         * tests/test-stat-time.c (ASSERT): Likewise.
21813         * tests/test-strcasestr.c (ASSERT): Likewise.
21814         * tests/test-strerror.c (ASSERT): Likewise.
21815         * tests/test-striconv.c (ASSERT): Likewise.
21816         * tests/test-striconveh.c (ASSERT): Likewise.
21817         * tests/test-striconveha.c (ASSERT): Likewise.
21818         * tests/test-strsignal.c (ASSERT): Likewise.
21819         * tests/test-strstr.c (ASSERT): Likewise.
21820         * tests/test-strtod.c (ASSERT): Likewise.
21821         * tests/test-trunc1.c (ASSERT): Likewise.
21822         * tests/test-trunc2.c (ASSERT): Likewise.
21823         * tests/test-truncf1.c (ASSERT): Likewise.
21824         * tests/test-truncf2.c (ASSERT): Likewise.
21825         * tests/test-truncl.c (ASSERT): Likewise.
21826         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
21827         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
21828         * tests/test-vasnprintf.c (ASSERT): Likewise.
21829         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
21830         * tests/test-vasprintf.c (ASSERT): Likewise.
21831         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
21832         * tests/test-vprintf-posix.c (ASSERT): Likewise.
21833         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
21834         * tests/test-vsnprintf.c (ASSERT): Likewise.
21835         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
21836         * tests/test-wcwidth.c (ASSERT): Likewise.
21837         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
21838         * tests/test-xprintf-posix.c (ASSERT): Likewise.
21839         * tests/test-xvasprintf.c (ASSERT): Likewise.
21840         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
21841         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
21842         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
21843         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
21844         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
21845         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
21846         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
21847         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
21848         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
21849         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
21850         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
21851         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
21852         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
21853         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
21854         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
21855         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
21856         * tests/unictype/test-block_list.c (ASSERT): Likewise.
21857         * tests/unictype/test-block_of.c (ASSERT): Likewise.
21858         * tests/unictype/test-block_test.c (ASSERT): Likewise.
21859         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
21860         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
21861         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
21862         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
21863         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
21864         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
21865         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
21866         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
21867         * tests/unictype/test-combining.c (ASSERT): Likewise.
21868         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
21869         * tests/unictype/test-digit.c (ASSERT): Likewise.
21870         * tests/unictype/test-mirror.c (ASSERT): Likewise.
21871         * tests/unictype/test-numeric.c (ASSERT): Likewise.
21872         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
21873         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
21874         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
21875         * tests/unictype/test-scripts.c (ASSERT): Likewise.
21876         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
21877         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
21878         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
21879         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
21880         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
21881         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
21882         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
21883         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
21884         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
21885         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
21886         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
21887         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
21888         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
21889         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
21890         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
21891         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
21892         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
21893         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
21894         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
21895         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
21896         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
21897         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
21898         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
21899         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
21900         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
21901         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
21902         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
21903         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
21904         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
21905         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
21906         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
21907         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
21908         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
21909         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
21910         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
21911         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
21912         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
21913         Reported by Eric Blake.
21914
21915 2008-04-11  Bruno Haible  <bruno@clisp.org>
21916
21917         * lib/wchar.in.h: Tweak comment.
21918
21919 2008-04-11  Bruno Haible  <bruno@clisp.org>
21920
21921         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
21922         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
21923         gl_COMMON.
21924         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
21925
21926 2008-04-11  Bruno Haible  <bruno@clisp.org>
21927
21928         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
21929
21930 2008-04-11  Simon Josefsson  <simon@josefsson.org>
21931
21932         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
21933         of attempting to use non-existing /dev/*random.  Based on patch
21934         from Adam Strzelecki <ono@java.pl> in
21935         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
21936
21937 2008-04-08  Bruno Haible  <bruno@clisp.org>
21938
21939         Add tentative support for emx+gcc.
21940         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
21941         * lib/fpurge.c (fpurge): Likewise.
21942         * lib/freadable.c (freadable): Likewise.
21943         * lib/freadahead.c (freadahead): Likewise.
21944         * lib/freading.c (freading): Likewise.
21945         * lib/freadptr.c (freadptr): Likewise.
21946         * lib/freadseek.c (freadptrinc): Likewise.
21947         * lib/fseeko.c (rpl_fseeko): Likewise.
21948         * lib/fseterr.c (fseterr): Likewise.
21949         * lib/fwritable.c (fwritable): Likewise.
21950         * lib/fwriting.c (fwriting): Likewise.
21951         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
21952
21953 2008-04-09  Eric Blake  <ebb9@byu.net>
21954
21955         Avoid some autoconf warnings.
21956         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
21957         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
21958         * m4/afs.m4 (gl_AFS): Likewise.
21959         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
21960         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
21961         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
21962         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
21963         (gl_INTEGER_TYPE_SUFFIX): Likewise.
21964         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
21965         (AC_CHECK_DECLS_ONCE): Likewise.
21966         Rename file...
21967         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
21968         gnulib-tool requires autoconf 2.59 or better.
21969         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
21970
21971 2008-04-08  Eric Blake  <ebb9@byu.net>
21972
21973         Use 'git describe --match' if present (added in git 1.5.5).
21974         * build-aux/git-version-gen: Limit result to tags that match 'v*'
21975         if possible.
21976
21977 2008-04-08  Bruno Haible  <bruno@clisp.org>
21978
21979         Add tentative support for OpenServer.
21980         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
21981         _ptr, _cnt.
21982         * lib/fpurge.c (fpurge): Likewise.
21983         * lib/freadable.c (freadable): Likewise.
21984         * lib/freadahead.c (freadahead): Likewise.
21985         * lib/freading.c (freading): Likewise.
21986         * lib/freadptr.c (freadptr): Likewise.
21987         * lib/freadseek.c (freadptrinc): Likewise.
21988         * lib/fseeko.c (rpl_fseeko): Likewise.
21989         * lib/fseterr.c (fseterr): Likewise.
21990         * lib/fwritable.c (fwritable): Likewise.
21991         * lib/fwriting.c (fwriting): Likewise.
21992         Reported by Roger Cornelius <rac@tenzing.org> and
21993         Brian K. White <brian@aljex.com>.
21994
21995 2008-04-06  Jim Meyering  <meyering@redhat.com>
21996
21997         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
21998
21999 2008-04-06  Bruno Haible  <bruno@clisp.org>
22000
22001         Avoid possible error with non-ASCII bytes in UTF-8 locales.
22002         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
22003         * tests/test-printf-posix.sh: Likewise.
22004         * tests/test-vfprintf-posix.sh: Likewise.
22005         * tests/test-vprintf-posix.sh: Likewise.
22006         * tests/test-xprintf-posix.sh: Likewise.
22007
22008 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22009
22010         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
22011         hide error from 'ls', needed on OS/2.
22012         Report by Elbert Pol <elbert.pol@gmail.com>.
22013
22014 2008-04-04  Eric Blake  <ebb9@byu.net>
22015
22016         Make test-fseeko.c failures meaningful.
22017         * tests/test-fseeko.c: Print line number on failure.
22018         * tests/test-fseek.c: Likewise.
22019         Reported by Nelson H. F. Beebe.
22020
22021         Improve strtod bug detection check.
22022         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
22023         required for Solaris 10.
22024         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
22025
22026 2008-04-04  Bruno Haible  <bruno@clisp.org>
22027
22028         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
22029         by m4/setenv.m4.
22030
22031 2008-04-03  Eric Blake  <ebb9@byu.net>
22032
22033         Ensure sane .version contents.
22034         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
22035         version string.
22036         * build-aux/git-version-gen: Improve documentation.
22037
22038         Make GNU make output nicer.
22039         * top/GNUmakefile [!_have-Makefile]: Add dependency on
22040         MAKECMDGOALS to enforce message for all command line targets.  Set
22041         srcdir for use in maint.mk.
22042
22043         Another maintainer tweak.
22044         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
22045         a target that regenerates version.
22046
22047 2008-04-03  Jim Meyering  <meyering@redhat.com>
22048
22049         vc-list-files: don't cause coreutils "make po-check" failure
22050         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
22051
22052 2008-04-03  Eric Blake  <ebb9@byu.net>
22053
22054         Allow VPATH usage of vc-list-files.
22055         * build-aux/vc-list-files (scriptversion): Add timestamp.
22056         (options): Add --help, --version, -C.
22057         (CVS): Support installed cvsu.
22058
22059 2008-04-02  Bruno Haible  <bruno@clisp.org>
22060
22061         Avoid some "statement with no effect" warnings from gcc.
22062         * tests/test-wctype.c (main): Explicitly ignore unused values.
22063         Reported by Jim Meyering.
22064
22065 2008-04-02  Jim Meyering  <meyering@redhat.com>
22066
22067         Avoid some warnings from "gcc -Wshadow".
22068         * tests/test-frexp.c (exp): Define to a different identifier.
22069         * tests/test-frexpl.c (exp): Likewise.
22070
22071 2008-04-03  Jim Meyering  <meyering@redhat.com>
22072
22073         bootstrap: remove dangling *.[ch] symlinks from lib
22074         * build-aux/bootstrap [dangling symlink removal]: Move find's
22075         -depth option to precede all others, to avoid a warning.
22076         Remove *.[ch] files too, and from "$source_base" (usually lib/).
22077
22078 2008-04-02  Bruno Haible  <bruno@clisp.org>
22079
22080         Avoid some warnings from "gcc -Wshadow".
22081         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
22082         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
22083         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
22084         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
22085         Reported by Jim Meyering.
22086
22087 2008-04-01  Bruno Haible  <bruno@clisp.org>
22088
22089         Fix test to work on IRIX 6.5 with cc.
22090         * tests/test-math.c (numeric_equal): New function.
22091         (main): Use it.
22092
22093 2008-04-01  Bruno Haible  <bruno@clisp.org>
22094
22095         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
22096
22097 2008-04-01  Bruno Haible  <bruno@clisp.org>
22098
22099         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
22100         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
22101         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
22102         (Depends-on): Remove math.
22103
22104         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
22105         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
22106         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
22107         (Depends-on): Remove math.
22108
22109         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
22110         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
22111         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
22112         (Depends-on): Remove math.
22113         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
22114         (Depends-on): Remove math.
22115
22116         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
22117         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
22118         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
22119         (Depends-on): Remove math.
22120         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
22121         (Depends-on): Remove math.
22122
22123         * tests/test-round1.c: Include nan.h.
22124         (main): Use NaNd instead of NAN.
22125         * modules/round-tests (Files): Add tests/nan.h.
22126
22127         * tests/test-trunc1.c: Include nan.h.
22128         (main): Use NaNd instead of NAN.
22129         * modules/trunc-tests (Files): Add tests/nan.h.
22130
22131         * tests/test-roundf1.c: Include nan.h.
22132         (main): Use NaNf instead of NAN.
22133         * modules/roundf-tests (Files): Add tests/nan.h.
22134
22135         * tests/test-truncf1.c: Include nan.h.
22136         (main): Use NaNf instead of NAN.
22137         * modules/truncf-tests (Files): Add tests/nan.h.
22138
22139         * tests/test-ceilf1.c: Include nan.h.
22140         (main): Use NaNf instead of NAN.
22141         * modules/ceilf-tests (Files): Add tests/nan.h.
22142
22143         * tests/test-floorf1.c: Include nan.h.
22144         (main): Use NaNf instead of NAN.
22145         * modules/floorf-tests (Files): Add tests/nan.h.
22146
22147         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
22148         (main): Use NaNf instead of NAN.
22149         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
22150
22151         * tests/test-isnand.c: Include nan.h instead of <math.h>.
22152         (main): Use NaNd instead of NAN.
22153         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
22154
22155         * tests/test-frexp.c: Include nan.h.
22156         (main): Use NaNd instead of NAN.
22157         * modules/frexp-tests (Files): Add tests/nan.h.
22158
22159         * lib/isnan.c: Don't include <math.h>.
22160         (FUNC): Don't use NAN macro.
22161         * modules/isnand-nolibm (Depends-on): Remove math.
22162         * modules/isnanf-nolibm (Depends-on): Remove math.
22163         * modules/isnanl (Depends-on): Remove math.
22164         * modules/isnanl-nolibm (Depends-on): Remove math.
22165
22166         * tests/nan.h: New file.
22167
22168 2008-04-01  Eric Blake  <ebb9@byu.net>
22169
22170         Fix typos.
22171         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
22172         values to be the right type.
22173
22174         For now, cater to gnulib strtod inaccuracies.
22175         * tests/test-strtod.c (main): Allow 1-ulp error on expected
22176         fractional results.  While not as nice from a QoI perspective, it
22177         is a quicker patch than correctly implementing decimal to binary
22178         rounding.
22179
22180 2008-03-31  Eric Blake  <ebb9@byu.net>
22181
22182         Guarantee a definition of NAN.
22183         * lib/math.in.h (NAN): Define if missing.
22184         * tests/test-math.c (main): Test it.
22185         * doc/posix-headers/math.texi (math.h): Document this.
22186         * lib/isnan.c (rpl_isnand): Use it.
22187         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
22188         * tests/test-floorf1.c (NaN): Likewise.
22189         * tests/test-frexp.c (NaN): Likewise.
22190         * tests/test-isnand.c (NaN): Likewise.
22191         * tests/test-isnanf.c (NaN): Likewise.
22192         * tests/test-round1.c (NaN): Likewise.
22193         * tests/test-roundf1.c (NaN): Likewise.
22194         * tests/test-snprintf-posix.h (NaN): Likewise.
22195         * tests/test-sprintf-posix.h (NaN): Likewise.
22196         * tests/test-trunc1.c (NaN): Likewise.
22197         * tests/test-truncf1.c (NaN): Likewise.
22198         * tests/test-vasnprintf-posix.c (NaN): Likewise.
22199         * tests/test-vasprintf-posix.c (NaN): Likewise.
22200         * modules/isnand-nolibm (Depends-on): Add math.
22201         * modules/isnanf-nolibm (Depends-on): Likewise.
22202         * modules/isnanl (Depends-on): Likewise.
22203         * modules/isnanl-nolibm (Depends-on): Likewise.
22204         * modules/snprintf-posix-tests (Depends-on): Likewise.
22205         * modules/sprintf-posix-tests (Depends-on): Likewise.
22206         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
22207         * modules/vsprintf-posix-tests (Depends-on): Likewise.
22208         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
22209         * modules/vasprintf-posix-tests (Depends-on): Likewise.
22210
22211 2008-03-31  Bruno Haible  <bruno@clisp.org>
22212
22213         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
22214         * doc/posix-functions/strtod.texi: Likewise.
22215
22216 2008-03-31  Bruno Haible  <bruno@clisp.org>
22217
22218         * tests/test-strtod.c (main): Don't use C99 syntax.
22219
22220 2008-03-31  Bruno Haible  <bruno@clisp.org>
22221
22222         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
22223         Reported by Eric Blake.
22224
22225 2008-03-31  Jim Meyering  <meyering@redhat.com>
22226
22227         Don't compare actual signbit return values.
22228         * tests/test-strtod.c (main): Rather, compare only their
22229         zero/non-zero nature.
22230
22231 2008-03-31  Eric Blake  <ebb9@byu.net>
22232
22233         More strtod documentation.
22234         * doc/posix-functions/strtod.texi (strtod): Interpret more test
22235         failures as distinct bugs.
22236
22237 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
22238
22239         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
22240         Problem reported by Erik Benada in
22241         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
22242
22243 2008-03-30  Bruno Haible  <bruno@clisp.org>
22244
22245         * tests/test-strtod.c: Add comments about which assertion fails on which
22246         platform.
22247         * doc/posix-functions/strtod.texi: Add info about many more platforms.
22248
22249 2008-03-30  Eric Blake  <ebb9@byu.net>
22250
22251         Test signbit behavior on zeros.
22252         * tests/test-signbit.c (test_signbitf): Add tests for zero.
22253         (test_signbitd, test_signbitl): Likewise.
22254
22255         More strtod touchups.
22256         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
22257         sign of negative underflow, for now.  Use .5, not .1.
22258         * doc/posix-functions/strtod.texi (strtod): Mention these
22259         limitations.
22260         Reported by Jim Meyering.
22261
22262 2008-03-30  Bruno Haible  <bruno@clisp.org>
22263
22264         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
22265         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
22266
22267 2008-03-30  Bruno Haible  <bruno@clisp.org>
22268
22269         Avoid failure when attempting to return empty iconv results on some
22270         platforms.
22271         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
22272         allocation, don't report ENOMEM when the resulting string is empty.
22273
22274 2008-03-30  Bruno Haible  <bruno@clisp.org>
22275
22276         Fix buffer overrun.
22277         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
22278         Don't consider the width for tmp_length. Check count against tmp_length
22279         before doing the padding. Ensure enough allocation during padding.
22280
22281 2008-03-30  Eric Blake  <ebb9@byu.net>
22282
22283         strtod touchups.
22284         * lib/strtod.c (strtod): Avoid compiler warnings.
22285         Reported by Jim Meyering.
22286
22287 2008-03-30  Bruno Haible  <bruno@clisp.org>
22288
22289         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
22290         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
22291         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
22292         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
22293         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
22294         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
22295         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
22296         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
22297
22298         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
22299         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
22300         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
22301         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
22302         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
22303         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
22304         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
22305         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
22306
22307         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
22308         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
22309         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
22310         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
22311         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
22312         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
22313         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
22314         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
22315
22316         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
22317         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
22318
22319         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
22320         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
22321
22322         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
22323         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
22324
22325         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
22326         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
22327         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
22328
22329         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
22330         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
22331         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
22332
22333         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
22334         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
22335         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
22336
22337         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
22338         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
22339         * modules/vasprintf (Depends-on): Add EOVERFLOW.
22340
22341         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
22342         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
22343         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
22344         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
22345         (Depends-on): Add EOVERFLOW.
22346         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
22347         (Depends-on): Add EOVERFLOW.
22348         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
22349         (Depends-on): Add EOVERFLOW.
22350         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
22351         (Depends-on): Add EOVERFLOW.
22352         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
22353         (Depends-on): Add EOVERFLOW.
22354         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
22355         (Depends-on): Add EOVERFLOW.
22356         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
22357         (Depends-on): Add EOVERFLOW.
22358         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
22359         (Depends-on): Add EOVERFLOW.
22360
22361         * lib/sprintf.c (EOVERFLOW): Remove fallback.
22362         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
22363         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
22364
22365         * lib/snprintf.c (EOVERFLOW): Remove fallback.
22366         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
22367         * modules/snprintf (Depends-on): Add EOVERFLOW.
22368
22369         * lib/poll.c (EOVERFLOW): Remove fallback.
22370         * modules/poll (Depends-on): Add EOVERFLOW.
22371
22372         * lib/getugroups.c (EOVERFLOW): Remove fallback.
22373         * modules/getugroups (Depends-on): Add EOVERFLOW.
22374
22375         * lib/getdelim.c (EOVERFLOW): Remove fallback.
22376         * modules/getdelim (Depends-on): Add EOVERFLOW.
22377
22378         * lib/ftell.c (EOVERFLOW): Remove fallback.
22379         * modules/ftell (Depends-on): Add EOVERFLOW.
22380
22381         * lib/fprintf.c (EOVERFLOW): Remove fallback.
22382         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
22383         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
22384
22385         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
22386
22387         * modules/EOVERFLOW-tests: New file.
22388         * tests/test-EOVERFLOW.c: New file.
22389
22390         * modules/EOVERFLOW: New file.
22391         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
22392
22393 2008-03-30  Bruno Haible  <bruno@clisp.org>
22394
22395         Fix bug introduced on 2007-06-10.
22396         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
22397         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
22398
22399 2008-03-30  Bruno Haible  <bruno@clisp.org>
22400
22401         Improve freadseek's efficiency after ungetc.
22402         * lib/freadseek.c: Include freadahead.h.
22403         (freadptrinc): New function, extracted from freadseek.
22404         (freadseek): Use it in a loop. Use freadahead to determine the number
22405         of loop iterations.
22406         * modules/freadseek (Depends-on): Add freadahead.
22407         (configure.ac): Require AC_C_INLINE.
22408
22409 2008-03-30  Bruno Haible  <bruno@clisp.org>
22410
22411         * lib/freadseek.c (freadseek): Don't ignore the return value of
22412         freadptr.
22413
22414 2008-03-29  Eric Blake  <ebb9@byu.net>
22415
22416         Add hex float support.
22417         * modules/strtod (Depends-on): Add c-ctype.
22418         (Link): Mention POW_LIB.
22419         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
22420         whitespace between 'e' and exponent.
22421         * tests/test-strtod.c (main): Enable hex float tests.
22422         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
22423         now provides.
22424
22425         Document various strtod bugs, with some fixes.
22426         * doc/posix-functions/strtod.texi (strtod): Document bugs with
22427         "-0x", "inf", "nan", and hex constants.
22428         * doc/posix-functions/atof.texi (atof): Likewise.
22429         * modules/stdlib (Makefile.am): Support strtod.
22430         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
22431         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
22432         detect additional strtod bugs.
22433         * lib/stdlib.in.h (rpl_strtod): Add declarations.
22434         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
22435         bool where appropriate.  Parse 'inf' and 'nan'.
22436         * tests/test-strtod.c: New file.
22437         * modules/strtod (Depends-on): Add stdbool, stdlib.
22438         (configure.ac): Turn on module indicator.
22439         * modules/strtod-tests: New module.
22440
22441 2008-03-29  Eric Blake  <ebb9@byu.net>
22442
22443         Fix ftell on mingw.
22444         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
22445         * modules/ftell-tests (Depends-on): Add binary-io.
22446         * modules/ftello-tests (Depends-on): Likewise.
22447         * tests/test-ftell.c (main): Enhance test to cover behavior after
22448         ungetc.  Enforce binary mode.
22449         * tests/test-ftello.c (main): Likewise.
22450
22451         Pass test-freadseek on cygwin.
22452         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
22453         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
22454         ungetc buffer.
22455
22456         * tests/test-fflush2.c (main): Fix typo.
22457
22458 2008-03-29  Bruno Haible  <bruno@clisp.org>
22459
22460         * tests/test-fflush2.c (main): Temporarily disable the contents of
22461         this test.
22462         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
22463         Reported by Eric Blake.
22464
22465 2008-03-28  Simon Josefsson  <simon@josefsson.org>
22466
22467         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
22468         (GC_SHA224_DIGEST_SIZE): Add.
22469
22470         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
22471         (gc_hash_digest_length): Likewise.
22472         (gc_hash_buffer): Likewise.
22473
22474 2008-03-25  Bruno Haible  <bruno@clisp.org>
22475
22476         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
22477         detail which gettext release to use.
22478         Reported by Simon Josefsson.
22479
22480 2008-03-26  Jim Meyering  <meyering@redhat.com>
22481
22482         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
22483         * modules/gnumakefile (clean-GNUmakefile): Also, use
22484         test ... && ... || : syntax rather than if-then ... fi.
22485
22486         gnumakefile: Don't double-quote-expand $(VPATH) value.
22487         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
22488
22489 2008-03-24  Eric Blake  <ebb9@byu.net>
22490
22491         Alter GNUmakefile to install into top directory.
22492         * modules/maintainer-makefile: Split, and add dependency...
22493         * modules/gnumakefile: to this new module.
22494         * build-aux/GNUmakefile: Move...
22495         * top/GNUmakefile: ...here.
22496         * build-aux/maint.mk: Move...
22497         * top/maint.mk: ...here.
22498         * MODULES.html.sh (Support for maintaining...): Document new
22499         module.
22500
22501 2008-03-23  Bruno Haible  <bruno@clisp.org>
22502
22503         * gnulib-tool: New options --vc-files, --no-vc-files.
22504         (func_usage): Document them.
22505         (vc_files): New variable.
22506         (func_import): Consider vc_files.
22507         (func_create_testdir): Set vc_files to empty.
22508         Suggested by Jim Meyering and Karl Berry.
22509
22510 2008-03-23  Bruno Haible  <bruno@clisp.org>
22511
22512         Fix regex compilation error on HP-UX 11.
22513         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
22514         * modules/regex (Files): Add m4/mbstate_t.m4.
22515         Reported by Ton Voon <ton.voon@altinity.com>.
22516
22517 2008-03-23  Bruno Haible  <bruno@clisp.org>
22518
22519         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
22520
22521 2008-03-23  Eric Blake  <ebb9@byu.net>
22522             Bruno Haible  <bruno@clisp.org>
22523
22524         Install files from top/ in the destination directory.
22525         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
22526         augmentation also for the files from top/.
22527         (func_import, func_create_testdir): Rewrite file names:
22528         top/filename -> filename.
22529
22530 2008-03-23  Bruno Haible  <bruno@clisp.org>
22531
22532         Tweak "gnulib --version" output.
22533         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
22534
22535 2008-03-23  Bruno Haible  <bruno@clisp.org>
22536
22537         Tweak "gnulib --version" output.
22538         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
22539         rather than contents of ChangeLog, when possible.
22540
22541 2008-03-21  Eric Blake  <ebb9@byu.net>
22542
22543         More --version tweaks.
22544         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
22545         date of last ChangeLog entry.
22546
22547 2008-03-21  Jim Meyering  <meyering@redhat.com>
22548
22549         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
22550
22551 2008-03-20  Eric Blake  <ebb9@byu.net>
22552
22553         VPATH fix.
22554         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
22555
22556 2008-03-20  Simon Josefsson  <simon@josefsson.org>
22557
22558         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
22559         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
22560
22561 2008-03-20  Eric Blake  <ebb9@byu.net>
22562
22563         Sync GNUmakefile with coreutils.
22564         * build-aux/GNUmakefile (have-Makefile): Rename...
22565         (_have-Makefile): ...to this, for namespace consideration.
22566         (GNUmakefile.cfg): Include, if present.
22567         (_autoreconf): Define a default.
22568         (_is-dist-target): New rule for rebuilds to pick up intra-release
22569         version.
22570         (maint-cfg.mk): Rename...
22571         (cfg.mk): ...to this.
22572
22573 2008-03-18  Jim Meyering  <meyering@redhat.com>
22574
22575         New script and module: mktempd
22576         * MODULES.html.sh (maint+release support): Add mktempd.
22577         * build-aux/mktempd: New file.
22578         * modules/mktempd: New file.
22579
22580 2008-03-15  Jim Meyering  <meyering@redhat.com>
22581
22582         Undo last change.
22583         * lib/sha1.c, lib/md5.c: 63 != ~63.
22584         Reported by Andreas Schwab.
22585
22586         sha1.c, md5.c: Hoist a redundant expression.
22587         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
22588         "ctx->buflen" only once, before calling *_process_block.
22589         * lib/md5.c (md5_process_bytes): Likewise.
22590
22591 2008-03-14  Eric Blake  <ebb9@byu.net>
22592
22593         Bump copyright year in files generated by gnulib-tool.
22594         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
22595         gnulib-tool, rather than hard-coding it.
22596
22597         Fix 'gnulib-tool --version' output to work with git.
22598         * gnulib-tool (func_gnulib_dir): New function, extracted from...
22599         (startup): ...here.
22600         (func_version): Use it to invoke git-version-gen, rather than
22601         relying on CVS keyword expansion.  Modernize wording.
22602         (cvsdatestamp, last_checkin_date, version): Kill unused
22603         variables.
22604
22605 2008-03-12  Jim Meyering  <meyering@redhat.com>
22606
22607         Recognize optional cast of the argument to free.
22608         * build-aux/useless-if-before-free: Update regexps.
22609
22610         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
22611
22612 2008-03-11  Bruno Haible  <bruno@clisp.org>
22613
22614         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
22615         by a single package.
22616         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
22617         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
22618         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
22619         Reported by Sam Steingold <sds@gnu.org>.
22620
22621 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
22622
22623         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
22624         repositories.
22625
22626 2008-03-11  Bruno Haible  <bruno@clisp.org>
22627
22628         Avoid conflicts between local macro definitions.
22629         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
22630         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
22631
22632 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
22633             Bruno Haible  <bruno@clisp.org>
22634
22635         Make va_copy work with some version of xlc on AIX 5.1.
22636         * lib/stdarg.in.h: New file.
22637         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
22638         On AIX, use a <stdarg.h> file substitute.
22639         * modules/stdarg (Files): Add lib/stdarg.in.h.
22640         (Depends-on): Add include_next.
22641         (Makefile.am): Build a stdarg.h substitute if requested.
22642         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
22643
22644 2008-03-10  Bruno Haible  <bruno@clisp.org>
22645
22646         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
22647         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
22648         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
22649
22650 2008-03-10  Bruno Haible  <bruno@clisp.org>
22651
22652         * modules/stdlib (Depends-on): Add include_next, remove
22653         absolute-header.
22654
22655 2008-03-09  Bruno Haible  <bruno@clisp.org>
22656
22657         * lib/freadahead.h (freadahead): Document more precisely.
22658         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
22659         the sum of both buffer sizes.
22660         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
22661         * NEWS: Document the change.
22662
22663 2008-03-09  Bruno Haible  <bruno@clisp.org>
22664
22665         Extend freadptr to return also the buffer size.
22666         * lib/freadptr.h (freadptr): Add sizep argument.
22667         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
22668         (freadptr): Add sizep argument. Determine buffer size like freadahead
22669         does.
22670         * tests/test-freadptr.c: Don't include freadahead.h.
22671         (main): Adapt for new calling convention of freadptr.
22672         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
22673         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
22674         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
22675         tests/test-freadptr2.sh.
22676         (Depends): Remove freadahead.
22677         (TESTS): Add test-freadptr2.sh.
22678         (check_PROGRAMS): Add test-freadptr2.
22679
22680 2008-03-09  Bruno Haible  <bruno@clisp.org>
22681
22682         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
22683         Report and solution by Simon Josefsson.
22684
22685 2008-03-06  Bruno Haible  <bruno@clisp.org>
22686
22687         Make fflush after ungetc work on BSD platforms.
22688         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
22689         * tests/test-fflush2.c: New file.
22690         * tests/test-fflush2.sh: New file.
22691         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
22692         tests/test-fflush2.c.
22693         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
22694         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
22695
22696 2008-03-06  Eric Blake  <ebb9@byu.net>
22697
22698         Likewise for ftello.
22699         * modules/ftello (Dependencies): Add extensions.
22700         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
22701
22702 2008-03-06  Bruno Haible  <bruno@clisp.org>
22703
22704         * modules/fseeko (Dependencies): Add extensions.
22705         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
22706         Needed on glibc systems.
22707
22708 2008-03-06  Bruno Haible  <bruno@clisp.org>
22709
22710         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
22711         email address.
22712         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
22713
22714 2008-03-06  Bruno Haible  <bruno@clisp.org>
22715
22716         * users.txt: Add libgnupdf.
22717
22718 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
22719
22720         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
22721         (Header File Substitutes, Function Substitutes,
22722         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
22723         (Build robot for gnulib): Fix typo.
22724
22725 2008-03-06  Bruno Haible  <bruno@clisp.org>
22726
22727         * doc/gnulib-tool.texi (VCS Issues): Small updates.
22728         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
22729
22730 2008-03-06  Bruno Haible  <bruno@clisp.org>
22731
22732         * doc/func.texi: New file, extracted from doc/gnulib.texi.
22733         * doc/gnulib.texi: Include it.
22734
22735 2008-03-06  Simon Josefsson  <simon@josefsson.org>
22736
22737         * modules/func (License): Change license to unlimited; there was
22738         no LGPL parts in the module anyway.
22739
22740 2008-03-06  Simon Josefsson  <simon@josefsson.org>
22741
22742         * modules/__func__: Renamed to modules/func.
22743         * modules/__func__-tests: Renamed to modules/func-tests.
22744         * tests/test-__func__.c: Renamed to tests/test-func.c.
22745         * m4/__func__.m4: Renamed to m4/func.m4.
22746         * doc/gnulib.texi (__func__): Section renamed to func.
22747         Suggested by Eric Blake <ebb9@byu.net>.
22748
22749 2008-03-06  Simon Josefsson  <simon@josefsson.org>
22750
22751         * doc/gnulib.texi (__func__): Use C99 terminology when talking
22752         about __func__.  Make example self-contained.  Suggested by Eric
22753         Blake <ebb9@byu.net>.
22754
22755         * tests/test-__func__.c (main): Avoid extraneous () around __func.
22756         Suggested by Eric Blake <ebb9@byu.net>.
22757
22758 2008-03-06  Simon Josefsson  <simon@josefsson.org>
22759
22760         * modules/__func__: New file.
22761         * modules/__func__-tests: New file.
22762         * tests/test-__func__.c: New file.
22763         * m4/__func__.m4: New file.
22764         * doc/gnulib.texi (__func__): Document __func__ module.
22765
22766 2008-03-05  Simon Josefsson  <simon@josefsson.org>
22767
22768         * modules/byteswap (License): Re-license as LGPLv2+.
22769
22770 2008-03-05  Simon Josefsson  <simon@josefsson.org>
22771
22772         * doc/Makefile: Add pdf target.
22773
22774 2008-03-05  Simon Josefsson  <simon@josefsson.org>
22775
22776         * modules/inline (License): Use 'unlimited', since there are only
22777         *.m4 files in this module.
22778
22779 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
22780             Bruno Haible  <bruno@clisp.org>
22781
22782         Add support for HP C 7.1 on OpenVMS 8.3.
22783         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
22784
22785 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
22786
22787         Update VMS specifics.
22788         * lib/getopt.c [VMS]: Remove include of unixlib.h.
22789
22790 2008-03-02  Jim Meyering  <meyering@redhat.com>
22791
22792         Remove the last dependency on the "free" module.
22793         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
22794         Reported by Bob Proulx.
22795
22796         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
22797
22798         Remove useless "if" tests before free.  Deprecate "free" module.
22799         * doc/posix-functions/free.texi: Mention that this
22800         module is no longer useful.
22801         * modules/free (Notice): Say this module is obsolete.
22802         * modules/readutmp (Depends-on): Remove free.
22803         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
22804         * lib/putenv.c (putenv): Likewise.
22805         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
22806         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
22807         * tests/test-c-strcasestr.c (main): Likewise.
22808         * tests/test-c-strstr.c (main): Likewise.
22809         * tests/test-mbscasestr1.c (main): Likewise.
22810         * tests/test-mbscasestr2.c (main): Likewise.
22811         * tests/test-mbsstr1.c (main): Likewise.
22812         * tests/test-mbsstr2.c (main): Likewise.
22813         * tests/test-memmem.c (main): Likewise.
22814         * tests/test-strcasestr.c (main): Likewise.
22815         * tests/test-striconv.c (main): Likewise.
22816         * tests/test-striconveh.c (main): Likewise.
22817         * tests/test-striconveha.c (main): Likewise.
22818         * tests/test-strstr.c (main): Likewise.
22819
22820         * build-aux/git-version-gen: Adjust a comment and the Usage string.
22821
22822         bootstrap: sync from coreutils again
22823         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
22824
22825 2008-03-01  Jim Meyering  <meyering@redhat.com>
22826
22827         bootstrap: sync from coreutils
22828         * build-aux/bootstrap (update_po_files): Copy a .po file into place
22829         also when the target doesn't exist.
22830
22831 2008-03-01  Eric Blake  <ebb9@byu.net>
22832
22833         Fix bugs in last patch.
22834         * lib/memchr2.c (memchr2): Fix typo.
22835         * tests/test-memchr2.c: Test previous bug, and don't use GNU
22836         extension.
22837         Reported by Bruce Korb.
22838
22839         New module 'memchr2'.
22840         * modules/memchr2: New file.
22841         * modules/memchr2-tests: Likewise.
22842         * lib/memchr2.h: Likewise.
22843         * lib/memchr2.c: Likewise, based on memchr.c.
22844         * tests/test-memchr2.c: New test.
22845         * MODULES.html.sh (String handling): Add memchr2.
22846
22847 2008-02-29  Bruno Haible  <bruno@clisp.org>
22848
22849         * modules/freadseek-tests: New file.
22850         * tests/test-freadseek.sh: New file.
22851         * tests/test-freadseek.c: New file.
22852
22853         New module 'freadseek'.
22854         * modules/freadseek: New file.
22855         * lib/freadseek.h: New file.
22856         * lib/freadseek.c: New file.
22857         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
22858
22859 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
22860
22861         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
22862         wydawca.
22863
22864         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
22865         program_invocation_name and program_invocation_short_name are
22866         present.
22867
22868 2008-02-28  Bruno Haible  <bruno@clisp.org>
22869
22870         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
22871         * tests/test-freadptr.sh: Also test non-seekable stdin.
22872
22873 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
22874
22875         * build-aux/bootstrap (source_base, m4_base)
22876         (doc_base, tests_base): New variables.
22877         (gnulib_tool_options): Do not hardcode base directories, use
22878         the above variables instead.
22879
22880 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
22881
22882         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
22883
22884 2008-02-28  Bruno Haible  <bruno@clisp.org>
22885
22886         * modules/freadptr-tests: New file.
22887         * tests/test-freadptr.sh: New file.
22888         * tests/test-freadptr.c: New file.
22889
22890         New module 'freadptr'.
22891         * modules/freadptr: New file.
22892         * lib/freadptr.h: New file.
22893         * lib/freadptr.c: New file.
22894         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
22895
22896 2008-02-26  Karl Berry  <karl@freefriends.org>
22897
22898         Sync from Libtool:
22899         * libltdl/argz.c (argz_add, argz_count): New functions.
22900         * libltdl/argz.in.h: Declare them.
22901         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
22902
22903 2008-02-22  Bruno Haible  <bruno@clisp.org>
22904
22905         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
22906         is a pointer type.  Needed for HP-UX 10.
22907         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
22908         * doc/posix-functions/gmtime_r.texi: Likewise.
22909         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
22910
22911 2008-02-24  Bruno Haible  <bruno@clisp.org>
22912
22913         * modules/environ-tests: New file.
22914         * tests/test-environ.c: New file.
22915
22916         New module 'environ'.
22917         * modules/environ: New file.
22918         * lib/unistd.in.h (environ): New declaration.
22919         * m4/environ.m4: New file.
22920         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
22921         after use.
22922         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
22923         HAVE_DECL_ENVIRON.
22924         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
22925         HAVE_DECL_ENVIRON.
22926         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
22927         wrong claim that 'environ' is missing on some systems.
22928         * modules/execute (Depends-on): Add environ.
22929         * lib/execute.c (environ): Remove fallback declaration.
22930         * modules/pipe (Depends-on): Add environ.
22931         * lib/pipe.c (environ): Remove fallback declaration.
22932         * modules/setenv (Depends-on): Add environ.
22933         * lib/setenv.c (environ): Remove fallback declaration.
22934         * modules/unsetenv (Depends-on): Add environ.
22935         * lib/unsetenv.c (environ): Remove fallback declaration.
22936         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
22937         m4/environ.m4.
22938         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
22939         (gl_PREREQ_UNSETENV): Likewise.
22940
22941 2008-02-24  Bruno Haible  <bruno@clisp.org>
22942
22943         * doc/posix-functions/environ.texi: Document the MacOS X problem.
22944
22945 2008-02-20  Bob Proulx  <bob@proulx.com>
22946
22947         Enable use of older two part flavor 'git describe'.
22948         * build-aux/git-version-gen: If using the older two part flavor of
22949         git version then recreate the third part now present in the
22950         newer three part flavor of git describe.
22951
22952 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
22953
22954         * lib/fts.c (fts_build): Typo correction to comment.
22955
22956 2008-02-17  Bruno Haible  <bruno@clisp.org>
22957
22958         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
22959         generating no-op conflicts.
22960
22961 2008-02-17  Bruno Haible  <bruno@clisp.org>
22962
22963         Speed up by 10%.
22964         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
22965         result_entries, rather than an index-based loop.
22966
22967 2008-02-17  Bruno Haible  <bruno@clisp.org>
22968
22969         Speed up by 25%.
22970         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
22971         'hashcode_cached'.
22972         (entry_create): New function.
22973         (entry_hashcode): Use the cached hashcode if possible.
22974         (read_changelog_file, try_split_merged_entry): Use entry_create.
22975
22976 2008-02-17  Bruno Haible  <bruno@clisp.org>
22977
22978         Speed up from O(n^2) to O(n) for long ChangeLog files.
22979         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
22980         (read_changelog_file): Change implementation of entries_reversed list
22981         to rbtreehash.
22982         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
22983
22984 2008-02-17  Bruno Haible  <bruno@clisp.org>
22985
22986         New option --split-merged-entry.
22987         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
22988         (find_paragraph_end, try_split_merged_entry): New functions.
22989         (long_options): Add option --split-merged-entry.
22990         (usage): Document option --split-merged-entry.
22991         (main): Implement option --split-merged-entry.
22992         Reported by Eric Blake.
22993
22994 2008-02-17  Bruno Haible  <bruno@clisp.org>
22995
22996         * lib/git-merge-changelog.c: Include c-strstr.h.
22997         (main): Support the "git pull --rebase" situation.
22998         * modules/git-merge-changelog (Depends-on): Add c-strstr.
22999         Reported by Eric Blake.
23000
23001 2008-02-16  Eric Blake  <ebb9@byu.net>
23002
23003         Avoid doubling \ in common case of "c-maybe" quoting style.
23004         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
23005         eliding outer quotes.
23006         * lib/quotearg.h: Document this.
23007         * tests/test-quotearg.c (result_strings, inputs, results_g)
23008         (flag_results, locale_results): Test it by adding a new string to
23009         each test group.
23010         (compare_strings): Test new string.
23011
23012 2008-02-13  Eric Blake  <ebb9@byu.net>
23013
23014         Avoid trigraph quoting in default output.
23015         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
23016         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
23017         unless explicitly requested.
23018         * tests/test-quotearg.c (flag_results, main): Add additional tests.
23019
23020 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
23021
23022         Don't rely on signed integer overflowing to negative value.
23023         * lib/getugroups.c (getugroups): Include <limits.h>.
23024         Instead, compare against INT_MAX, and increment only if the test passes.
23025
23026 2008-02-13  Jim Meyering  <meyering@redhat.com>
23027         and Eric Blake  <ebb9@byu.net>
23028
23029         Avoid shadowing warning and compile errors on Linux.
23030         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
23031         forwarding macros on Linux.
23032         (dcgettext): Define a stub, for Linux.
23033         (results_g, main): Avoid warnings.
23034
23035 2008-02-12  Eric Blake  <ebb9@byu.net>
23036
23037         Silence warning in last patch.
23038         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
23039
23040         Quotearg part 4: add tests, fix c-maybe colon quoting.
23041         * lib/quotearg.h: Improve documentation.
23042         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
23043         escapes when adding outer quotes.  When quoting trigraphs, use
23044         valid C notation.  When quoting NUL, omit extra characters if next
23045         character is not digit.  Alter prototype.
23046         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
23047         callers.
23048         * modules/quotearg-tests: New module.
23049         * tests/test-quotearg.c: New test.
23050
23051 2008-02-07  Eric Blake  <ebb9@byu.net>
23052
23053         Quotearg part 3: add flag to control outer quote elision.
23054         * lib/quotearg.h (c_maybe_quoting_style): New style.
23055         (enum quoting_flags): Better documentation of flags.
23056         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
23057         c-maybe style.
23058         (quotearg_buffer_restyled): Handle new flag to elide outer
23059         quotes.
23060
23061         Quotearg part 2: add flag that can control NUL elision.
23062         * lib/quotearg.h (set_quoting_flags): New prototype.
23063         * lib/quotearg.c (struct quoting_options): Add flag field.
23064         (set_quoting_flags): New function.
23065         (quotearg_buffer_restyled): Add flags parameter.
23066         (quotearg_alloc_mem): Set the flag if length cannot be returned.
23067         (quotearg_n_options): Set the flag, since length cannot be
23068         returned.
23069         (quoting_options_from_style): Default flags correctly.
23070
23071         Quotearg part 1: more wrappers, restore quotearg_char state.
23072         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
23073         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
23074         (quotearg_colon_mem): New wrappers.
23075         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
23076         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
23077         functions.
23078         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
23079         (quotearg_colon_mem): New functions.
23080
23081 2008-02-11  Bruno Haible  <bruno@clisp.org>
23082
23083         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
23084         library in the current directory: it does not work with parallel make.
23085         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23086
23087 2008-02-11  Bruno Haible  <bruno@clisp.org>
23088
23089         * .gitattributes: New file.
23090
23091 2008-02-11  Jim Meyering  <meyering@redhat.com>
23092
23093         useless-if-before-free: Fix reversed exit values.
23094         * build-aux/useless-if-before-free: Use correct values
23095         for EXIT_MATCH and EXIT_NO_MATCH.
23096
23097         * build-aux/useless-if-before-free: Close stdout carefully.
23098
23099 2008-02-10  Bruno Haible  <bruno@clisp.org>
23100
23101         New module 'git-merge-changelog'.
23102         * modules/git-merge-changelog: New file.
23103         * lib/git-merge-changelog.c: New file.
23104
23105 2008-02-10  Jim Meyering  <meyering@redhat.com>
23106
23107         useless-if-before-free: New option: --list (-l).
23108
23109         useless-if-before-free: Don't exit immediately upon open failure.
23110         * build-aux/useless-if-before-free: Exit 2 for errors.
23111         Upon failure to open a file, don't exit immediately.
23112         Rather, just warn and continue with any remaining files.
23113
23114 2008-02-10  Bruno Haible  <bruno@clisp.org>
23115
23116         New abstract list operation 'node_set_value'.
23117         * lib/gl_list.h (gl_list_node_set_value): New function.
23118         (struct gl_list_implementation): New field node_set_value.
23119         * lib/gl_list.c (gl_list_node_set_value): New function.
23120         * lib/gl_array_list.c (gl_array_node_set_value): New function.
23121         (gl_array_list_implementation): Update.
23122         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
23123         (gl_carray_list_implementation): Update.
23124         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
23125         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
23126         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
23127         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
23128         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
23129         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
23130         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
23131         Update.
23132         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
23133         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
23134         (gl_sublist_list_implementation): Update.
23135
23136 2008-02-10  Bruno Haible  <bruno@clisp.org>
23137
23138         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
23139         Needed when ELEMENT is #defined to 'some_type *'.
23140
23141 2008-02-10  Jim Meyering  <meyering@redhat.com>
23142
23143         New script and module: useless-if-before-free
23144         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
23145         * build-aux/useless-if-before-free: New file.
23146         * modules/useless-if-before-free: New file.
23147
23148         * build-aux/gitlog-to-changelog: Use committer date, not author date.
23149
23150         xstrtol_error: Fix typo.
23151         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
23152         s/exit_failure/exit_status/.
23153
23154 2008-02-09  Jim Meyering  <meyering@redhat.com>
23155
23156         New script and module: gitlog-to-changelog
23157         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
23158         * modules/gitlog-to-changelog: New file.
23159         * build-aux/gitlog-to-changelog: New file.
23160
23161 2008-02-08  Jim Meyering  <meyering@redhat.com>
23162
23163         Avoid two "parameter unused" warnings.
23164         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
23165         Mark "st" as used.
23166
23167         Use "git COMMAND", not "git-COMMAND".
23168         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
23169         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
23170         * build-aux/git-version-gen: Use "git status", not "git-status".
23171
23172 2008-02-07  Bruno Haible  <bruno@clisp.org>
23173
23174         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
23175         Avoids a crash on Windows Vista.
23176         Reported by Adam Strzelecki <ono@java.pl> via
23177         Simon Josefsson <simon@josefsson.org>.
23178
23179 2008-02-06  Bruno Haible  <bruno@clisp.org>
23180
23181         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
23182         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
23183         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
23184         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
23185         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23186         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23187         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
23188         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
23189         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23190         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23191         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23192         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23193         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23194         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23195         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23196         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
23197         left-adjust flag.
23198         * tests/test-snprintf-posix.h (test_function): Likewise.
23199         * tests/test-sprintf-posix.h (test_function): Likewise.
23200         * tests/test-vasprintf-posix.c (test_function): Likewise.
23201         * doc/posix-functions/fprintf.texi: Update.
23202         * doc/posix-functions/printf.texi: Update.
23203         * doc/posix-functions/snprintf.texi: Update.
23204         * doc/posix-functions/sprintf.texi: Update.
23205         * doc/posix-functions/vfprintf.texi: Update.
23206         * doc/posix-functions/vprintf.texi: Update.
23207         * doc/posix-functions/vsnprintf.texi: Update.
23208         * doc/posix-functions/vsprintf.texi: Update.
23209         Reported by Peter Fales <psfales@alcatel-lucent.com>.
23210
23211 2008-02-06  Bruno Haible  <bruno@clisp.org>
23212
23213         Fix bug introduced on 2008-01-26.
23214         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
23215
23216 2008-02-06  Bruno Haible  <bruno@clisp.org>
23217
23218         Fix bug introduced on 2007-06-10.
23219         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
23220         !NEED_PRINTF_FLAG_ZERO.
23221
23222 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
23223
23224         getloadavg: use libperfstat on AIX5
23225         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
23226
23227 2008-02-03  Bruno Haible  <bruno@clisp.org>
23228
23229         * lib/diffseq.h: Add comments about required #includes.
23230         Reported by Michael Biggs <gnulib@doubleplum.net>.
23231
23232 2008-02-01  Bruno Haible  <bruno@clisp.org>
23233
23234         * users.txt: Add gnuit.
23235
23236 2008-01-31  Bruno Haible  <bruno@clisp.org>
23237
23238         * lib/md4.c (set_uint32): Mark as inline.
23239         * lib/md5.c (set_uint32): Likewise.
23240         * lib/sha1.c (set_uint32): Likewise.
23241         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
23242         * m4/md5.m4 (gl_MD5): Likewise.
23243         * m4/sha1.m4 (gl_SHA1): Likewise.
23244
23245 2008-01-31  Jim Meyering  <meyering@redhat.com>
23246
23247         Use "sizeof VAR", rather than a literal "4".
23248         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
23249         * lib/md4.c (md4_read_ctx): Likewise.
23250         * lib/sha1.c (sha1_read_ctx): Likewise.
23251
23252 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23253
23254         * tests/test-sha1.c: New file, based on test-md5.c.
23255
23256         * modules/crypto/sha1-tests: New file.
23257
23258 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23259
23260         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
23261
23262 2008-01-31  Jim Meyering  <meyering@redhat.com>
23263
23264         Prefer "sizeof v" over the equivalent "4".
23265         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
23266         * lib/md5.c (set_uint32): Likewise.
23267         * lib/sha1.c (set_uint32): Likewise.
23268
23269 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23270
23271         * lib/sha1.c (set_uint32): Mark function as static.
23272
23273 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23274
23275         md2: clarify comments to say that alignment is not required.
23276         * lib/md2.h: Remove warning about alignment in comment.
23277         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
23278         never been required.
23279
23280 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23281
23282         md4: adapt alignment constraint fix from sha1.
23283         * lib/md4.c (set_uint32): New function, from sha1.c
23284         (md4_read_ctx): Use it.
23285         (md4_finish_ctx): Doc fix.
23286         * lib/md4.h: Doc fix.
23287
23288 2008-01-31  Simon Josefsson  <simon@josefsson.org>
23289
23290         md5: adapt alignment constraint fix from sha1.
23291         * lib/md5.c (set_uint32): New function, from sha1.c
23292         (md5_read_ctx): Use it.
23293         (md5_finish_ctx): Doc fix.
23294         * lib/md5.h: Doc fix.
23295
23296 2008-01-30  Peter Palfrader  <weasel@debian.org>
23297
23298         sha1: remove the result buffer alignment constraint
23299         * lib/sha1.c (set_uint32): New function.
23300         (sha1_read_ctx): Rewrite to remove the result buffer alignment
23301         constraint.
23302         (sha1_finish_ctx): Remove comment warning about alignment constraint.
23303         * lib/sha1.h: Likewise.
23304
23305 2008-01-30  Andreas Schwab  <schwab@suse.de>
23306             Bruno Haible  <bruno@clisp.org>
23307
23308         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
23309         correct definition of LDBL_MIN_EXP.
23310
23311 2008-01-30  Karl Berry  <karl@gnu.org>
23312
23313         * config/srclist-update: try to preserve x bit on updates.
23314         * config/srclistvars.sh: update for karl.
23315
23316 2008-01-29  Jim Meyering  <meyering@redhat.com>
23317
23318         vasnprintf.c: Avoid warning about unused label
23319         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
23320         "overflow" label definition and associated code with the
23321         same cpp condition that guards the sole use of that label.
23322
23323 2008-01-26  Bruno Haible  <bruno@clisp.org>
23324
23325         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
23326         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
23327         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
23328         * lib/isnanl-nolibm.h (isnanl): Likewise.
23329         Reported by Paul Eggert <eggert@cs.ucla.edu>.
23330
23331 2008-01-26  Bruno Haible  <bruno@clisp.org>
23332
23333         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
23334         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
23335
23336 2008-01-26  Bruno Haible  <bruno@clisp.org>
23337
23338         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
23339         GCC >= 4.0 built-in.
23340         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
23341
23342 2008-01-26  Bruno Haible  <bruno@clisp.org>
23343
23344         Rename isnan, applicable to 'double' only, to isnand.
23345         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
23346         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
23347         (configure.ac): Update.
23348         (Include): Replace "isnan.h" with "isnand.h".
23349         * m4/isnand.m4: Renamed from m4/isnan.m4.
23350         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
23351         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
23352         instead of isnan.c.
23353         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
23354         instead of HAVE_ISNAN_IN_LIBC.
23355         (isnand): Renamed from isnan.
23356         * lib/isnand.c: New file.
23357         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
23358         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
23359         (Makefile.am): Update.
23360         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
23361         Include isnand.h instead of isnan.h.
23362         (main): Test isnand instead of isnan.
23363         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
23364         isnan-nolibm.
23365         * modules/frexp (Depends-on): Likewise.
23366         * modules/frexp-tests (Depends-on): Likewise.
23367         * modules/frexp-nolibm (Depends-on): Likewise.
23368         * modules/frexp-nolibm-tests (Depends-on): Likewise.
23369         * modules/isfinite (Depends-on): Likewise.
23370         * modules/round-tests (Depends-on): Likewise.
23371         * modules/signbit (Depends-on): Likewise.
23372         * modules/signbit-tests (Depends-on): Likewise.
23373         * modules/snprintf-posix (Depends-on): Likewise.
23374         * modules/sprintf-posix (Depends-on): Likewise.
23375         * modules/trunc-tests (Depends-on): Likewise.
23376         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23377         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23378         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23379         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23380         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23381         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23382         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23383         * modules/vasnprintf-posix (Depends-on): Likewise.
23384         * modules/vasprintf-posix (Depends-on): Likewise.
23385         * modules/vfprintf-posix (Depends-on): Likewise.
23386         * modules/vsnprintf-posix (Depends-on): Likewise.
23387         * modules/vsprintf-posix (Depends-on): Likewise.
23388         * lib/frexp.c: Include isnand.h instead of isnan.h.
23389         (ISNAN): Set to isnand instead of isnan.
23390         * lib/isfinite.c: Include isnand.h instead of isnan.h.
23391         (gl_isfinited): Use isnand instead of isnan.
23392         * lib/signbitd.c: Include isnand.h instead of isnan.h.
23393         (gl_signbitd): Use isnand instead of isnan.
23394         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
23395         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
23396         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
23397         (main): Use isnand instead of isnan.
23398         * tests/test-round1.c: Include isnand.h.
23399         (main): Use isnand instead of isnan.
23400         * tests/test-round2.c: Include isnand.h instead of isnan.h.
23401         (ISNAN): Set to isnand instead of isnan.
23402         * tests/test-trunc1.c: Include isnand.h.
23403         (main): Use isnand instead of isnan.
23404         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
23405         (equal): Use isnand instead of isnan.
23406         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
23407         isnand-nolibm.
23408         * NEWS: Mention the change.
23409
23410 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
23411             Bruno Haible  <bruno@clisp.org>
23412
23413         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
23414         the GCC builtins for signbits are present and set
23415         REPLACE_SIGNBIT_USING_GCC if so.
23416         * lib/math.in.h (signbit): Define using GCC builtins if
23417         REPLACE_SIGNBIT_USING_GCC is set.
23418         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
23419         REPLACE_SIGNBIT_USING_GCC.
23420         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
23421
23422 2008-01-25  Jim Meyering  <meyering@redhat.com>
23423
23424         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
23425         * lib/poll.c: Include <config.h>, not "config.h".
23426         * tests/test-getaddrinfo.c: Likewise.
23427
23428 2008-01-25  Simon Josefsson  <simon@josefsson.org>
23429
23430         * modules/sockets-tests: New file.
23431
23432 2008-01-24  Simon Josefsson  <simon@josefsson.org>
23433
23434         * modules/sockets: New module, can be used to call WSA_Startup and
23435         WSA_Cleanup when needed.
23436
23437         * lib/sockets.h, lib/sockets.c: New files.
23438
23439         * m4/sockets.m4: New file.
23440
23441         * tests/test-sockets.c: New file.
23442
23443 2008-01-19  Bruno Haible  <bruno@clisp.org>
23444
23445         * doc/posix-headers: Renamed from doc/headers.
23446         * doc/posix-functions: Renamed from doc/functions.
23447         * doc/gnulib.texi: Update.
23448
23449 2008-01-19  Bruno Haible  <bruno@clisp.org>
23450
23451         * doc/glibc-functions/strcasestr.texi: Include contents of
23452         doc/functions/strcasestr.texi, fixing the list of platforms.
23453         * doc/functions/strcasestr.texi: Remove file.
23454
23455 2008-01-19  Bruno Haible  <bruno@clisp.org>
23456
23457         * doc/glibc-functions/memmem.texi: Include contents of
23458         doc/functions/memmem.texi.
23459         * doc/functions/memmem.texi: Remove file.
23460
23461 2008-01-18  Bruno Haible  <bruno@clisp.org>
23462
23463         * doc/glibc-functions/*.texi: New files.
23464         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
23465         to use the new files.
23466
23467 2008-01-17  Bruno Haible  <bruno@clisp.org>
23468
23469         * tests/test-gethostname.c (main): Fix printf statement.
23470
23471 2008-01-17  Simon Josefsson  <simon@josefsson.org>
23472
23473         * modules/gethostname-tests: New file.
23474
23475         * tests/test-gethostname.c: New file.
23476
23477 2008-01-17  Simon Josefsson  <simon@josefsson.org>
23478
23479         * lib/gethostname.c: Include string.h unconditionally, strncpy is
23480         used by the UNAME case.  Reported by Bruno Haible
23481         <bruno@clisp.org>.
23482
23483 2008-01-17  Eric Blake  <ebb9@byu.net>
23484
23485         Convert c-strcasestr to be more efficient.
23486         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
23487         (Depends-on): Add c-strcase, remove malloca, strnlen.
23488         * tests/test-c-strcasestr.c (main): Enhance test.
23489         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
23490
23491 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
23492
23493         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
23494         Use it in creating po/Makevars.
23495
23496 2008-01-15  Simon Josefsson  <simon@josefsson.org>
23497
23498         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
23499         Applications that requires it should initialize libgcrypt
23500         manually.
23501
23502 2008-01-16  Simon Josefsson  <simon@josefsson.org>
23503
23504         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
23505
23506 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
23507
23508         Fix problem with getdate on mingw32 reported by Simon Josefsson
23509         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
23510         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
23511         tzname", when deciding whether to declare tzname.
23512         * lib/strftime.c (tzname): Likewise.
23513
23514 2008-01-15  Bruno Haible  <bruno@clisp.org>
23515
23516         Work around a MacOS X 10.5 bug in frexpl().
23517         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
23518         * doc/functions/frexpl.texi: Document the bug.
23519         Reported by Elias Pipping <pipping@gentoo.org>.
23520
23521 2008-01-14  Eric Blake  <ebb9@byu.net>
23522
23523         Touch up previous patch.
23524         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
23525         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
23526
23527         Convert strcasestr module to use Two-Way algorithm.
23528         * modules/strcasestr-simple: New module, based on the old
23529         strcasestr, but with Two-Way rather than KMP.
23530         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
23531         * lib/string.in.h (rpl_strcasestr): Declare.
23532         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
23533         performance.
23534         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
23535         * modules/string (Makefile.am): Support strcasestr.
23536         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
23537         * modules/strcasestr-tests (Depends-on): Check for alarm.
23538         * tests/test-strcasestr.c: Augment test.
23539         * lib/str-two-way.h: Clean up stray macro.
23540         * NEWS: Document new module.
23541         * MODULES.html.sh (string handling): Likewise.
23542         * doc/functions/strcasestr.texi: New file.
23543         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
23544         here, since it is not a POSIX function.
23545
23546 2008-01-14  Colin Watson  <cjwatson@debian.org>
23547             Bruno Haible  <bruno@clisp.org>
23548
23549         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
23550         works fine; if not, set REPLACE_STRSIGNAL.
23551         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
23552         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
23553         REPLACE_STRSIGNAL.
23554         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
23555         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
23556         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
23557
23558 2008-01-14  Bruno Haible  <bruno@clisp.org>
23559
23560         * modules/strsignal (Include): Change to <string.h>.
23561
23562 2008-01-14  Colin Watson  <cjwatson@debian.org>
23563
23564         * modules/argp (Notice): Add a notice recommending to change
23565         XGETTEXT_OPTIONS.
23566         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
23567
23568 2008-01-13  Colin Watson  <cjwatson@debian.org>
23569
23570         * modules/strsignal-tests: New file.
23571         * tests/test-strsignal.c: New file.
23572
23573         * lib/strsignal.c: New file, from glibc with modifications.
23574         * lib/siglist.h: New file, from glibc with modifications.
23575         * lib/string.in.h (strsignal): New declaration.
23576         * m4/strsignal.m4: New file.
23577         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
23578         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
23579         * modules/strsignal: New file.
23580         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
23581         HAVE_DECL_STRSIGNAL.
23582
23583 2008-01-13  Bruno Haible  <bruno@clisp.org>
23584
23585         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
23586         locale encoding is not ASCII. Needed for OpenBSD 4.0.
23587         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23588         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23589
23590 2008-01-13  Bruno Haible  <bruno@clisp.org>
23591
23592         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
23593         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
23594         * lib/argp.h (__attribute__): Likewise.
23595         * lib/c-stack.c (__attribute__): Likewise.
23596         * lib/error.h (__attribute__): Likewise.
23597         * lib/fts.c (__attribute__): Likewise.
23598         * lib/openat.h (__attribute__): Likewise.
23599         * lib/stdio.in.h (__attribute__): Likewise.
23600         * lib/string.in.h (__attribute__): Likewise.
23601         * lib/utimens.c (__attribute__): Likewise.
23602         * lib/vasnprintf.h (__attribute__): Likewise.
23603         * lib/xalloc.h (__attribute__): Likewise.
23604         * lib/xprintf.h (__attribute__): Likewise.
23605         * lib/xstrtol.h (__attribute__): Likewise.
23606         * lib/xvasprintf.h (__attribute__): Likewise.
23607
23608 2008-01-12  Bruno Haible  <bruno@clisp.org>
23609
23610         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
23611         * doc/glibc-headers/a.out.texi: New file.
23612         * doc/glibc-headers/aliases.texi: New file.
23613         * doc/glibc-headers/alloca.texi: New file.
23614         * doc/glibc-headers/ar.texi: New file.
23615         * doc/glibc-headers/argp.texi: New file.
23616         * doc/glibc-headers/argz.texi: New file.
23617         * doc/glibc-headers/byteswap.texi: New file.
23618         * doc/glibc-headers/crypt.texi: New file.
23619         * doc/glibc-headers/endian.texi: New file.
23620         * doc/glibc-headers/envz.texi: New file.
23621         * doc/glibc-headers/err.texi: New file.
23622         * doc/glibc-headers/error.texi: New file.
23623         * doc/glibc-headers/execinfo.texi: New file.
23624         * doc/glibc-headers/fpu_control.texi: New file.
23625         * doc/glibc-headers/fstab.texi: New file.
23626         * doc/glibc-headers/fts.texi: New file.
23627         * doc/glibc-headers/getopt.texi: New file.
23628         * doc/glibc-headers/ieee754.texi: New file.
23629         * doc/glibc-headers/ifaddrs.texi: New file.
23630         * doc/glibc-headers/libintl.texi: New file.
23631         * doc/glibc-headers/mcheck.texi: New file.
23632         * doc/glibc-headers/mntent.texi: New file.
23633         * doc/glibc-headers/obstack.texi: New file.
23634         * doc/glibc-headers/paths.texi: New file.
23635         * doc/glibc-headers/printf.texi: New file.
23636         * doc/glibc-headers/pty.texi: New file.
23637         * doc/glibc-headers/resolv.texi: New file.
23638         * doc/glibc-headers/shadow.texi: New file.
23639         * doc/glibc-headers/sysexits.texi: New file.
23640         * doc/glibc-headers/ttyent.texi: New file.
23641
23642 2008-01-12  Jim Meyering  <meyering@redhat.com>
23643
23644         announce-gen: emit Gnulib's git-based version string.
23645         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
23646         New option --gnulib-version=V, where V is expected to be
23647         the output of running git describe in the gnulib directory.
23648         (get_tool_versions): Request feedback on xdelta.  I suspect it's
23649         not useful, and plan to stop publishing an xdelta file with each
23650         coreutils release.
23651
23652         * build-aux/announce-gen: Also check for lzma-compressed files.
23653
23654 2008-01-11  Bruno Haible  <bruno@clisp.org>
23655
23656         * tests/test-memmem.c (main): Increase maximum allowed time.
23657         * tests/test-strstr.c (main): Likewise.
23658
23659 2008-01-11  Bruno Haible  <bruno@clisp.org>
23660
23661         * doc/functions/memmem.texi: Add more precisions about platforms.
23662         * doc/functions/strstr.texi: Likewise.
23663
23664 2008-01-10  Eric Blake  <ebb9@byu.net>
23665
23666         * m4/strstr.m4: Delete cruft from copy-n-paste.
23667         Reported by Bruno Haible.
23668
23669 2008-01-10  Bruno Haible  <bruno@clisp.org>
23670
23671         Make c-strstr rely on strstr.
23672         * lib/c-strstr.c: Don't include str-kmp.h.
23673         (c_strstr): Define in terms of strstr.
23674         * modules/c-strstr (Files): Remove lib/str-kmp.h.
23675         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
23676
23677 2008-01-10  Bruno Haible  <bruno@clisp.org>
23678
23679         * doc/gnulib.texi (String Functions in C Locale): New section.
23680         * doc/c-ctype.texi: New file.
23681         * doc/c-strcase.texi: New file.
23682         * doc/c-strcaseeq.texi: New file.
23683         * doc/c-strcasestr.texi: New file.
23684         * doc/c-strstr.texi: New file.
23685         * doc/c-strtod.texi: New file.
23686         * doc/c-strtold.texi: New file.
23687
23688 2008-01-10  Eric Blake  <ebb9@byu.net>
23689
23690         * lib/relocatable.h: Fix a comment.
23691
23692 2008-01-10  Eric Blake  <ebb9@byu.net>
23693
23694         Share two-way algorithm.
23695         * lib/str-two-way.h: New file, merged from...
23696         * lib/memmem.c: ...here...
23697         * lib/strstr.c: ...and here.
23698         * modules/memmem (Files): Use it.
23699         * modules/strstr (Files): Likewise.
23700
23701         Avoid quadratic strstr implementations.
23702         * lib/strstr.c: New file.
23703         * m4/strstr.m4: Likewise.
23704         * modules/strstr: Likewise.
23705         * modules/strstr-tests: Likewise.
23706         * tests/test-strstr.c: Likewise.
23707         * lib/string.in.h (rpl_strstr): Declare.
23708         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
23709         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
23710         * modules/string (Makefile.am): Likewise.
23711         * MODULES.html.sh (string handling): Mention new module.
23712         * doc/functions/strstr.texi (strstr): Document the bug.
23713
23714 2008-01-10  Bruno Haible  <bruno@clisp.org>
23715
23716         * lib/relocatable.h (relocate): State whether result is freshly
23717         allocated or not.
23718         * lib/relocatable.c (relocate): Return a freshly allocated string
23719         instead of a pointer to a privately held string.
23720         Reported by Sylvain Beucler <beuc@gnu.org>.
23721
23722 2008-01-10  Colin Watson  <cjwatson@debian.org>
23723
23724         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
23725         s/S_ISNLK/S_ISLNK/.
23726
23727 2008-01-09  Bruno Haible  <bruno@clisp.org>
23728
23729         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
23730         and other files.
23731         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
23732         if it's only a guess.
23733         * modules/memmem: Simplify by depending on memmem-simple.
23734
23735 2008-01-09  Bruno Haible  <bruno@clisp.org>
23736
23737         Work around OpenBSD 4.0 tdelete() bug.
23738         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
23739         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
23740         macros and don't redefine the enum values.
23741         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
23742         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
23743         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
23744
23745 2008-01-09  Bruno Haible  <bruno@clisp.org>
23746
23747         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
23748         (main): Don't perform the tests if setlocale did not install a UTF-8
23749         locale. Needed on OpenBSD 4.0.
23750         * modules/wcwidth-tests (Depends-on): Add localcharset.
23751
23752 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23753
23754         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
23755         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
23756         * NEWS: announce this.
23757         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
23758
23759 2008-01-09  Simon Josefsson  <simon@josefsson.org>
23760         and Eric Blake  <ebb9@byu.net>
23761
23762         Add memmem-simple module.
23763         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
23764         (gl_FUNC_MEMMEM): Separate performance from presence checks.
23765         * modules/memmem-simple: New file.
23766         * modules/memmem (Description): Tweak.
23767         * MODULES.html.sh (string handling): Mention new module.
23768         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
23769         addressed by memmem-simple.
23770         * NEWS: Document the difference.
23771
23772 2008-01-09  Eric Blake  <ebb9@byu.net>
23773
23774         Give gcc some memmem optimization hints.
23775         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
23776         (strcasestr): Declare as pure.
23777         * modules/memmem (Maintainer): Claim my implementation.
23778
23779 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23780
23781         Support AIX 6.1 and higher.
23782         * build-aux/config.libpath: Likewise.
23783         * build-aux/config.rpath: Likewise.
23784
23785 2008-01-08  Jim Meyering  <meyering@redhat.com>
23786             Bruno Haible  <bruno@clisp.org>
23787
23788         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
23789         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
23790         Reported by Peter Fales in
23791         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
23792
23793 2008-01-08  Bruno Haible  <bruno@clisp.org>
23794
23795         * modules/unictype/category-of (Depends-on): Add
23796         unictype/category-none.
23797         * modules/unictype/category-and-tests (Depends-on): Add
23798         unictype/category-{L,N,Lu,Nd}.
23799         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
23800         * modules/unictype/category-or-tests (Depends-on): Add
23801         unictype/category-{L,N}.
23802         * modules/unictype/category-name-tests (Depends-on): Add
23803         unictype/category-{Z,Nl}.
23804         Reported by Simon Josefsson.
23805
23806 2008-01-08  Bruno Haible  <bruno@clisp.org>
23807
23808         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
23809         convention better.
23810         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
23811         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
23812         Reported by Peter Miller <millerp@canb.auug.org.au>.
23813
23814 2008-01-08  Eric Blake  <ebb9@byu.net>
23815
23816         Rewrite memmem to guarantee linear complexity without malloc.
23817         * lib/memmem.c (memmem): Use Two-Way rather than
23818         Knuth-Morris-Pratt, to allow O(1) space usage.
23819         (critical_factorization, two_way_short_needle)
23820         (two_way_long_needle): New functions.
23821         (knuth_morris_pratt): Delete.
23822         * modules/memmem (Depends-on): No longer need malloca or stdbool.
23823         Add stdint.
23824         * tests/test-memmem.c (main): Add tests for periodic needle and
23825         sublinear performance.
23826         * doc/functions/memmem.texi (memmem): Document other deficiencies
23827         in cygwin and older glibc.
23828
23829 2008-01-08  Bruno Haible  <bruno@clisp.org>
23830
23831         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
23832         augmentation.
23833
23834 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
23835
23836         Add a configure time option: --disable-acl.
23837         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
23838         AC_ARG_ENABLE(acl).
23839
23840 2008-01-06  Simon Josefsson  <simon@josefsson.org>
23841
23842         * tests/test-localename.c: Don't include obsolete "setenv.h".
23843
23844         * modules/localename-tests (Depends-on): Need unsetenv.
23845
23846 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23847
23848         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
23849
23850 2008-01-06  Colin Watson  <cjwatson@debian.org>
23851
23852         * users.txt: Add man-db.
23853
23854 2008-01-07  Bruno Haible  <bruno@clisp.org>
23855
23856         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
23857         previous section name.
23858
23859 2008-01-07  Bruno Haible  <bruno@clisp.org>
23860
23861         * lib/progname.c (set_program_name): Don't strip off a leading
23862         "lt-" prefix outside a .libs directory.
23863         Suggested by Paul Eggert.
23864
23865 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
23866             Bruno Haible  <bruno@clisp.org>
23867
23868         Improve memory cleanup in 'relocatable' module.
23869         * lib/relocatable.h (compute_curr_prefix): Change return type to
23870         'char *'.
23871         * lib/relocatable.c (compute_curr_prefix): Change return type to
23872         'char *'. Free curr_installdir after use.
23873         (relocate): Free curr_prefix_better after use.
23874         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
23875
23876 2008-01-01  Bruno Haible  <bruno@clisp.org>
23877
23878         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
23879         failure on older glibc systems.
23880         Reported by Peter Fales <psfales@alcatel-lucent.com>.
23881
23882 2008-01-05  Eric Blake  <ebb9@byu.net>
23883
23884         Avoid quadratic system memmem.
23885         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
23886         Reported by Ralf Wildenhues.
23887
23888         Fix memmem test for mingw.
23889         * modules/memmem-tests (configure.ac): Check for alarm.
23890         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
23891         it.
23892         * doc/functions/memmem.texi: New file.
23893         * doc/gnulib.texi (Function Substitutes): Add memmem.
23894         Reported by Bruno Haible.
23895
23896 2008-01-04  Bruno Haible  <bruno@clisp.org>
23897
23898         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
23899         Require gl_HEADER_STRINGS_H_DEFAULTS, not
23900         gl_HEADER_STRING_H_DEFAULTS.
23901
23902 2008-01-04  Eric Blake  <ebb9@byu.net>
23903
23904         Shorten duration of memmem test.
23905         * tests/test-memmem.c (main): Use alarm to declare failure if test
23906         is taking too long.
23907         Reported by Ralf Wildenhues.
23908
23909 2007-12-21  Simon Josefsson  <simon@josefsson.org>
23910
23911         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
23912         string, needed by strerror.
23913
23914 2008-01-03  Colin Watson  <cjwatson@debian.org>
23915             Bruno Haible  <bruno@clisp.org>
23916
23917         * doc/gnulib-tool.texi (Localization): New section.
23918
23919 2008-01-02  Bruno Haible  <bruno@clisp.org>
23920
23921         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
23922         variables to 'unsigned char *' type.
23923         Reported by Paul Eggert.
23924
23925 2008-01-02  Jim Meyering  <jim@meyering.net>
23926
23927         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
23928
23929 2007-12-31  Jim Meyering  <jim@meyering.net>
23930
23931         Avoid use of private FTS type name.
23932         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
23933
23934 2007-12-30  Karl Berry  <karl@gnu.org>
23935
23936         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
23937         work around defect in Texinfo and/or the standalone Info browser.
23938
23939 2007-12-30  Bruno Haible  <bruno@clisp.org>
23940
23941         Unify 5 copies of the KMP code.
23942         * lib/str-kmp.h: New file.
23943         * lib/c-strcasestr.c: Include str-kmp.h.
23944         (knuth_morris_pratt): Remove function.
23945         (c_strcasestr): Update.
23946         * lib/c-strstr.c: Include str-kmp.h.
23947         (knuth_morris_pratt): Remove function.
23948         (c_strcasestr): Update.
23949         * lib/mbscasestr.c: Include str-kmp.h.
23950         (knuth_morris_pratt_unibyte): Remove function.
23951         * lib/mbsstr.c: Include str-kmp.h.
23952         (knuth_morris_pratt_unibyte): Remove function.
23953         * lib/strcasestr.c: Include str-kmp.h.
23954         (knuth_morris_pratt): Remove function.
23955         (strcasestr): Update.
23956         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
23957         * modules/c-strstr (Files): Likewise.
23958         * modules/mbscasestr (Files): Likewise.
23959         * modules/mbsstr (Files): Likewise.
23960         * modules/strcasestr (Files): Likewise.
23961         Suggested by Paul Eggert.
23962
23963 2007-12-30  Bruno Haible  <bruno@clisp.org>
23964
23965         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
23966         defined.
23967
23968 2007-12-30  Bruno Haible  <bruno@clisp.org>
23969
23970         * lib/xmalloca.h: Include xalloc.h.
23971         (xnmalloca): New macro.
23972
23973 2007-12-30  Bruno Haible  <bruno@clisp.org>
23974
23975         * lib/malloca.h (nmalloca): New macro.
23976         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
23977         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
23978         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
23979         knuth_morris_pratt_multibyte): Likewise.
23980         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
23981         knuth_morris_pratt_multibyte): Likewise.
23982         * lib/memmem.c (knuth_morris_pratt): Likewise.
23983         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
23984
23985 2007-12-25  Bruno Haible  <bruno@clisp.org>
23986
23987         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
23988         * lib/glob.c: Don't include openat.h.
23989         (link_exists2_p): Add back the code that deals with the
23990         !GLOB_ALTDIRFUNC case.
23991         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
23992         let it do the filename concatenation.
23993         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
23994         * modules/glob (Depends-on): Remove openat.
23995
23996 2007-12-31  Bruno Haible  <bruno@clisp.org>
23997
23998         * modules/dirfd (License): Change to LGPLv2+.
23999         Approved by Jim Meyering.
24000
24001 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
24002
24003         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
24004         when multiplying M by sizeof (size_t).
24005
24006 2007-12-10  Martin Lambers  <marlam@marlam.de>
24007
24008         Override getpagesize on mingw.
24009         * lib/getpagesize.c: New file.
24010         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
24011         * modules/getpagesize (Files): Add lib/getpagesize.c.
24012         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
24013         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
24014         REPLACE_GETPAGESIZE.
24015         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
24016
24017 2007-12-25  Bruno Haible  <bruno@clisp.org>
24018
24019         * modules/localcharset (Notice): New field.
24020         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
24021         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
24022
24023 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
24024             Bruno Haible  <bruno@clisp.org>
24025
24026         Avoid using the syntax symbol() in formatted documentation.
24027         * MODULES.html.sh (func_module): When replacing symbol() with a
24028         hyperlink, remove the parentheses. Show an error if some remain.
24029         Recognize and render the '...' syntax.
24030         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
24031         Rework. Add paragraph about GCC's inlining.
24032         * doc/alloca.texi: Likewise.
24033         * doc/error.texi: Remove parentheses from symbol reference.
24034         * doc/gnulib-intro.texi: Likewise.
24035         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
24036         * modules/fnmatch (Description): Reword to say "the ... function".
24037         * modules/full-read (Description): Likewise.
24038         * modules/full-write (Description): Likewise.
24039         * modules/safe-read (Description): Likewise.
24040         * modules/safe-write (Description): Likewise.
24041         * modules/strchrnul (Description): Likewise.
24042         * modules/trim (Description): Likewise.
24043         * modules/error (Description): Remove parentheses from symbol
24044         references.
24045         * modules/verror (Description): Likewise.
24046         Reported by Karl Berry.
24047
24048 2007-12-25  Bruno Haible  <bruno@clisp.org>
24049
24050         Fixup after 2007-10-16 commit.
24051         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
24052
24053 2007-12-24  Bruno Haible  <bruno@clisp.org>
24054
24055         Make --enable-relocatable work with DESTDIR.
24056         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
24057         to compute installdir from destprog.
24058         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
24059         also set the RELOC_DESTDIR variable.
24060         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
24061
24062 2007-12-24  Bruno Haible  <bruno@clisp.org>
24063
24064         Fix link error due to xalloc_die().
24065         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
24066         of xreadlink.
24067         * lib/relocwrapper.c: Update comments.
24068         * build-aux/install-reloc: Remove xreadlink.c from file list.
24069         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
24070         xreadlink.c.
24071         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
24072
24073 2007-12-24  Bruno Haible  <bruno@clisp.org>
24074
24075         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
24076         * lib/setenv.h: Remove file.
24077         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
24078         lib/setenv.h.
24079         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
24080         (Depends-on): Add stdlib.
24081         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
24082         gl_FUNC_UNSETENV.
24083         (Include): Replace setenv.h with <stdlib.h>.
24084         * modules/unsetenv: New file.
24085         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
24086         * lib/unsetenv.c: Include <stdlib.h> first.
24087         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
24088         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
24089         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
24090         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
24091         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
24092         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
24093         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
24094         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
24095         * doc/functions/unsetenv.texi: Update.
24096         * modules/xsetenv (Depends-on): Add unsetenv.
24097         * modules/getdate (Depends-on): Likewise.
24098         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
24099         * lib/xsetenv.c: Don't include setenv.h.
24100         * lib/getdate.y: Likewise.
24101         * lib/relocwrapper.c: Likewise.
24102         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
24103         (Depends-on): Add stdlib.
24104         * NEWS: Mention the changes.
24105         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
24106
24107 2007-12-23  Bruno Haible  <bruno@clisp.org>
24108
24109         * lib/memmem.c (memmem): Use lowercase variable names. Tab
24110         indentation.
24111
24112 2007-12-23  Bruno Haible  <bruno@clisp.org>
24113
24114         * lib/c-strcasestr.c: Add more comments.
24115         * lib/c-strstr.c: Likewise.
24116         * lib/mbscasestr.c: Likewise.
24117         * lib/mbsstr.c: Likewise.
24118         * lib/strcasestr.c: Likewise.
24119         * lib/memmem.c: Likewise.
24120
24121 2007-12-23  Bruno Haible  <bruno@clisp.org>
24122
24123         * tests/test-memmem.c: Include <string.h> first.
24124
24125 2007-12-22  Bruno Haible  <bruno@clisp.org>
24126
24127         * gnulib-tool (func_create_testdir): Change $auxdir while generating
24128         the contents of $testsbase.
24129         Reported by Ralf Wildenhues.
24130
24131 2007-12-22  Bruno Haible  <bruno@clisp.org>
24132
24133         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
24134         two variables local_ldadd_before, local_ldadd_last.
24135
24136 2007-12-20  Eric Blake  <ebb9@byu.net>
24137
24138         Work around circular library issue when cross-compiling.
24139         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
24140         that progname.o does not need to pull in rpl_memcmp.
24141
24142 2007-12-19  Eric Blake  <ebb9@byu.net>
24143
24144         Fix memmem to avoid O(n^2) worst-case complexity.
24145         * lib/memmem.c (knuth_morris_pratt): New function.
24146         (memmem): Use it if first few naive iterations fail.
24147         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
24148         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
24149         * modules/memchr (License): Likewise.
24150         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
24151         malloca.
24152         * tests/test-memmem.c: Rewrite, borrowing ideas from
24153         test-mbsstr1.c; the old version wouldn't even compile!
24154         * modules/memmem-tests: New file.
24155         * lib/string.in.h (rpl_memmem): Add declaration.
24156         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
24157         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
24158         REPLACE_MEMMEM.
24159
24160 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
24161
24162         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
24163         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
24164         before any system include files, and undef after them all.  This
24165         should fix a problem on VMS reported by John E. Malmberg in
24166         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
24167
24168 2007-12-17  Eric Blake  <ebb9@byu.net>
24169
24170         Revert addition of verify, for BSD/OS.
24171         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
24172         can't handle large files, for the sake of obsolete platforms.
24173         * modules/fseeko (Depends-on): Remove verify.
24174         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
24175         * doc/functions/ftello.texi (ftello): Likewise.
24176         * doc/functions/fgetpos.texi (fgetpos): Likewise.
24177         Reported by Larry Jones.
24178
24179 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
24180
24181         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
24182         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
24183
24184 2007-12-17  Jim Meyering  <meyering@redhat.com>
24185
24186         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
24187         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
24188         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
24189         * modules/getcwd (Depends-on): Add openat.
24190         Reported by Petr Salinger.
24191
24192 2007-12-17  Bruno Haible  <bruno@clisp.org>
24193
24194         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
24195         avoid a segmentation fault of the configure test on x86_64 systems.
24196
24197 2007-12-15  Jim Meyering  <meyering@redhat.com>
24198
24199         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
24200
24201 2007-12-13  Eric Blake  <ebb9@byu.net>
24202
24203         Another fseek test.
24204         * tests/test-fseek.c (main): Also test ungetc handling.
24205         * tests/test-fseeko.c (main): Likewise.
24206         * modules/fseeko (Depends-on): Add verify.
24207         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
24208         large.
24209         Reported by Larry Jones.
24210
24211         Fix fseeko on mingw.
24212         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
24213         seek.
24214
24215         Beef up fseek tests.
24216         * tests/test-fseek.c (main): Also test eof handling.
24217         * tests/test-fseeko.c (main): Likewise.
24218         Reported by Larry Jones.
24219
24220 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
24221
24222         Fix fseeko on BSD-based platforms.
24223         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
24224         successful seek.
24225
24226 2007-12-12  Eric Blake  <ebb9@byu.net>
24227
24228         Allow circular dependency of separate libtests.a
24229         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
24230         when use_libtests.
24231
24232 2007-12-11  Eric Blake  <ebb9@byu.net>
24233
24234         Fix bug with -0.0L in previous patch.
24235         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
24236         * tests/test-isnan.c (main): Also test on zeroes.
24237         * tests/test-isnanf.c (main): Likewise.
24238         * tests/test-isnanl.h (main): Likewise.
24239
24240         Detect pseudo-denormals on x86 even when cross-compiling.
24241         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
24242         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
24243         invalid bit patterns that happen to satisfy ==.
24244
24245         Avoid link failures with separate libtests.a.
24246         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
24247         last, to satisfy circular dependencies.
24248
24249 2007-12-11  Eric Blake  <ebb9@byu.net>
24250         and Bruno Haible  <bruno@clisp.org>
24251
24252         Fix OpenBSD 4.0 <float.h> handling of long double.
24253         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
24254         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
24255         * doc/headers/float.texi (float.h): Document OpenBSD bug.
24256
24257 2007-12-11  Jim Meyering  <meyering@redhat.com>
24258
24259         * users.txt: Add libvirt.
24260
24261         Support versions of autoconf prior to 2.59c.
24262         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
24263         if it is not already defined.
24264
24265 2007-12-09  Bruno Haible  <bruno@clisp.org>
24266
24267         Let 'gnulib-tool --import' collect sources needed for the tests in
24268         tests/ rather than in lib/.
24269         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
24270         argument. If true, add rules to generate libtests.a, and put libtests.a
24271         into $(LDADD). Consider source files in subdirectories and set
24272         uses_subdirs.
24273         (func_emit_initmacro_start, func_emit_initmacro_end,
24274         func_emit_initmacro_done): Pass all arguments explicitly.
24275         (func_import): Determine two module lists main_modules,
24276         testsrelated_modules. Determine use_libtests. Determine two variables
24277         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
24278         instead of just sed_transform_lib_file. Determine two variables
24279         main_files and testsrelated_files. Compute 'files' as the union of
24280         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
24281         func_add_or_update. In the generated gnulib-comp.m4, collect the
24282         object files for tests/ in different variables than those for lib/.
24283         Substitute LIBTESTS_LIBDEPS.
24284         (func_create_testdir): Combine the uses_subdirs results from
24285         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
24286
24287 2007-12-09  Bruno Haible  <bruno@clisp.org>
24288
24289         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
24290         the build-aux directory.
24291
24292 2007-12-09  Bruno Haible  <bruno@clisp.org>
24293
24294         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
24295         introduced on 2006-09-09.
24296
24297 2007-12-07  Jim Meyering  <meyering@redhat.com>
24298
24299         Let these macros work also with autoconf-2.59.
24300         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
24301         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
24302         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
24303
24304 2007-12-06  Jim Meyering  <meyering@redhat.com>
24305
24306         Avoid a configure-time syntax error in gl_FUNC_ACL.
24307         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
24308         function in each branch, before testing the cache variable.
24309
24310 2007-12-04  Eric Blake  <ebb9@byu.net>
24311
24312         Make scripts executable.
24313         * build-aux/config.guess: Add execute permissions.
24314         * build-aux/config.sub: Likewise.
24315         * build-aux/gendocs.sh: Likewise.
24316
24317         Fix frexp on mingw.
24318         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
24319         cross-compiling.
24320         * doc/functions/frexp.texi (frexp): Document the bug.
24321
24322         Make cygwin fseeko check more reliable.
24323         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
24324         version numbers, rather than unrelated feature check.
24325         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
24326         * doc/functions/ftello.texi (ftello): Likewise.
24327         Reported by Bruno Haible.
24328
24329         * m4/strerror.m4: Bump version number.
24330
24331 2007-12-03  Bruno Haible  <bruno@clisp.org>
24332
24333         * doc/functions/mprotect.texi: Mention the mingw problem.
24334
24335 2007-12-03  Eric Blake  <ebb9@byu.net>
24336
24337         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
24338         REPLACE_STRERROR is initialized before this macro.
24339
24340 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
24341
24342         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
24343         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
24344         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
24345         put -lsec in even for programs other than 'ls'.  This fixes a problem
24346         for gettext reported by Bruno Haible in
24347         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
24348         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
24349         Add support for Solaris 10.  This isn't efficient, but should get the
24350         job done for now.
24351
24352 2007-12-03  James Youngman  <jay@gnu.org>
24353
24354         * doc/regexprops-generic.texi: change "an close-group" to "a
24355         close-group" and "illegal" to "not allowed".
24356
24357 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24358
24359         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
24360         pr_byname.h. Needed for the rare case when the maintainer has done
24361         "make maintainer-clean" in the source directory and then attempts a
24362         build outside the source directory.
24363         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
24364         scripts_byname.h.
24365
24366 2007-12-02  Martin Lambers <marlam@marlam.de>
24367             Bruno Haible  <bruno@clisp.org>
24368
24369         * lib/getpagesize.h: Remove file.
24370         * lib/unistd.in.h: Include declaration of getpagesize here.
24371         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
24372         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
24373         HAVE_SYS_PARAM_H.
24374         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
24375         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
24376         * modules/getpagesize (Files): Remove lib/getpagesize.h.
24377         (Depends-on): Add unistd.
24378         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
24379         (Include): Use <unistd.h> instead of getpagesize.h.
24380         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
24381         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
24382         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
24383         gl_GETPAGESIZE invocation, already handled by module dependency.
24384         * lib/pagealign_alloc.c: Don't include getpagesize.h.
24385
24386 2007-12-02  Bruno Haible  <bruno@clisp.org>
24387
24388         * modules/strings-tests: New file.
24389         * tests/test-strings.c: New file.
24390
24391         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
24392         * lib/strings.in.h: New file.
24393         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
24394         * m4/strings_h.m4: New file.
24395         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
24396         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
24397         * modules/strings: New file.
24398         * modules/string (Makefile.am): Update.
24399         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
24400         Reported by Karl Berry.
24401
24402 2007-12-01  Eric Blake  <ebb9@byu.net>
24403
24404         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
24405         accomodate fix in cygwin 1.5.25.
24406
24407 2007-12-01  Jim Meyering  <meyering@redhat.com>
24408
24409         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
24410         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
24411         that would inhibit utf8-optimization of a regexp containing line-
24412         or buffer-anchors, e.g., `^', `$'.
24413
24414 2007-11-30  Bruno Haible  <bruno@clisp.org>
24415
24416         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
24417         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
24418         glthread_recursive_lock_init.
24419         * lib/lock.c (glthread_recursive_lock_init)
24420         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
24421         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
24422
24423 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
24424
24425         New function qset_acl, like set_acl but with syscall semantics.
24426         * lib/acl.h (qset_acl): New decl.
24427         * lib/acl.c (qset_acl): New function.
24428         (set_acl): Use new function.  Use more-consistent diagnostics.
24429
24430 2007-11-28  Jim Meyering  <meyering@redhat.com>
24431
24432         * modules/physmem (License): Change from GPL to LGPLv2+.
24433
24434 2007-11-26  Bruno Haible  <bruno@clisp.org>
24435
24436         * lib/vasnprintf.c (decode_long_double): Don't abort if the
24437         'long double' type has excess precision.
24438         Reported by Jim Meyering in
24439         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
24440
24441 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24442
24443         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
24444         Sync from <http://gnu.org/licenses>.
24445         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
24446         with license text from same location.
24447         * doc/maintain.texi, doc/standards.texi:  Sync from
24448         <http://savannah.gnu.org/projects/gnustandards>.
24449
24450 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
24451         and Jim Meyering  <meyering@redhat.com>
24452
24453         Adjust getdate' grammar to accept a slightly more regular language.
24454         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
24455         Before, the former was rejected.
24456         * lib/getdate.y (digits_to_date_time): New function, factored
24457         out of ...
24458         (number): ...here.  Just call digits_to_date_time.
24459         (hybrid): New non-terminal to handle an <unsigned number,
24460         signed relative offset> sequence consistently.
24461
24462 2007-11-18  Jim Meyering  <meyering@redhat.com>
24463
24464         Pull my changes from coreutils:
24465         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
24466         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
24467         use of $gnulib_tool_option_extras, so that it's separated from the
24468         preceding argument.
24469
24470         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
24471         * build-aux/bootstrap (cp_mark_as_generated): Create any required
24472         parent destination directories before copying a file into place.
24473
24474 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
24475
24476         bootstrap: work also with 4-argument variant of AC_INIT
24477         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
24478
24479 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
24480
24481         Port test-getaddrinfo to Solaris.
24482         Problem reported by Bruno Haible in
24483         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
24484         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
24485         explanation of setting 'hints'.
24486         Don't reject an implementation merely because it returns EAI_SERVICE.
24487         (EAI_SERVICE): Define to 0 if not defined.
24488
24489 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
24490
24491         The license of gnu-make and posix-shell is now "GPLed build tool".
24492         * modules/gnu-make (License): Likewise.
24493         * modules/posix-shell (License): Likewise.
24494
24495         New module posix-shell, for determining a POSIX shell
24496         or perhaps something that is close enough to a POSIX shell.
24497         * m4/posix-shell.m4: New file.
24498         * modules/posix-shell: New file.
24499
24500         * MODULES.html.sh: Mention new module.
24501
24502         New module gnu-make, for determining whether we're using GNU Make.
24503         * m4/gnu-make.m4: New file.
24504         * modules/gnu-make: New file.
24505         * MODULES.html.sh: Mention new module.
24506
24507 2007-11-14  Jim Meyering  <meyering@redhat.com>
24508
24509         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
24510         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
24511         use this macro to create a function _definition_.
24512         Remove useless "#undef ARGMATCH_DIE".
24513
24514 2007-11-14  Bruno Haible  <bruno@clisp.org>
24515
24516         * lib/config.charset: Update for OpenBSD 4.1.
24517         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
24518
24519 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
24520
24521         Document 64-bit #if problems in stdint.texi.
24522         * doc/headers/stdint.texi (stdint.h): Mention problems with
24523         64-bit-#if, and how to work around them.
24524
24525         Don't insist on 'long long int' support in the preprocessor.  It
24526         breaks too many things.  For example, PRIdMAX still uses a 'long
24527         long int' format with the latest Sun compiler, even though
24528         HAVE_LONG_LONG_INT isn't defined due to that compiler's
24529         preprocessor problem.  This causes the latest coreutils to dump
24530         core on Solaris 10 sparc with the Sun C compiler.
24531         Instead, fix the 2007-10-16 problem in a different way, by evaluating
24532         the troublesome expressions at configure-time, not at #if-time.
24533         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
24534         preprocessor.
24535         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
24536         compile-time C checks, done at 'configure'-time.
24537         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
24538         * modules/inttypes (Makefile): Substitute the new symbols that
24539         gl_INTTYPES_H now generates.
24540         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
24541
24542 2007-11-12  Bruno Haible  <bruno@clisp.org>
24543
24544         Tests for Unicode character classification functions.
24545
24546         * modules/unictype/bidicategory-byname-tests: New file.
24547         * modules/unictype/bidicategory-name-tests: New file.
24548         * modules/unictype/bidicategory-of-tests: New file.
24549         * modules/unictype/bidicategory-test-tests: New file.
24550         * modules/unictype/block-list-tests: New file.
24551         * modules/unictype/block-of-tests: New file.
24552         * modules/unictype/block-test-tests: New file.
24553         * modules/unictype/category-C-tests: New file.
24554         * modules/unictype/category-Cc-tests: New file.
24555         * modules/unictype/category-Cf-tests: New file.
24556         * modules/unictype/category-Cn-tests: New file.
24557         * modules/unictype/category-Co-tests: New file.
24558         * modules/unictype/category-Cs-tests: New file.
24559         * modules/unictype/category-L-tests: New file.
24560         * modules/unictype/category-Ll-tests: New file.
24561         * modules/unictype/category-Lm-tests: New file.
24562         * modules/unictype/category-Lo-tests: New file.
24563         * modules/unictype/category-Lt-tests: New file.
24564         * modules/unictype/category-Lu-tests: New file.
24565         * modules/unictype/category-M-tests: New file.
24566         * modules/unictype/category-Mc-tests: New file.
24567         * modules/unictype/category-Me-tests: New file.
24568         * modules/unictype/category-Mn-tests: New file.
24569         * modules/unictype/category-N-tests: New file.
24570         * modules/unictype/category-Nd-tests: New file.
24571         * modules/unictype/category-Nl-tests: New file.
24572         * modules/unictype/category-No-tests: New file.
24573         * modules/unictype/category-P-tests: New file.
24574         * modules/unictype/category-Pc-tests: New file.
24575         * modules/unictype/category-Pd-tests: New file.
24576         * modules/unictype/category-Pe-tests: New file.
24577         * modules/unictype/category-Pf-tests: New file.
24578         * modules/unictype/category-Pi-tests: New file.
24579         * modules/unictype/category-Po-tests: New file.
24580         * modules/unictype/category-Ps-tests: New file.
24581         * modules/unictype/category-S-tests: New file.
24582         * modules/unictype/category-Sc-tests: New file.
24583         * modules/unictype/category-Sk-tests: New file.
24584         * modules/unictype/category-Sm-tests: New file.
24585         * modules/unictype/category-So-tests: New file.
24586         * modules/unictype/category-Z-tests: New file.
24587         * modules/unictype/category-Zl-tests: New file.
24588         * modules/unictype/category-Zp-tests: New file.
24589         * modules/unictype/category-Zs-tests: New file.
24590         * modules/unictype/category-and-not-tests: New file.
24591         * modules/unictype/category-and-tests: New file.
24592         * modules/unictype/category-byname-tests: New file.
24593         * modules/unictype/category-name-tests: New file.
24594         * modules/unictype/category-none-tests: New file.
24595         * modules/unictype/category-of-tests: New file.
24596         * modules/unictype/category-or-tests: New file.
24597         * modules/unictype/category-test-withtable-tests: New file.
24598         * modules/unictype/combining-class-tests: New file.
24599         * modules/unictype/ctype-alnum-tests: New file.
24600         * modules/unictype/ctype-alpha-tests: New file.
24601         * modules/unictype/ctype-blank-tests: New file.
24602         * modules/unictype/ctype-cntrl-tests: New file.
24603         * modules/unictype/ctype-digit-tests: New file.
24604         * modules/unictype/ctype-graph-tests: New file.
24605         * modules/unictype/ctype-lower-tests: New file.
24606         * modules/unictype/ctype-print-tests: New file.
24607         * modules/unictype/ctype-punct-tests: New file.
24608         * modules/unictype/ctype-space-tests: New file.
24609         * modules/unictype/ctype-upper-tests: New file.
24610         * modules/unictype/ctype-xdigit-tests: New file.
24611         * modules/unictype/decimal-digit-tests: New file.
24612         * modules/unictype/digit-tests: New file.
24613         * modules/unictype/mirror-tests: New file.
24614         * modules/unictype/numeric-tests: New file.
24615         * modules/unictype/property-alphabetic-tests: New file.
24616         * modules/unictype/property-ascii-hex-digit-tests: New file.
24617         * modules/unictype/property-bidi-arabic-digit-tests: New file.
24618         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
24619         * modules/unictype/property-bidi-block-separator-tests: New file.
24620         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
24621         * modules/unictype/property-bidi-common-separator-tests: New file.
24622         * modules/unictype/property-bidi-control-tests: New file.
24623         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
24624         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
24625         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
24626         * modules/unictype/property-bidi-european-digit-tests: New file.
24627         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
24628         * modules/unictype/property-bidi-left-to-right-tests: New file.
24629         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
24630         * modules/unictype/property-bidi-other-neutral-tests: New file.
24631         * modules/unictype/property-bidi-pdf-tests: New file.
24632         * modules/unictype/property-bidi-segment-separator-tests: New file.
24633         * modules/unictype/property-bidi-whitespace-tests: New file.
24634         * modules/unictype/property-byname-tests: New file.
24635         * modules/unictype/property-combining-tests: New file.
24636         * modules/unictype/property-composite-tests: New file.
24637         * modules/unictype/property-currency-symbol-tests: New file.
24638         * modules/unictype/property-dash-tests: New file.
24639         * modules/unictype/property-decimal-digit-tests: New file.
24640         * modules/unictype/property-default-ignorable-code-point-tests: New file.
24641         * modules/unictype/property-deprecated-tests: New file.
24642         * modules/unictype/property-diacritic-tests: New file.
24643         * modules/unictype/property-extender-tests: New file.
24644         * modules/unictype/property-format-control-tests: New file.
24645         * modules/unictype/property-grapheme-base-tests: New file.
24646         * modules/unictype/property-grapheme-extend-tests: New file.
24647         * modules/unictype/property-grapheme-link-tests: New file.
24648         * modules/unictype/property-hex-digit-tests: New file.
24649         * modules/unictype/property-hyphen-tests: New file.
24650         * modules/unictype/property-id-continue-tests: New file.
24651         * modules/unictype/property-id-start-tests: New file.
24652         * modules/unictype/property-ideographic-tests: New file.
24653         * modules/unictype/property-ids-binary-operator-tests: New file.
24654         * modules/unictype/property-ids-trinary-operator-tests: New file.
24655         * modules/unictype/property-ignorable-control-tests: New file.
24656         * modules/unictype/property-iso-control-tests: New file.
24657         * modules/unictype/property-join-control-tests: New file.
24658         * modules/unictype/property-left-of-pair-tests: New file.
24659         * modules/unictype/property-line-separator-tests: New file.
24660         * modules/unictype/property-logical-order-exception-tests: New file.
24661         * modules/unictype/property-lowercase-tests: New file.
24662         * modules/unictype/property-math-tests: New file.
24663         * modules/unictype/property-non-break-tests: New file.
24664         * modules/unictype/property-not-a-character-tests: New file.
24665         * modules/unictype/property-numeric-tests: New file.
24666         * modules/unictype/property-other-alphabetic-tests: New file.
24667         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
24668         * modules/unictype/property-other-grapheme-extend-tests: New file.
24669         * modules/unictype/property-other-id-continue-tests: New file.
24670         * modules/unictype/property-other-id-start-tests: New file.
24671         * modules/unictype/property-other-lowercase-tests: New file.
24672         * modules/unictype/property-other-math-tests: New file.
24673         * modules/unictype/property-other-uppercase-tests: New file.
24674         * modules/unictype/property-paired-punctuation-tests: New file.
24675         * modules/unictype/property-paragraph-separator-tests: New file.
24676         * modules/unictype/property-pattern-syntax-tests: New file.
24677         * modules/unictype/property-pattern-white-space-tests: New file.
24678         * modules/unictype/property-private-use-tests: New file.
24679         * modules/unictype/property-punctuation-tests: New file.
24680         * modules/unictype/property-quotation-mark-tests: New file.
24681         * modules/unictype/property-radical-tests: New file.
24682         * modules/unictype/property-sentence-terminal-tests: New file.
24683         * modules/unictype/property-soft-dotted-tests: New file.
24684         * modules/unictype/property-space-tests: New file.
24685         * modules/unictype/property-terminal-punctuation-tests: New file.
24686         * modules/unictype/property-test-tests: New file.
24687         * modules/unictype/property-titlecase-tests: New file.
24688         * modules/unictype/property-unassigned-code-value-tests: New file.
24689         * modules/unictype/property-unified-ideograph-tests: New file.
24690         * modules/unictype/property-uppercase-tests: New file.
24691         * modules/unictype/property-variation-selector-tests: New file.
24692         * modules/unictype/property-white-space-tests: New file.
24693         * modules/unictype/property-xid-continue-tests: New file.
24694         * modules/unictype/property-xid-start-tests: New file.
24695         * modules/unictype/property-zero-width-tests: New file.
24696         * modules/unictype/scripts-tests: New file.
24697         * modules/unictype/syntax-c-ident-tests: New file.
24698         * modules/unictype/syntax-c-whitespace-tests: New file.
24699         * modules/unictype/syntax-java-ident-tests: New file.
24700         * modules/unictype/syntax-java-whitespace-tests: New file.
24701         * tests/unictype/test-bidi_byname.c: New file.
24702         * tests/unictype/test-bidi_name.c: New file.
24703         * tests/unictype/test-bidi_of.c: New file.
24704         * tests/unictype/test-bidi_test.c: New file.
24705         * tests/unictype/test-block_list.c: New file.
24706         * tests/unictype/test-block_of.c: New file.
24707         * tests/unictype/test-block_test.c: New file.
24708         * tests/unictype/test-categ_and.c: New file.
24709         * tests/unictype/test-categ_and_not.c: New file.
24710         * tests/unictype/test-categ_byname.c: New file.
24711         * tests/unictype/test-categ_name.c: New file.
24712         * tests/unictype/test-categ_none.c: New file.
24713         * tests/unictype/test-categ_of.c: New file.
24714         * tests/unictype/test-categ_or.c: New file.
24715         * tests/unictype/test-categ_test_withtable.c: New file.
24716         * tests/unictype/test-combining.c: New file.
24717         * tests/unictype/test-decdigit.c: New file.
24718         * tests/unictype/test-digit.c: New file.
24719         * tests/unictype/test-mirror.c: New file.
24720         * tests/unictype/test-numeric.c: New file.
24721         * tests/unictype/test-pr_byname.c: New file.
24722         * tests/unictype/test-pr_test.c: New file.
24723         * tests/unictype/test-predicate-part1.h: New file.
24724         * tests/unictype/test-predicate-part2.h: New file.
24725         * tests/unictype/test-scripts.c: New file.
24726         * tests/unictype/test-sy_c_ident.c: New file.
24727         * tests/unictype/test-sy_java_ident.c: New file.
24728
24729         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
24730         for Unicode 5.0.0.
24731         * tests/unictype/test-categ_Cc.c: Likewise.
24732         * tests/unictype/test-categ_Cf.c: Likewise.
24733         * tests/unictype/test-categ_Cn.c: Likewise.
24734         * tests/unictype/test-categ_Co.c: Likewise.
24735         * tests/unictype/test-categ_Cs.c: Likewise.
24736         * tests/unictype/test-categ_L.c: Likewise.
24737         * tests/unictype/test-categ_Ll.c: Likewise.
24738         * tests/unictype/test-categ_Lm.c: Likewise.
24739         * tests/unictype/test-categ_Lo.c: Likewise.
24740         * tests/unictype/test-categ_Lt.c: Likewise.
24741         * tests/unictype/test-categ_Lu.c: Likewise.
24742         * tests/unictype/test-categ_M.c: Likewise.
24743         * tests/unictype/test-categ_Mc.c: Likewise.
24744         * tests/unictype/test-categ_Me.c: Likewise.
24745         * tests/unictype/test-categ_Mn.c: Likewise.
24746         * tests/unictype/test-categ_N.c: Likewise.
24747         * tests/unictype/test-categ_Nd.c: Likewise.
24748         * tests/unictype/test-categ_Nl.c: Likewise.
24749         * tests/unictype/test-categ_No.c: Likewise.
24750         * tests/unictype/test-categ_P.c: Likewise.
24751         * tests/unictype/test-categ_Pc.c: Likewise.
24752         * tests/unictype/test-categ_Pd.c: Likewise.
24753         * tests/unictype/test-categ_Pe.c: Likewise.
24754         * tests/unictype/test-categ_Pf.c: Likewise.
24755         * tests/unictype/test-categ_Pi.c: Likewise.
24756         * tests/unictype/test-categ_Po.c: Likewise.
24757         * tests/unictype/test-categ_Ps.c: Likewise.
24758         * tests/unictype/test-categ_S.c: Likewise.
24759         * tests/unictype/test-categ_Sc.c: Likewise.
24760         * tests/unictype/test-categ_Sk.c: Likewise.
24761         * tests/unictype/test-categ_Sm.c: Likewise.
24762         * tests/unictype/test-categ_So.c: Likewise.
24763         * tests/unictype/test-categ_Z.c: Likewise.
24764         * tests/unictype/test-categ_Zl.c: Likewise.
24765         * tests/unictype/test-categ_Zp.c: Likewise.
24766         * tests/unictype/test-categ_Zs.c: Likewise.
24767         * tests/unictype/test-ctype_alnum.c: Likewise.
24768         * tests/unictype/test-ctype_alpha.c: Likewise.
24769         * tests/unictype/test-ctype_blank.c: Likewise.
24770         * tests/unictype/test-ctype_cntrl.c: Likewise.
24771         * tests/unictype/test-ctype_digit.c: Likewise.
24772         * tests/unictype/test-ctype_graph.c: Likewise.
24773         * tests/unictype/test-ctype_lower.c: Likewise.
24774         * tests/unictype/test-ctype_print.c: Likewise.
24775         * tests/unictype/test-ctype_punct.c: Likewise.
24776         * tests/unictype/test-ctype_space.c: Likewise.
24777         * tests/unictype/test-ctype_upper.c: Likewise.
24778         * tests/unictype/test-ctype_xdigit.c: Likewise.
24779         * tests/unictype/test-decdigit.h: Likewise.
24780         * tests/unictype/test-digit.h: Likewise.
24781         * tests/unictype/test-numeric.h: Likewise.
24782         * tests/unictype/test-pr_alphabetic.c: Likewise.
24783         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
24784         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
24785         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
24786         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
24787         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
24788         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
24789         * tests/unictype/test-pr_bidi_control.c: Likewise.
24790         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
24791         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
24792         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
24793         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
24794         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
24795         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
24796         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
24797         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
24798         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
24799         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
24800         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
24801         * tests/unictype/test-pr_combining.c: Likewise.
24802         * tests/unictype/test-pr_composite.c: Likewise.
24803         * tests/unictype/test-pr_currency_symbol.c: Likewise.
24804         * tests/unictype/test-pr_dash.c: Likewise.
24805         * tests/unictype/test-pr_decimal_digit.c: Likewise.
24806         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
24807         * tests/unictype/test-pr_deprecated.c: Likewise.
24808         * tests/unictype/test-pr_diacritic.c: Likewise.
24809         * tests/unictype/test-pr_extender.c: Likewise.
24810         * tests/unictype/test-pr_format_control.c: Likewise.
24811         * tests/unictype/test-pr_grapheme_base.c: Likewise.
24812         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
24813         * tests/unictype/test-pr_grapheme_link.c: Likewise.
24814         * tests/unictype/test-pr_hex_digit.c: Likewise.
24815         * tests/unictype/test-pr_hyphen.c: Likewise.
24816         * tests/unictype/test-pr_id_continue.c: Likewise.
24817         * tests/unictype/test-pr_id_start.c: Likewise.
24818         * tests/unictype/test-pr_ideographic.c: Likewise.
24819         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
24820         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
24821         * tests/unictype/test-pr_ignorable_control.c: Likewise.
24822         * tests/unictype/test-pr_iso_control.c: Likewise.
24823         * tests/unictype/test-pr_join_control.c: Likewise.
24824         * tests/unictype/test-pr_left_of_pair.c: Likewise.
24825         * tests/unictype/test-pr_line_separator.c: Likewise.
24826         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
24827         * tests/unictype/test-pr_lowercase.c: Likewise.
24828         * tests/unictype/test-pr_math.c: Likewise.
24829         * tests/unictype/test-pr_non_break.c: Likewise.
24830         * tests/unictype/test-pr_not_a_character.c: Likewise.
24831         * tests/unictype/test-pr_numeric.c: Likewise.
24832         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
24833         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
24834         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
24835         * tests/unictype/test-pr_other_id_continue.c: Likewise.
24836         * tests/unictype/test-pr_other_id_start.c: Likewise.
24837         * tests/unictype/test-pr_other_lowercase.c: Likewise.
24838         * tests/unictype/test-pr_other_math.c: Likewise.
24839         * tests/unictype/test-pr_other_uppercase.c: Likewise.
24840         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
24841         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
24842         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
24843         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
24844         * tests/unictype/test-pr_private_use.c: Likewise.
24845         * tests/unictype/test-pr_punctuation.c: Likewise.
24846         * tests/unictype/test-pr_quotation_mark.c: Likewise.
24847         * tests/unictype/test-pr_radical.c: Likewise.
24848         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
24849         * tests/unictype/test-pr_soft_dotted.c: Likewise.
24850         * tests/unictype/test-pr_space.c: Likewise.
24851         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
24852         * tests/unictype/test-pr_titlecase.c: Likewise.
24853         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
24854         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
24855         * tests/unictype/test-pr_uppercase.c: Likewise.
24856         * tests/unictype/test-pr_variation_selector.c: Likewise.
24857         * tests/unictype/test-pr_white_space.c: Likewise.
24858         * tests/unictype/test-pr_xid_continue.c: Likewise.
24859         * tests/unictype/test-pr_xid_start.c: Likewise.
24860         * tests/unictype/test-pr_zero_width.c: Likewise.
24861         * tests/unictype/test-sy_c_whitespace.c: Likewise.
24862         * tests/unictype/test-sy_java_whitespace.c: Likewise.
24863
24864 2007-11-12  Bruno Haible  <bruno@clisp.org>
24865
24866         Unicode character classification functions.
24867         * lib/unictype.h: New file.
24868         * modules/unictype/base: New file.
24869         * modules/unictype/category-L: New file.
24870         * modules/unictype/category-Lu: New file.
24871         * modules/unictype/category-Ll: New file.
24872         * modules/unictype/category-Lt: New file.
24873         * modules/unictype/category-Lm: New file.
24874         * modules/unictype/category-Lo: New file.
24875         * modules/unictype/category-M: New file.
24876         * modules/unictype/category-Mn: New file.
24877         * modules/unictype/category-Mc: New file.
24878         * modules/unictype/category-Me: New file.
24879         * modules/unictype/category-N: New file.
24880         * modules/unictype/category-Nd: New file.
24881         * modules/unictype/category-Nl: New file.
24882         * modules/unictype/category-No: New file.
24883         * modules/unictype/category-P: New file.
24884         * modules/unictype/category-Pc: New file.
24885         * modules/unictype/category-Pd: New file.
24886         * modules/unictype/category-Ps: New file.
24887         * modules/unictype/category-Pe: New file.
24888         * modules/unictype/category-Pi: New file.
24889         * modules/unictype/category-Pf: New file.
24890         * modules/unictype/category-Po: New file.
24891         * modules/unictype/category-S: New file.
24892         * modules/unictype/category-Sm: New file.
24893         * modules/unictype/category-Sc: New file.
24894         * modules/unictype/category-Sk: New file.
24895         * modules/unictype/category-So: New file.
24896         * modules/unictype/category-Z: New file.
24897         * modules/unictype/category-Zs: New file.
24898         * modules/unictype/category-Zl: New file.
24899         * modules/unictype/category-Zp: New file.
24900         * modules/unictype/category-C: New file.
24901         * modules/unictype/category-Cc: New file.
24902         * modules/unictype/category-Cf: New file.
24903         * modules/unictype/category-Cs: New file.
24904         * modules/unictype/category-Co: New file.
24905         * modules/unictype/category-Cn: New file.
24906         * modules/unictype/category-or: New file.
24907         * modules/unictype/category-of: New file.
24908         * modules/unictype/category-test: New file.
24909         * modules/unictype/category-test-withtable: New file.
24910         * modules/unictype/category-byname: New file.
24911         * modules/unictype/category-none: New file.
24912         * modules/unictype/category-and: New file.
24913         * modules/unictype/category-and-not: New file.
24914         * modules/unictype/category-name: New file.
24915         * modules/unictype/combining-class: New file.
24916         * modules/unictype/category-all: New file.
24917         * modules/unictype/bidicategory-all: New file.
24918         * modules/unictype/bidicategory-byname: New file.
24919         * modules/unictype/bidicategory-name: New file.
24920         * modules/unictype/bidicategory-of: New file.
24921         * modules/unictype/bidicategory-test: New file.
24922         * modules/unictype/decimal-digit: New file.
24923         * modules/unictype/digit: New file.
24924         * modules/unictype/numeric: New file.
24925         * modules/unictype/mirror: New file.
24926         * modules/unictype/property-white-space: New file.
24927         * modules/unictype/property-alphabetic: New file.
24928         * modules/unictype/property-other-alphabetic: New file.
24929         * modules/unictype/property-not-a-character: New file.
24930         * modules/unictype/property-default-ignorable-code-point: New file.
24931         * modules/unictype/property-other-default-ignorable-code-point: New
24932         file.
24933         * modules/unictype/property-deprecated: New file.
24934         * modules/unictype/property-logical-order-exception: New file.
24935         * modules/unictype/property-variation-selector: New file.
24936         * modules/unictype/property-private-use: New file.
24937         * modules/unictype/property-unassigned-code-value: New file.
24938         * modules/unictype/property-uppercase: New file.
24939         * modules/unictype/property-other-uppercase: New file.
24940         * modules/unictype/property-lowercase: New file.
24941         * modules/unictype/property-other-lowercase: New file.
24942         * modules/unictype/property-titlecase: New file.
24943         * modules/unictype/property-soft-dotted: New file.
24944         * modules/unictype/property-id-start: New file.
24945         * modules/unictype/property-other-id-start: New file.
24946         * modules/unictype/property-id-continue: New file.
24947         * modules/unictype/property-other-id-continue: New file.
24948         * modules/unictype/property-xid-start: New file.
24949         * modules/unictype/property-xid-continue: New file.
24950         * modules/unictype/property-pattern-white-space: New file.
24951         * modules/unictype/property-pattern-syntax: New file.
24952         * modules/unictype/property-join-control: New file.
24953         * modules/unictype/property-grapheme-base: New file.
24954         * modules/unictype/property-grapheme-extend: New file.
24955         * modules/unictype/property-other-grapheme-extend: New file.
24956         * modules/unictype/property-grapheme-link: New file.
24957         * modules/unictype/property-bidi-control: New file.
24958         * modules/unictype/property-bidi-left-to-right: New file.
24959         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
24960         * modules/unictype/property-bidi-arabic-right-to-left: New file.
24961         * modules/unictype/property-bidi-european-digit: New file.
24962         * modules/unictype/property-bidi-eur-num-separator: New file.
24963         * modules/unictype/property-bidi-eur-num-terminator: New file.
24964         * modules/unictype/property-bidi-arabic-digit: New file.
24965         * modules/unictype/property-bidi-common-separator: New file.
24966         * modules/unictype/property-bidi-block-separator: New file.
24967         * modules/unictype/property-bidi-segment-separator: New file.
24968         * modules/unictype/property-bidi-whitespace: New file.
24969         * modules/unictype/property-bidi-non-spacing-mark: New file.
24970         * modules/unictype/property-bidi-boundary-neutral: New file.
24971         * modules/unictype/property-bidi-pdf: New file.
24972         * modules/unictype/property-bidi-embedding-or-override: New file.
24973         * modules/unictype/property-bidi-other-neutral: New file.
24974         * modules/unictype/property-hex-digit: New file.
24975         * modules/unictype/property-ascii-hex-digit: New file.
24976         * modules/unictype/property-ideographic: New file.
24977         * modules/unictype/property-unified-ideograph: New file.
24978         * modules/unictype/property-radical: New file.
24979         * modules/unictype/property-ids-binary-operator: New file.
24980         * modules/unictype/property-ids-trinary-operator: New file.
24981         * modules/unictype/property-zero-width: New file.
24982         * modules/unictype/property-space: New file.
24983         * modules/unictype/property-non-break: New file.
24984         * modules/unictype/property-iso-control: New file.
24985         * modules/unictype/property-format-control: New file.
24986         * modules/unictype/property-dash: New file.
24987         * modules/unictype/property-hyphen: New file.
24988         * modules/unictype/property-punctuation: New file.
24989         * modules/unictype/property-line-separator: New file.
24990         * modules/unictype/property-paragraph-separator: New file.
24991         * modules/unictype/property-quotation-mark: New file.
24992         * modules/unictype/property-sentence-terminal: New file.
24993         * modules/unictype/property-terminal-punctuation: New file.
24994         * modules/unictype/property-currency-symbol: New file.
24995         * modules/unictype/property-math: New file.
24996         * modules/unictype/property-other-math: New file.
24997         * modules/unictype/property-paired-punctuation: New file.
24998         * modules/unictype/property-left-of-pair: New file.
24999         * modules/unictype/property-combining: New file.
25000         * modules/unictype/property-composite: New file.
25001         * modules/unictype/property-decimal-digit: New file.
25002         * modules/unictype/property-numeric: New file.
25003         * modules/unictype/property-diacritic: New file.
25004         * modules/unictype/property-extender: New file.
25005         * modules/unictype/property-ignorable-control: New file.
25006         * modules/unictype/property-test: New file.
25007         * modules/unictype/property-byname: New file.
25008         * modules/unictype/property-all: New file.
25009         * modules/unictype/scripts: New file.
25010         * modules/unictype/scripts-all: New file.
25011         * modules/unictype/block-of: New file.
25012         * modules/unictype/block-test: New file.
25013         * modules/unictype/block-list: New file.
25014         * modules/unictype/block-all: New file.
25015         * modules/unictype/syntax-c-whitespace: New file.
25016         * modules/unictype/syntax-java-whitespace: New file.
25017         * modules/unictype/syntax-c-ident: New file.
25018         * modules/unictype/syntax-java-ident: New file.
25019         * modules/unictype/ctype-alnum: New file.
25020         * modules/unictype/ctype-alpha: New file.
25021         * modules/unictype/ctype-cntrl: New file.
25022         * modules/unictype/ctype-digit: New file.
25023         * modules/unictype/ctype-graph: New file.
25024         * modules/unictype/ctype-lower: New file.
25025         * modules/unictype/ctype-print: New file.
25026         * modules/unictype/ctype-punct: New file.
25027         * modules/unictype/ctype-space: New file.
25028         * modules/unictype/ctype-upper: New file.
25029         * modules/unictype/ctype-xdigit: New file.
25030         * modules/unictype/ctype-blank: New file.
25031         * lib/unictype/bidi_byname.c: New file.
25032         * lib/unictype/bidi_name.c: New file.
25033         * lib/unictype/bidi_of.c: New file.
25034         * lib/unictype/bidi_test.c: New file.
25035         * lib/unictype/bitmap.h: New file.
25036         * lib/unictype/block_test.c: New file.
25037         * lib/unictype/blocks.c: New file.
25038         * lib/unictype/categ_C.c: New file.
25039         * lib/unictype/categ_Cc.c: New file.
25040         * lib/unictype/categ_Cf.c: New file.
25041         * lib/unictype/categ_Cn.c: New file.
25042         * lib/unictype/categ_Co.c: New file.
25043         * lib/unictype/categ_Cs.c: New file.
25044         * lib/unictype/categ_L.c: New file.
25045         * lib/unictype/categ_Ll.c: New file.
25046         * lib/unictype/categ_Lm.c: New file.
25047         * lib/unictype/categ_Lo.c: New file.
25048         * lib/unictype/categ_Lt.c: New file.
25049         * lib/unictype/categ_Lu.c: New file.
25050         * lib/unictype/categ_M.c: New file.
25051         * lib/unictype/categ_Mc.c: New file.
25052         * lib/unictype/categ_Me.c: New file.
25053         * lib/unictype/categ_Mn.c: New file.
25054         * lib/unictype/categ_N.c: New file.
25055         * lib/unictype/categ_Nd.c: New file.
25056         * lib/unictype/categ_Nl.c: New file.
25057         * lib/unictype/categ_No.c: New file.
25058         * lib/unictype/categ_P.c: New file.
25059         * lib/unictype/categ_Pc.c: New file.
25060         * lib/unictype/categ_Pd.c: New file.
25061         * lib/unictype/categ_Pe.c: New file.
25062         * lib/unictype/categ_Pf.c: New file.
25063         * lib/unictype/categ_Pi.c: New file.
25064         * lib/unictype/categ_Po.c: New file.
25065         * lib/unictype/categ_Ps.c: New file.
25066         * lib/unictype/categ_S.c: New file.
25067         * lib/unictype/categ_Sc.c: New file.
25068         * lib/unictype/categ_Sk.c: New file.
25069         * lib/unictype/categ_Sm.c: New file.
25070         * lib/unictype/categ_So.c: New file.
25071         * lib/unictype/categ_Z.c: New file.
25072         * lib/unictype/categ_Zl.c: New file.
25073         * lib/unictype/categ_Zp.c: New file.
25074         * lib/unictype/categ_Zs.c: New file.
25075         * lib/unictype/categ_and.c: New file.
25076         * lib/unictype/categ_and_not.c: New file.
25077         * lib/unictype/categ_byname.c: New file.
25078         * lib/unictype/categ_name.c: New file.
25079         * lib/unictype/categ_none.c: New file.
25080         * lib/unictype/categ_of.c: New file.
25081         * lib/unictype/categ_or.c: New file.
25082         * lib/unictype/categ_test.c: New file.
25083         * lib/unictype/combining.c: New file.
25084         * lib/unictype/ctype_alnum.c: New file.
25085         * lib/unictype/ctype_alpha.c: New file.
25086         * lib/unictype/ctype_blank.c: New file.
25087         * lib/unictype/ctype_cntrl.c: New file.
25088         * lib/unictype/ctype_digit.c: New file.
25089         * lib/unictype/ctype_graph.c: New file.
25090         * lib/unictype/ctype_lower.c: New file.
25091         * lib/unictype/ctype_print.c: New file.
25092         * lib/unictype/ctype_punct.c: New file.
25093         * lib/unictype/ctype_space.c: New file.
25094         * lib/unictype/ctype_upper.c: New file.
25095         * lib/unictype/ctype_xdigit.c: New file.
25096         * lib/unictype/decdigit.c: New file.
25097         * lib/unictype/digit.c: New file.
25098         * lib/unictype/identsyntaxmap.h: New file.
25099         * lib/unictype/mirror.c: New file.
25100         * lib/unictype/numeric.c: New file.
25101         * lib/unictype/pr_alphabetic.c: New file.
25102         * lib/unictype/pr_ascii_hex_digit.c: New file.
25103         * lib/unictype/pr_bidi_arabic_digit.c: New file.
25104         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
25105         * lib/unictype/pr_bidi_block_separator.c: New file.
25106         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
25107         * lib/unictype/pr_bidi_common_separator.c: New file.
25108         * lib/unictype/pr_bidi_control.c: New file.
25109         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
25110         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
25111         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
25112         * lib/unictype/pr_bidi_european_digit.c: New file.
25113         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
25114         * lib/unictype/pr_bidi_left_to_right.c: New file.
25115         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
25116         * lib/unictype/pr_bidi_other_neutral.c: New file.
25117         * lib/unictype/pr_bidi_pdf.c: New file.
25118         * lib/unictype/pr_bidi_segment_separator.c: New file.
25119         * lib/unictype/pr_bidi_whitespace.c: New file.
25120         * lib/unictype/pr_byname.c: New file.
25121         * lib/unictype/pr_byname.gperf: New file.
25122         * lib/unictype/pr_combining.c: New file.
25123         * lib/unictype/pr_composite.c: New file.
25124         * lib/unictype/pr_currency_symbol.c: New file.
25125         * lib/unictype/pr_dash.c: New file.
25126         * lib/unictype/pr_decimal_digit.c: New file.
25127         * lib/unictype/pr_default_ignorable_code_point.c: New file.
25128         * lib/unictype/pr_deprecated.c: New file.
25129         * lib/unictype/pr_diacritic.c: New file.
25130         * lib/unictype/pr_extender.c: New file.
25131         * lib/unictype/pr_format_control.c: New file.
25132         * lib/unictype/pr_grapheme_base.c: New file.
25133         * lib/unictype/pr_grapheme_extend.c: New file.
25134         * lib/unictype/pr_grapheme_link.c: New file.
25135         * lib/unictype/pr_hex_digit.c: New file.
25136         * lib/unictype/pr_hyphen.c: New file.
25137         * lib/unictype/pr_id_continue.c: New file.
25138         * lib/unictype/pr_id_start.c: New file.
25139         * lib/unictype/pr_ideographic.c: New file.
25140         * lib/unictype/pr_ids_binary_operator.c: New file.
25141         * lib/unictype/pr_ids_trinary_operator.c: New file.
25142         * lib/unictype/pr_ignorable_control.c: New file.
25143         * lib/unictype/pr_iso_control.c: New file.
25144         * lib/unictype/pr_join_control.c: New file.
25145         * lib/unictype/pr_left_of_pair.c: New file.
25146         * lib/unictype/pr_line_separator.c: New file.
25147         * lib/unictype/pr_logical_order_exception.c: New file.
25148         * lib/unictype/pr_lowercase.c: New file.
25149         * lib/unictype/pr_math.c: New file.
25150         * lib/unictype/pr_non_break.c: New file.
25151         * lib/unictype/pr_not_a_character.c: New file.
25152         * lib/unictype/pr_numeric.c: New file.
25153         * lib/unictype/pr_other_alphabetic.c: New file.
25154         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
25155         * lib/unictype/pr_other_grapheme_extend.c: New file.
25156         * lib/unictype/pr_other_id_continue.c: New file.
25157         * lib/unictype/pr_other_id_start.c: New file.
25158         * lib/unictype/pr_other_lowercase.c: New file.
25159         * lib/unictype/pr_other_math.c: New file.
25160         * lib/unictype/pr_other_uppercase.c: New file.
25161         * lib/unictype/pr_paired_punctuation.c: New file.
25162         * lib/unictype/pr_paragraph_separator.c: New file.
25163         * lib/unictype/pr_pattern_syntax.c: New file.
25164         * lib/unictype/pr_pattern_white_space.c: New file.
25165         * lib/unictype/pr_private_use.c: New file.
25166         * lib/unictype/pr_punctuation.c: New file.
25167         * lib/unictype/pr_quotation_mark.c: New file.
25168         * lib/unictype/pr_radical.c: New file.
25169         * lib/unictype/pr_sentence_terminal.c: New file.
25170         * lib/unictype/pr_soft_dotted.c: New file.
25171         * lib/unictype/pr_space.c: New file.
25172         * lib/unictype/pr_terminal_punctuation.c: New file.
25173         * lib/unictype/pr_test.c: New file.
25174         * lib/unictype/pr_titlecase.c: New file.
25175         * lib/unictype/pr_unassigned_code_value.c: New file.
25176         * lib/unictype/pr_unified_ideograph.c: New file.
25177         * lib/unictype/pr_uppercase.c: New file.
25178         * lib/unictype/pr_variation_selector.c: New file.
25179         * lib/unictype/pr_white_space.c: New file.
25180         * lib/unictype/pr_xid_continue.c: New file.
25181         * lib/unictype/pr_xid_start.c: New file.
25182         * lib/unictype/pr_zero_width.c: New file.
25183         * lib/unictype/scripts.c: New file.
25184         * lib/unictype/sy_c_ident.c: New file.
25185         * lib/unictype/sy_c_whitespace.c: New file.
25186         * lib/unictype/sy_java_ident.c: New file.
25187         * lib/unictype/sy_java_whitespace.c: New file.
25188
25189         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
25190         Unicode 5.0.0.
25191         * lib/unictype/blocks.h: Likewise.
25192         * lib/unictype/categ_C.h: Likewise.
25193         * lib/unictype/categ_Cc.h: Likewise.
25194         * lib/unictype/categ_Cf.h: Likewise.
25195         * lib/unictype/categ_Cn.h: Likewise.
25196         * lib/unictype/categ_Co.h: Likewise.
25197         * lib/unictype/categ_Cs.h: Likewise.
25198         * lib/unictype/categ_L.h: Likewise.
25199         * lib/unictype/categ_Ll.h: Likewise.
25200         * lib/unictype/categ_Lm.h: Likewise.
25201         * lib/unictype/categ_Lo.h: Likewise.
25202         * lib/unictype/categ_Lt.h: Likewise.
25203         * lib/unictype/categ_Lu.h: Likewise.
25204         * lib/unictype/categ_M.h: Likewise.
25205         * lib/unictype/categ_Mc.h: Likewise.
25206         * lib/unictype/categ_Me.h: Likewise.
25207         * lib/unictype/categ_Mn.h: Likewise.
25208         * lib/unictype/categ_N.h: Likewise.
25209         * lib/unictype/categ_Nd.h: Likewise.
25210         * lib/unictype/categ_Nl.h: Likewise.
25211         * lib/unictype/categ_No.h: Likewise.
25212         * lib/unictype/categ_P.h: Likewise.
25213         * lib/unictype/categ_Pc.h: Likewise.
25214         * lib/unictype/categ_Pd.h: Likewise.
25215         * lib/unictype/categ_Pe.h: Likewise.
25216         * lib/unictype/categ_Pf.h: Likewise.
25217         * lib/unictype/categ_Pi.h: Likewise.
25218         * lib/unictype/categ_Po.h: Likewise.
25219         * lib/unictype/categ_Ps.h: Likewise.
25220         * lib/unictype/categ_S.h: Likewise.
25221         * lib/unictype/categ_Sc.h: Likewise.
25222         * lib/unictype/categ_Sk.h: Likewise.
25223         * lib/unictype/categ_Sm.h: Likewise.
25224         * lib/unictype/categ_So.h: Likewise.
25225         * lib/unictype/categ_Z.h: Likewise.
25226         * lib/unictype/categ_Zl.h: Likewise.
25227         * lib/unictype/categ_Zp.h: Likewise.
25228         * lib/unictype/categ_Zs.h: Likewise.
25229         * lib/unictype/categ_of.h: Likewise.
25230         * lib/unictype/combining.h: Likewise.
25231         * lib/unictype/ctype_alnum.h: Likewise.
25232         * lib/unictype/ctype_alpha.h: Likewise.
25233         * lib/unictype/ctype_blank.h: Likewise.
25234         * lib/unictype/ctype_cntrl.h: Likewise.
25235         * lib/unictype/ctype_digit.h: Likewise.
25236         * lib/unictype/ctype_graph.h: Likewise.
25237         * lib/unictype/ctype_lower.h: Likewise.
25238         * lib/unictype/ctype_print.h: Likewise.
25239         * lib/unictype/ctype_punct.h: Likewise.
25240         * lib/unictype/ctype_space.h: Likewise.
25241         * lib/unictype/ctype_upper.h: Likewise.
25242         * lib/unictype/ctype_xdigit.h: Likewise.
25243         * lib/unictype/decdigit.h: Likewise.
25244         * lib/unictype/digit.h: Likewise.
25245         * lib/unictype/mirror.h: Likewise.
25246         * lib/unictype/numeric.h: Likewise.
25247         * lib/unictype/pr_alphabetic.h: Likewise.
25248         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
25249         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
25250         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
25251         * lib/unictype/pr_bidi_block_separator.h: Likewise.
25252         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
25253         * lib/unictype/pr_bidi_common_separator.h: Likewise.
25254         * lib/unictype/pr_bidi_control.h: Likewise.
25255         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
25256         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
25257         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
25258         * lib/unictype/pr_bidi_european_digit.h: Likewise.
25259         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
25260         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
25261         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
25262         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
25263         * lib/unictype/pr_bidi_pdf.h: Likewise.
25264         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
25265         * lib/unictype/pr_bidi_whitespace.h: Likewise.
25266         * lib/unictype/pr_combining.h: Likewise.
25267         * lib/unictype/pr_composite.h: Likewise.
25268         * lib/unictype/pr_currency_symbol.h: Likewise.
25269         * lib/unictype/pr_dash.h: Likewise.
25270         * lib/unictype/pr_decimal_digit.h: Likewise.
25271         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
25272         * lib/unictype/pr_deprecated.h: Likewise.
25273         * lib/unictype/pr_diacritic.h: Likewise.
25274         * lib/unictype/pr_extender.h: Likewise.
25275         * lib/unictype/pr_format_control.h: Likewise.
25276         * lib/unictype/pr_grapheme_base.h: Likewise.
25277         * lib/unictype/pr_grapheme_extend.h: Likewise.
25278         * lib/unictype/pr_grapheme_link.h: Likewise.
25279         * lib/unictype/pr_hex_digit.h: Likewise.
25280         * lib/unictype/pr_hyphen.h: Likewise.
25281         * lib/unictype/pr_id_continue.h: Likewise.
25282         * lib/unictype/pr_id_start.h: Likewise.
25283         * lib/unictype/pr_ideographic.h: Likewise.
25284         * lib/unictype/pr_ids_binary_operator.h: Likewise.
25285         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
25286         * lib/unictype/pr_ignorable_control.h: Likewise.
25287         * lib/unictype/pr_iso_control.h: Likewise.
25288         * lib/unictype/pr_join_control.h: Likewise.
25289         * lib/unictype/pr_left_of_pair.h: Likewise.
25290         * lib/unictype/pr_line_separator.h: Likewise.
25291         * lib/unictype/pr_logical_order_exception.h: Likewise.
25292         * lib/unictype/pr_lowercase.h: Likewise.
25293         * lib/unictype/pr_math.h: Likewise.
25294         * lib/unictype/pr_non_break.h: Likewise.
25295         * lib/unictype/pr_not_a_character.h: Likewise.
25296         * lib/unictype/pr_numeric.h: Likewise.
25297         * lib/unictype/pr_other_alphabetic.h: Likewise.
25298         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
25299         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
25300         * lib/unictype/pr_other_id_continue.h: Likewise.
25301         * lib/unictype/pr_other_id_start.h: Likewise.
25302         * lib/unictype/pr_other_lowercase.h: Likewise.
25303         * lib/unictype/pr_other_math.h: Likewise.
25304         * lib/unictype/pr_other_uppercase.h: Likewise.
25305         * lib/unictype/pr_paired_punctuation.h: Likewise.
25306         * lib/unictype/pr_paragraph_separator.h: Likewise.
25307         * lib/unictype/pr_pattern_syntax.h: Likewise.
25308         * lib/unictype/pr_pattern_white_space.h: Likewise.
25309         * lib/unictype/pr_private_use.h: Likewise.
25310         * lib/unictype/pr_punctuation.h: Likewise.
25311         * lib/unictype/pr_quotation_mark.h: Likewise.
25312         * lib/unictype/pr_radical.h: Likewise.
25313         * lib/unictype/pr_sentence_terminal.h: Likewise.
25314         * lib/unictype/pr_soft_dotted.h: Likewise.
25315         * lib/unictype/pr_space.h: Likewise.
25316         * lib/unictype/pr_terminal_punctuation.h: Likewise.
25317         * lib/unictype/pr_titlecase.h: Likewise.
25318         * lib/unictype/pr_unassigned_code_value.h: Likewise.
25319         * lib/unictype/pr_unified_ideograph.h: Likewise.
25320         * lib/unictype/pr_uppercase.h: Likewise.
25321         * lib/unictype/pr_variation_selector.h: Likewise.
25322         * lib/unictype/pr_white_space.h: Likewise.
25323         * lib/unictype/pr_xid_continue.h: Likewise.
25324         * lib/unictype/pr_xid_start.h: Likewise.
25325         * lib/unictype/pr_zero_width.h: Likewise.
25326         * lib/unictype/scripts.h: Likewise.
25327         * lib/unictype/scripts_byname.gperf: Likewise.
25328         * lib/unictype/sy_c_ident.h: Likewise.
25329         * lib/unictype/sy_c_whitespace.h: Likewise.
25330         * lib/unictype/sy_java_ident.h: Likewise.
25331         * lib/unictype/sy_java_whitespace.h: Likewise.
25332
25333         * lib/unictype/Makefile: New file.
25334         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
25335         glibc.
25336         * lib/unictype/3level.h: New file, copied from glibc.
25337         * lib/unictype/3levelbit.h: New file.
25338
25339 2007-11-11  Bruno Haible  <bruno@clisp.org>
25340
25341         * modules/gperf: New file.
25342         * modules/iconv_open (Depends-on): Add it.
25343         (Makefile.am): Remove the GPERF definition.
25344
25345 2007-11-11  Bruno Haible  <bruno@clisp.org>
25346
25347         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
25348         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
25349
25350 2007-11-11  Bruno Haible  <bruno@clisp.org>
25351
25352         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
25353         (usage): Remove function.
25354
25355 2007-11-11  Bruno Haible  <bruno@clisp.org>
25356
25357         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
25358         gl_FUNC_CEILF_LIBS.
25359         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
25360         gl_FUNC_CEIL_LIBS.
25361         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
25362         gl_FUNC_CEILL_LIBS.
25363         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
25364         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
25365         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
25366
25367 2007-11-11  Bruno Haible  <bruno@clisp.org>
25368
25369         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
25370         roundf were declared but do not exist on functions.
25371         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
25372         roundl were declared but do not exist on functions.
25373         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
25374         HAVE_FLOORL_AND_CEILL, respectively.
25375         Needed for Sun C on Solaris 10.
25376
25377 2007-11-11  Bruno Haible  <bruno@clisp.org>
25378
25379         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
25380         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
25381         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
25382         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
25383         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
25384         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
25385         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
25386         HAVE_DECL_ROUNDF.
25387         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
25388         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
25389         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
25390         of HAVE_DECL_ROUND*.
25391         * modules/math (Makefile.am): Update.
25392
25393 2007-11-10  Bruno Haible  <bruno@clisp.org>
25394
25395         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
25396         ptrdiff_t as m4/intl.m4.
25397
25398 2007-11-10  Jim Meyering  <meyering@redhat.com>
25399
25400         Avoid link failure for the argmatch test.
25401         * tests/test-argmatch.c (usage): Define function to avoid a link
25402         failure: argmatch_die requires a usage function.
25403
25404 2007-11-09  Bruno Haible  <bruno@clisp.org>
25405
25406         * doc/functions/snprintf.texi: Mention BeOS deficiency.
25407         * doc/functions/vsnprintf.texi: Likewise.
25408         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
25409         with a size argument < 2.
25410
25411 2007-11-09  Bruno Haible  <bruno@clisp.org>
25412
25413         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
25414         buffer. Fixes an inefficiency introduced on 2007-11-03.
25415
25416 2007-11-09  Bruno Haible  <bruno@clisp.org>
25417
25418         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
25419         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
25420
25421 2007-11-08  Jim Meyering  <meyering@redhat.com>
25422
25423         Change cache variable name prefix "jm_" to "gl_" everywhere.
25424         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
25425         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
25426         * m4/uptime.m4: s/gl_/jm_/
25427
25428 2007-11-07  Bruno Haible  <bruno@clisp.org>
25429
25430         Update to GNU gettext 0.17.
25431         * m4/intl.m4: Update to GNU gettext 0.17.
25432         * m4/po.m4: Likewise.
25433         * modules/gettext (Files): Remove m4/ulonglong.m4.
25434         (configure.ac): Require gettext infrastructure from version 0.17.
25435
25436 2007-11-06  Bruno Haible  <bruno@clisp.org>
25437
25438         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
25439         symbolic values are not defined in a public header.
25440         * lib/freadable.c (freadable) [QNX]: Likewise.
25441         * lib/freadahead.c (freadahead) [QNX]: Likewise.
25442         * lib/freading.c (freading) [QNX]: Likewise.
25443         * lib/fseterr.c (fseterr) [QNX]: Likewise.
25444         * lib/fwritable.c (fwritable) [QNX]: Likewise.
25445         * lib/fwriting.c (fwriting) [QNX]: Likewise.
25446         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
25447         Reported by Alain Magloire.
25448
25449         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
25450
25451 2007-11-05  Bruno Haible  <bruno@clisp.org>
25452
25453         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
25454         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
25455         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
25456         Reported by Eric Blake.
25457
25458 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25459             Bruno Haible  <bruno@clisp.org>
25460
25461         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
25462         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
25463         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
25464         (malloc): Undefine also before including <stdlib.h>.
25465         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
25466         Needed on OSF/1 4.0.
25467
25468 2007-11-05  Jim Meyering  <meyering@redhat.com>
25469
25470         git-version-gen: sync from coreutils.
25471         * build-aux/git-version-gen: Add comments.
25472         Change the first '-' to '.' in the snapshot version string,
25473         e.g., 6.9-377-08144 -> 6.9.377-08144
25474         Remove first parameter.
25475         Don't declare a version "-dirty" merely because a time
25476         stamp has changed.
25477
25478 2007-11-04  Bruno Haible  <bruno@clisp.org>
25479
25480         * lib/lock.h: Protect all macro definitions containing an 'if'
25481         statement through a "do { ... } while (0)".
25482         * lib/tls.h: Likewise.
25483
25484 2007-11-04  Bruno Haible  <bruno@clisp.org>
25485
25486         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
25487
25488 2007-11-04  Bruno Haible  <bruno@clisp.org>
25489
25490         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
25491         * modules/fprintf-posix (Depends-on): Add nocrash.
25492         * modules/snprintf-posix (Depends-on): Likewise.
25493         * modules/sprintf-posix (Depends-on): Likewise.
25494         * modules/vasnprintf-posix (Depends-on): Likewise.
25495         * modules/vasprintf-posix (Depends-on): Likewise.
25496         * modules/vfprintf-posix (Depends-on): Likewise.
25497         * modules/vsnprintf-posix (Depends-on): Likewise.
25498         * modules/vsprintf-posix (Depends-on): Likewise.
25499         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
25500         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
25501         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
25502         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
25503         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
25504         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
25505         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
25506
25507 2007-11-04  Bruno Haible  <bruno@clisp.org>
25508
25509         * modules/nocrash: New file.
25510         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
25511         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
25512
25513 2007-11-04  Bruno Haible  <bruno@clisp.org>
25514
25515         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
25516         precision handling.
25517         * tests/test-vasprintf-posix.c (test_function): Likewise.
25518         * tests/test-snprintf-posix.h (test_function): Likewise.
25519         * tests/test-sprintf-posix.h (test_function): Likewise.
25520
25521         Fix *printf behaviour for large precisions on mingw and BeOS.
25522         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
25523         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
25524         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
25525         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
25526         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
25527         gl_PRINTF_PRECISION and test its result. Invoke
25528         gl_PREREQ_VASNPRINTF_PRECISION.
25529         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25530         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25531         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25532         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25533         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25534         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25535         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25536         * doc/functions/fprintf.texi: Update.
25537         * doc/functions/printf.texi: Update.
25538         * doc/functions/snprintf.texi: Update.
25539         * doc/functions/sprintf.texi: Update.
25540         * doc/functions/vfprintf.texi: Update.
25541         * doc/functions/vprintf.texi: Update.
25542         * doc/functions/vsnprintf.texi: Update.
25543         * doc/functions/vsprintf.texi: Update.
25544
25545 2007-11-04  Bruno Haible  <bruno@clisp.org>
25546
25547         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
25548
25549 2007-11-04  Bruno Haible  <bruno@clisp.org>
25550
25551         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
25552         Reported by Sylvain Beucler <beuc@gnu.org>.
25553
25554 2007-11-03  Bruno Haible  <bruno@clisp.org>
25555
25556         * tests/test-fprintf-posix2.sh: New file.
25557         * tests/test-fprintf-posix2.c: New file.
25558         * modules/fprintf-posix-tests (Files): Add them.
25559         (TESTS): Add test-fprintf-posix2.sh.
25560         (configure.ac): Check for getrlimit and setrlimit.
25561         (check_PROGRAMS): Add test-fprintf-posix2.
25562
25563         * tests/test-printf-posix2.sh: New file.
25564         * tests/test-printf-posix2.c: New file.
25565         * modules/printf-posix-tests (Files): Add them.
25566         (TESTS): Add test-printf-posix2.sh.
25567         (configure.ac): Check for getrlimit and setrlimit.
25568         (check_PROGRAMS): Add test-printf-posix2.
25569
25570         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
25571         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
25572         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
25573         (decode_double): New function, copied from decode_long_double.
25574         (scale10_round_decimal_decoded): New function, extracted from
25575         scale10_round_decimal_long_double.
25576         (scale10_round_decimal_long_double): Use it.
25577         (scale10_round_decimal_double): New function.
25578         (floorlog10): New function.
25579         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
25580         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
25581         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
25582         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
25583         gl_PRINTF_ENOMEM and test its result. Invoke
25584         gl_PREREQ_VASNPRINTF_ENOMEM.
25585         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25586         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25587         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25588         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25589         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25590         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25591         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25592         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
25593         * modules/snprintf-posix (Depends-on): Likewise.
25594         * modules/sprintf-posix (Depends-on): Likewise.
25595         * modules/vasnprintf-posix (Depends-on): Likewise.
25596         * modules/vasprintf-posix (Depends-on): Likewise.
25597         * modules/vfprintf-posix (Depends-on): Likewise.
25598         * modules/vsnprintf-posix (Depends-on): Likewise.
25599         * modules/vsprintf-posix (Depends-on): Likewise.
25600         * doc/functions/fprintf.texi: Update.
25601         * doc/functions/printf.texi: Update.
25602         * doc/functions/snprintf.texi: Update.
25603         * doc/functions/sprintf.texi: Update.
25604         * doc/functions/vfprintf.texi: Update.
25605         * doc/functions/vprintf.texi: Update.
25606         * doc/functions/vsnprintf.texi: Update.
25607         * doc/functions/vsprintf.texi: Update.
25608
25609 2007-11-03  Bruno Haible  <bruno@clisp.org>
25610
25611         * modules/frexp-nolibm-tests: New file.
25612
25613         * modules/frexp-nolibm: New file.
25614         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
25615
25616 2007-11-03  Bruno Haible  <bruno@clisp.org>
25617
25618         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
25619         value is C99 compliant.
25620         Needed for OSF/1 5.1.
25621
25622 2007-11-03  Bruno Haible  <bruno@clisp.org>
25623
25624         Fix out-of-memory handling of vasnprintf.
25625         * lib/printf-parse.c: Include <errno.h>.
25626         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
25627         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
25628         is already set.
25629
25630 2007-11-02  Eric Blake  <ebb9@byu.net>
25631
25632         Fix tests on cygwin.
25633         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
25634
25635 2007-11-01  Bruno Haible  <bruno@clisp.org>
25636
25637         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
25638         warning.
25639         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
25640         needed for POSIX compatibility.
25641
25642 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
25643
25644         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
25645         for compatibility with GNU.
25646
25647 2007-11-01  Bruno Haible  <bruno@clisp.org>
25648
25649         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
25650         (putenv): Renamed from rpl_putenv. Change argument type from
25651         'const char *' to 'char *'.
25652         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
25653         of defining putenv in config.h, just set REPLACE_PUTENV.
25654         * modules/putenv (Depends-on): Add stdlib.
25655         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25656         (Include): Use <stdlib.h>.
25657         * lib/stdlib.in.h (putenv): New declaration.
25658         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
25659         REPLACE_PUTENV.
25660         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
25661         REPLACE_PUTENV.
25662         Needed for MacOS X 10.5.0.
25663         Reported by Peter O'Gorman <peter@pogma.com>.
25664
25665 2007-11-01  Jim Meyering  <meyering@redhat.com>
25666
25667         Treat an empty date string exactly like "0".
25668         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
25669         if the remaining date string (to be parsed) is empty, use "0".
25670         Reported by Mischa Molhoek and discussed in this thread:
25671         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
25672
25673 2007-10-31  Bruno Haible  <bruno@clisp.org>
25674
25675         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
25676         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
25677         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
25678         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
25679         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
25680         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
25681
25682 2007-10-31  Bruno Haible  <bruno@clisp.org>
25683
25684         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
25685         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
25686         (AC_TYPE_LONG_LONG_INT): Use it.
25687         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
25688         it as well.
25689         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
25690         to m4/longlong.m4.
25691         * modules/stdint (Files): Remove m4/ulonglong.m4.
25692         * modules/strtoull (Files): Use m4/longlong.m4 instead of
25693         m4/ulonglong.m4.
25694         * modules/strtoumax (Files): Likewise.
25695
25696 2007-10-30  Bruno Haible  <bruno@clisp.org>
25697
25698         * modules/xvasprintf-posix: New file.
25699         Suggested by Eric Blake.
25700
25701 2007-10-30  Bruno Haible  <bruno@clisp.org>
25702
25703         * modules/xprintf-posix-tests: New file.
25704         * tests/test-xprintf-posix.sh: New file.
25705         * tests/test-xprintf-posix.c: New file.
25706         * tests/test-xfprintf-posix.c: New file.
25707
25708         * modules/xprintf-posix: New file.
25709
25710 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25711
25712         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
25713         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
25714         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
25715
25716 2007-10-29  Bruno Haible  <bruno@clisp.org>
25717
25718         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
25719         contain the special marker '_cv_'.
25720         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
25721         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
25722         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
25723         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
25724         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
25725         Reported by Ralf Wildenhues.
25726
25727 2007-10-29  Bruno Haible  <bruno@clisp.org>
25728
25729         * gnulib-tool (func_import): When --lgpl is not specified, set
25730         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
25731         GPLv3.
25732         Reported by Simon Josefsson.
25733
25734 2007-10-28  Bruno Haible  <bruno@clisp.org>
25735
25736         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
25737         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
25738         HAVE_DECL_ISFINITE.
25739         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
25740         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
25741         HAVE_DECL_ISFINITE.
25742
25743 2007-10-28  Bruno Haible  <bruno@clisp.org>
25744
25745         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
25746         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
25747
25748 2007-10-28  Bruno Haible  <bruno@clisp.org>
25749
25750         Fix link errors with Sun C 5.0 on Solaris 10.
25751         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
25752         function is declared but not present in the compiler's libm.
25753         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
25754         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
25755         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
25756         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
25757         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
25758         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
25759         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
25760         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
25761         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
25762         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
25763         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
25764         HAVE_DECL_FLOORL.
25765
25766 2007-10-28  Bruno Haible  <bruno@clisp.org>
25767
25768         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
25769         gl_FUNC_FLOORL. Cache the result.
25770         (gl_FUNC_FLOORL): Use it.
25771         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
25772         gl_FUNC_CEILL. Cache the result.
25773         (gl_FUNC_CEILL): Use it.
25774
25775         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
25776         gl_FUNC_FLOOR. Cache the result.
25777         (gl_FUNC_FLOOR): Use it.
25778         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
25779         gl_FUNC_CEIL. Cache the result.
25780         (gl_FUNC_CEIL): Use it.
25781
25782         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
25783         gl_FUNC_FLOORF. Cache the result.
25784         (gl_FUNC_FLOORF): Use it.
25785         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
25786         gl_FUNC_CEILF. Cache the result.
25787         (gl_FUNC_CEILF): Use it.
25788
25789 2007-10-28  Bruno Haible  <bruno@clisp.org>
25790
25791         * gnulib-tool: Allow specifying the LGPL version number through
25792         --lgpl=2 or --lgpl=3.
25793         (func_usage): Document --lgpl with argument.
25794         Handle --lgpl=... arguments.
25795         (func_import): Recognize also gl_LGPL calls with an argument. When
25796         --lgpl=2 is used and the module's license is just LGPL, report an
25797         error. Set sed_transform_lib_file according to the lgpl variable. In
25798         the generated files, use --lgpl or gl_LGPL invocations with argument,
25799         if necessary.
25800         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
25801         an LGPv2+ license.
25802         * doc/gnulib-tool.texi (Modified imports): Update explanation of
25803         gl_LGPL macro.
25804
25805 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25806             Bruno Haible  <bruno@clisp.org>
25807
25808         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
25809         (u16_uctomb_aux): Likewise.
25810         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
25811         !HAVE_INLINE.
25812         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
25813
25814 2007-10-28  Bruno Haible  <bruno@clisp.org>
25815
25816         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
25817         Invoke AM_GETTEXT_OPTION if it exists.
25818         * modules/vasprintf: Likewise.
25819         * modules/verror: Likewise.
25820         * modules/xprintf: Likewise.
25821         * modules/xvasprintf: Likewise.
25822
25823 2007-10-27  Ben Pfaff  <blp@gnu.org>
25824
25825         * lib/math.in.h: Define isfinite macro and prototypes for
25826         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
25827         implementations.
25828         * m4/math_h.m4: New substitutions for isfinite module.
25829         * lib/isfinite.c: New file.
25830         * m4/isfinite.m4: New file.
25831         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
25832         * modules/isfinite: New file.
25833         * modules/isfinite-tests: New file.
25834         * tests/tests-isfinite.c: New file.
25835         * doc/functions/isfinite.texi: Mention isfinite module.
25836         * MODULES.html.sh: Mention new module.
25837
25838 2007-10-27  Ben Pfaff  <blp@gnu.org>
25839
25840         Ralf Wildenhues reported that Tru64 4.0D declares the round
25841         functions but does not have definitions.
25842         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
25843         cannot be found in any library, set the output variable to
25844         "missing" instead of "".
25845         * m4/round.m4: Also use our substitute if we cannot find round in
25846         any library, even if it is declared.
25847         * m4/roundf.m4: Likewise for roundf.
25848         * m4/roundl.m4: Likewise for roundl.
25849         * lib/math.in.h: Undefine roundf, round, roundl before defining
25850         their replacements, to allow for hypothetical systems where these
25851         may be defined as macros but not available in libraries.
25852
25853 2007-10-27  Bruno Haible  <bruno@clisp.org>
25854
25855         * doc/gnulib.texi: Invoke @firstparagraphindent.
25856         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
25857         changes in gnulib.
25858         (Source changes): New section.
25859
25860 2007-10-26  Bruno Haible  <bruno@clisp.org>
25861
25862         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
25863         borrowed from autoconf.
25864
25865 2007-10-26  Bruno Haible  <bruno@clisp.org>
25866
25867         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
25868         strerror returned the empty string. Needed on HP-UX 11.00.
25869
25870 2007-10-24  Micah Cowan  <micah@cowan.name>
25871
25872         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
25873         * build-aux/bootstrap: Remove support for now-unnecessary option,
25874         --cvs-user, and envvars CVS_USER, CVS_RSH.
25875
25876 2007-10-24  Jim Meyering  <meyering@redhat.com>
25877
25878         Avoid diagnostics from sha1sum when there is no cached checksum.
25879         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
25880         if the po.s1 file hasn't been created yet.
25881
25882         * build-aux/bootstrap: Sync from coreutils:
25883         2007-10-24  Jim Meyering  <meyering@redhat.com>
25884         Get gnulib from the git repository, not from an obsolete cvs one.
25885         * build-aux/bootstrap: Suggestion from Micah Cowan.
25886         2007-10-04  Jim Meyering  <jim@meyering.net>
25887         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
25888         (update_po_files): Work also when there are no .po files in po/.
25889
25890 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
25891
25892         * README: Append ".git" to git and cg examples.
25893         Problem reported by Benoit Sigoure.
25894
25895 2007-10-23  Micah Cowan  <micah@cowan.name>
25896
25897         * users.txt: Add wget.
25898
25899 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25900
25901         Fix linking of some unistdio tests on FreeBSD.
25902         * modules/unistdio/u16-vsnprintf-tests
25903         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
25904         * modules/unistdio/u16-vsprintf-tests
25905         (test_u16_vsnprintf1_LDADD): Likewise.
25906         * modules/unistdio/u32-vsnprintf-tests
25907         (test_u32_vsnprintf1_LDADD): Likewise.
25908         * modules/unistdio/u32-vsprintf-tests
25909         (test_u32_vsprintf1_LDADD): Likewise.
25910         * modules/unistdio/u8-vsnprintf-tests
25911         (test_u8_vsnprintf1_LDADD): Likewise.
25912         * modules/unistdio/u8-vsprintf-tests
25913         (test_u8_vsprintf1_LDADD): Likewise.
25914         * modules/unistdio/ulc-vsnprintf-tests
25915         (test_ulc_vsnprintf1_LDADD): Likewise.
25916         * modules/unistdio/ulc-vsprintf-tests
25917         (test_ulc_vsprintf1_LDADD): Likewise.
25918
25919         Fix linking of some uniconv tests on FreeBSD.
25920         * modules/uniconv/u16-conv-from-enc-tests
25921         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
25922         * modules/uniconv/u16-conv-to-enc-tests
25923         (test_u16_conv_to_enc_LDADD): Likewise.
25924         * modules/uniconv/u16-strconv-from-enc-tests
25925         (test_u16_strconv_from_enc_LDADD): Likewise.
25926         * modules/uniconv/u16-strconv-to-enc-tests
25927         (test_u16_strconv_to_enc_LDADD): Likewise.
25928         * modules/uniconv/u32-conv-from-enc-tests
25929         (test_u32_conv_from_enc_LDADD): Likewise.
25930         * modules/uniconv/u32-conv-to-enc-tests
25931         (test_u32_conv_to_enc_LDADD): Likewise.
25932         * modules/uniconv/u32-strconv-from-enc-tests
25933         (test_u32_strconv_from_enc_LDADD): Likewise.
25934         * modules/uniconv/u32-strconv-to-enc-tests
25935         (test_u32_strconv_to_enc_LDADD): Likewise.
25936         * modules/uniconv/u8-conv-from-enc-tests
25937         (test_u8_conv_from_enc_LDADD): Likewise.
25938         * modules/uniconv/u8-conv-to-enc-tests
25939         (test_u8_conv_to_enc_LDADD): Likewise.
25940         * modules/uniconv/u8-strconv-from-enc-tests
25941         (test_u8_strconv_from_enc_LDADD): Likewise.
25942         * modules/uniconv/u8-strconv-to-enc-tests
25943         (test_u8_strconv_to_enc_LDADD): Likewise.
25944
25945 2007-10-22  Bruno Haible  <bruno@clisp.org>
25946
25947         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
25948         size.
25949
25950 2007-10-22  Eric Blake  <ebb9@byu.net>
25951
25952         Tweak x*printf documentation.
25953         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
25954         variable name and comments.
25955         Suggested by Bruno Haible.
25956
25957 2007-10-22  Bruno Haible  <bruno@clisp.org>
25958
25959         * lib/acl.c (copy_acl): Fix file name in comment.
25960
25961 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
25962
25963         Fix Tru64 problem with stdbool.h.
25964         * lib/stdbool.in.h (false, true):
25965         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
25966         Don't declare as an enum in this situation; it runs afoul of Tru64.
25967         Problem reported by Steven M. Schweda in
25968         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
25969
25970 2007-10-22  Eric Blake  <ebb9@byu.net>
25971
25972         Also wrap vf?printf.
25973         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
25974         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
25975         (xvprintf, xvfprintf): New functions.
25976
25977 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25978
25979         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
25980         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
25981
25982         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
25983         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
25984
25985 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
25986
25987         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
25988         by Bruno Haible.
25989
25990 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25991
25992         * lib/getloadavg.c
25993         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
25994         Undef `sys' after including sys/table.h, for Tru64 4.0D.
25995
25996         * tests/test-i-ring.c: Work for C89.
25997
25998 2007-10-22  Bruno Haible  <bruno@clisp.org>
25999
26000         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
26001         -1u, in preprocessor expression, so that we don't test for the bug
26002         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
26003         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
26004
26005 2007-10-22  Eric Blake  <ebb9@byu.net>
26006
26007         * tests/test-yesno.sh: Silence stderr during test.
26008
26009 2007-10-22  Simon Josefsson  <simon@josefsson.org>
26010
26011         * modules/crypto/gc-camellia: New file.
26012
26013         * m4/gc-camellia.m4: New file.
26014
26015         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
26016
26017         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
26018
26019 2007-10-22  Simon Josefsson  <simon@josefsson.org>
26020
26021         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
26022         --help to stdout.  Reported by sms@antinode.org (Steven
26023         M. Schweda).
26024
26025 2007-10-22  Simon Josefsson  <simon@josefsson.org>
26026
26027         * users.txt: Fix link to libksba.
26028
26029 2007-10-21  Ben Pfaff  <blp@gnu.org>
26030
26031         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
26032         round.c roundf implementation that depends on floorf and ceilf to
26033         be tested unconditionally.
26034
26035 2007-10-21  Ben Pfaff  <blp@gnu.org>
26036
26037         * m4/check-libm-func.m4: Removed.
26038         * m4/check-math-lib.m4: New file.
26039         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
26040         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
26041         definition and lack of AC_LIBOBJ([roundf]).
26042         * m4/roundl.m4: Ditto, and similarly for roundl.
26043         * modules/round: Reference new m4 file.
26044         * modules/roundf: Ditto.
26045         * modules/roundl: Ditto.
26046         * tests/test-round2.c (main): Use ROUND instead of round.
26047         Bug report from Bruno Haible.
26048
26049 2007-10-21  Bruno Haible  <bruno@clisp.org>
26050
26051         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
26052         context.
26053
26054 2007-10-21  Bruno Haible  <bruno@clisp.org>
26055
26056         * tests/test-wcwidth.c (main): Allow negative result for some control
26057         characters.
26058
26059         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
26060         Needed on OSF/1 5.1.
26061
26062 2007-10-21  Bruno Haible  <bruno@clisp.org>
26063
26064         * tests/test-floorf1.c: Include isnanf.h.
26065         (main): Use isnanf() instead of isnan().
26066         * tests/test-ceilf1.c: Include isnanf.h.
26067         (main): Use isnanf() instead of isnan().
26068         * tests/test-truncf1.c: Include isnanf.h.
26069         (main): Use isnanf() instead of isnan().
26070         * tests/test-roundf1.c: Include isnanf.h.
26071         (main): Use isnanf() instead of isnan().
26072
26073 2007-10-21  Eric Blake  <ebb9@byu.net>
26074
26075         * users.txt: Update URL for m4.
26076
26077 2007-10-21  Bruno Haible  <bruno@clisp.org>
26078
26079         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
26080
26081 2007-10-21  Bruno Haible  <bruno@clisp.org>
26082
26083         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
26084         Git's management files if the CVS files are not present.
26085
26086 2007-10-20  Bruno Haible  <bruno@clisp.org>
26087
26088         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
26089         gcc-3.4.x.
26090
26091 2007-10-20  Ben Pfaff  <blp@gnu.org>
26092
26093         * lib/math.in.h: Declare round, roundf, roundl if we are providing
26094         implementations.
26095         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
26096         * lib/round.c: New file.
26097         * lib/roundf.c: New file.
26098         * lib/roundl.c: New file.
26099         * m4/round.m4: New file.
26100         * m4/roundf.m4: New file.
26101         * m4/roundl.m4: New file.
26102         * m4/check-libm-func-m4: New file.
26103         * modules/math: Replace round, roundf, roundl related @VARS@ in
26104         math.in.h.
26105         * modules/round: New file.
26106         * modules/round-tests: New file.
26107         * modules/roundf: New file.
26108         * modules/roundf-tests: New file.
26109         * modules/roundl: New file.
26110         * modules/roundl-tests: New file.
26111         * tests/test-round1.c: New file.
26112         * tests/test-round2.c: New file.
26113         * tests/test-roundf1.c: New file.
26114         * tests/test-roundf2.c: New file.
26115         * tests/test-roundl.c: New file.
26116         * doc/functions/round.texi: Mention round module.
26117         * doc/functions/roundf.texi: Mention roundf module.
26118         * doc/functions/roundl.texi: Mention roundl module.
26119         * MODULES.html.sh: Mention new modules.
26120         Thanks to Bruno Haible for suggestions.
26121
26122 2007-10-20  Jim Meyering  <meyering@redhat.com>
26123
26124         * lib/xprintf.c: Include <config.h> unconditionally.
26125
26126         Change xprintf's license to GPL.
26127         * modules/xprintf (License): s/LGPL/GPL/, since this module
26128         depends on modules (exit and exitfail) which are GPL.
26129         Suggestion from Bruno Haible.
26130
26131         xprintf fixes.
26132         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
26133         Use a clearer diagnostic.
26134         Patch from Bruno Haible.
26135
26136 2007-10-20  Bruno Haible  <bruno@clisp.org>
26137
26138         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
26139         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
26140         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26141
26142 2007-10-20  Bruno Haible  <bruno@clisp.org>
26143
26144         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
26145         precision in the comparison result > x - 1 or similar.
26146         * tests/test-ceilf2.c (correct_result_p): Likewise.
26147         * tests/test-truncf2.c (correct_result_p): Likewise.
26148         * tests/test-trunc2.c (correct_result_p): Likewise.
26149         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26150
26151 2007-10-20  Bruno Haible  <bruno@clisp.org>
26152
26153         * modules/ceil: New file.
26154         * m4/ceil.m4: New file.
26155         * doc/functions/ceil.texi: Mention the 'ceil' module.
26156
26157 2007-10-20  Bruno Haible  <bruno@clisp.org>
26158
26159         * modules/floor: New file.
26160         * m4/floor.m4: New file.
26161         * doc/functions/floor.texi: Mention the 'floor' module.
26162
26163 2007-10-20  Bruno Haible  <bruno@clisp.org>
26164
26165         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
26166         of %a.
26167         * modules/floorf-tests (Depends-on): Likewise.
26168         * modules/truncf-tests (Depends-on): Likewise.
26169         * modules/trunc-tests (Depends-on): Likewise.
26170         Reported by Ben Pfaff.
26171
26172 2007-10-19  Jim Meyering  <meyering@redhat.com>
26173
26174         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
26175         Don't bother testing specific errno values.  Just test ferror.
26176
26177         New module: xprintf
26178         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
26179
26180 2007-10-19  Bruno Haible  <bruno@clisp.org>
26181
26182         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
26183         syntax.
26184         * modules/javaexec (Makefile.am): Likewise.
26185         * modules/relocatable-prog (Makefile.am): Likewise.
26186         Suggested by Jim Meyering.
26187
26188 2007-10-18  Bruno Haible  <bruno@clisp.org>
26189
26190         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
26191         Reported by Jim Meyering.
26192
26193 2007-10-18  Eric Blake  <ebb9@byu.net>
26194
26195         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
26196
26197 2007-10-18  Bruno Haible  <bruno@clisp.org>
26198
26199         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
26200         the format string into writable memory. Needed in Fortify conditions.
26201
26202 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
26203             Bruno Haible  <bruno@clisp.org>
26204
26205         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
26206         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
26207         * modules/trim (Depends-on): Add mbchar.
26208         (configure.ac): Add gl_FUNC_MBRTOWC.
26209         (Makefile.am): Augment lib_SOURCES.
26210
26211 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
26212
26213         Modify glob.c to use fstatat and dirfd, to simplify it.
26214         Suggested by Eric Blake.
26215         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
26216         Don't include <stdbool.h>; not used.
26217         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
26218         (link_exists_p): Simplify implementation, since we can now assume
26219         dirfd and fstatat.
26220         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
26221
26222 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26223
26224         * gnulib-tool (func_get_dependencies): Fix sed script to
26225         match only tests.
26226
26227 2007-10-17  Bruno Haible  <bruno@clisp.org>
26228
26229         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
26230         allow locale names without encoding suffix.
26231         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
26232         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
26233
26234 2007-10-16  Bruno Haible  <bruno@clisp.org>
26235
26236         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
26237         * lib/getgroups.c (getgroups): Likewise.
26238         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
26239
26240 2007-10-16  Bruno Haible  <bruno@clisp.org>
26241
26242         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
26243         * modules/malloc-posix (License): Likewise.
26244         * modules/realloc-posix (License): Likewise.
26245         * modules/calloc-posix (License): Likewise.
26246         * modules/intprops (License): Change from GPL to LGPL, with
26247         Paul Eggert's approval.
26248
26249 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
26250
26251         Merge glibc changes into lib/glob.c.
26252
26253         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
26254         2007-10-15 04:59:03 UTC.  Here are the changes:
26255
26256         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
26257
26258         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
26259
26260         * lib/glob.c: Add some branch prediction throughout.
26261
26262         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
26263
26264         [BZ #5103]
26265         * lib/glob.c (glob): Recognize patterns starting \/.
26266
26267         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
26268
26269         [BZ #3996]
26270         * lib/glob.c (attribute_hidden): Define if not defined.
26271         (glob): Unescape dirname, filename or username when needed and not
26272         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
26273         is NULL.  Handle unescaped [ in pattern without closing ].
26274         Don't pass GLOB_CHECK down to recursive glob for directories.
26275         (__glob_pattern_type): New function.
26276         (__glob_pattern_p): Implement using __glob_pattern_type.
26277         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
26278         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
26279         Remove unreachable code.
26280
26281         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
26282
26283         * lib/glob.c (glob_in_dir): Add some comments and asserts to
26284         explain why there are no leaks.
26285
26286         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
26287
26288         [BZ #3253]
26289         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
26290         time, rather allocate increasingly bigger arrays of pointers, if
26291         possible with alloca, if too large with malloc.
26292
26293 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
26294
26295         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
26296         Problem reported by H.Merijn Brand in
26297         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
26298         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
26299         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
26300
26301 2007-10-15  Bruno Haible  <bruno@clisp.org>
26302
26303         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
26304         with explicit rpl_ prefix.
26305         * lib/fopen.c (fopen): Likewise.
26306         * lib/freopen.c (freopen): Likewise.
26307         * lib/iconv.c (iconv): Likewise.
26308         * lib/iconv_close.c (iconv_close): Likewise.
26309
26310 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26311
26312         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
26313
26314 2007-10-15  Bruno Haible  <bruno@clisp.org>
26315
26316         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
26317         <stddef.h> instead of <stdlib.h> since we only need NULL.
26318         Reported by Ben Pfaff <blp@cs.stanford.edu>.
26319
26320 2007-10-15  Bruno Haible  <bruno@clisp.org>
26321
26322         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
26323         Replace paragraph talking about LIBOBJS.
26324         Reported by Colin Watson <cjwatson@debian.org>.
26325
26326 2007-10-15  Bruno Haible  <bruno@clisp.org>
26327
26328         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
26329         <stdlib.h> before using NULL.
26330
26331 2007-10-15  Simon Josefsson  <simon@josefsson.org>
26332
26333         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
26334         Reported by Albert Chin <china@thewrittenword.com>.
26335
26336 2007-10-14  Bruno Haible  <bruno@clisp.org>
26337
26338         * modules/iconv_open-utf-tests: New file.
26339         * tests/test-iconv-utf.c: New file.
26340
26341         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
26342         * modules/iconv_open-utf: New file.
26343         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
26344         (iconv, iconv_close): New declarations.
26345         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
26346         be defined.
26347         (iconv_open): Add special handling of conversion between UTF-8 and
26348         UTF-{16,32}{BE,LE}.
26349         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
26350         * lib/iconv_close.c: New file.
26351         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
26352         gl_FUNC_ICONV_OPEN.
26353         (gl_FUNC_ICONV_OPEN): Use it.
26354         (gl_FUNC_ICONV_OPEN_UTF): New macro.
26355         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
26356         and REPLACE_ICONV_UTF.
26357         * modules/iconv_open (Depends-on): Add c-strcase.
26358         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
26359         ICONV_CONST.
26360         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
26361
26362 2007-10-13  Albert Chin  <china@thewrittenword.com>
26363             Bruno Haible  <bruno@clisp.org>
26364
26365         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
26366         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
26367
26368 2007-10-13  Bruno Haible  <bruno@clisp.org>
26369
26370         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
26371         defined, use the ISO C99 inline semantics.
26372         * lib/argp.h (ARGP_EI): Likewise.
26373
26374 2007-10-13  Bruno Haible  <bruno@clisp.org>
26375
26376         Handle 'inline' change in gcc 4.3.0.
26377         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
26378         argp_fmtstream_write, argp_fmtstream_set_lmargin,
26379         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
26380         argp_fmtstream_point): Disable 'extern' declaration if the function
26381         definition is going to be provided inline.
26382         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
26383         semantics, not the ISO C99 inline semantics.
26384         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
26385         'extern' declaration if the function definition is going to be provided
26386         inline.
26387         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
26388         the GNU C inline semantics, not the ISO C99 inline semantics. With
26389         GCC 4.2, avoid a warning.
26390
26391 2007-10-13  Bruno Haible  <bruno@clisp.org>
26392
26393         * lib/freading.h (freading): Enable the use of __freading for
26394         glibc >= 2.7.
26395         * lib/freading.c (freading): Likewise.
26396
26397 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
26398
26399         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
26400         "warning: C99 inline functions are not supported; using GNU89".
26401
26402 2007-10-12  Bruno Haible  <bruno@clisp.org>
26403
26404         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
26405         of 2.
26406         * tests/test-ceilf2.c: New file.
26407         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
26408
26409         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
26410         * modules/ceilf-tests: Update.
26411
26412 2007-10-12  Bruno Haible  <bruno@clisp.org>
26413
26414         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
26415         of 2.
26416         * tests/test-floorf2.c: New file.
26417         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
26418
26419         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
26420         * modules/floorf-tests: Update.
26421
26422 2007-10-12  Bruno Haible  <bruno@clisp.org>
26423
26424         * tests/test-trunc2.c: New file.
26425         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
26426
26427         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
26428         * modules/trunc-tests: Update.
26429
26430 2007-10-12  Bruno Haible  <bruno@clisp.org>
26431
26432         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
26433         of 2.
26434         * tests/test-truncf2.c: New file.
26435         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
26436
26437         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
26438         * modules/truncf-tests: Update.
26439
26440 2007-10-11  Eric Blake  <ebb9@byu.net>
26441
26442         Don't claim strerror is broken on Interix.
26443         * doc/functions/strerror.texi (strerror): Known broken systems are
26444         now Solaris 8, and not Interix.
26445         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
26446         Interix on cross-compile.
26447         Reported by Martin Koeppe in
26448         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
26449
26450 2007-10-11  Bruno Haible  <bruno@clisp.org>
26451
26452         * modules/i-ring-tests: New file.
26453         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
26454         instead of assert.
26455
26456 2007-10-11  Bruno Haible  <bruno@clisp.org>
26457
26458         * modules/filenamecat-tests: New file.
26459         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
26460         * lib/filenamecat.c: Remove test code.
26461
26462 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
26463
26464         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
26465
26466         * lib/strerror.c: Include <string.h> always, to test interface,
26467         and to remove the need for the dummy.
26468         Include intprops.h to compute width instead of doing it ourselves
26469         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
26470         (strerror): Define it to return NULL if there's no system strerror.
26471         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
26472         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
26473         ancient pre-strerror Unix systems well any more.  Saying "unknown
26474         system error" is enough.
26475         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
26476         simpler strerror.c implementation.
26477         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
26478         Simplify the tests to reflect the simpler strerror implementation.
26479         * modules/strerror (Depends-on): Add intprops.
26480
26481 2007-10-09  Eric Blake  <ebb9@byu.net>
26482
26483         Silence test-fpending.
26484         * modules/fpending-tests (Files): Add wrapper script.
26485         * tests/test-fpending.sh: New file.
26486
26487 2007-10-09  Bruno Haible  <bruno@clisp.org>
26488
26489         * MODULES.html.sh (func_module): Don't create a hyperlink for
26490         function names like 'printf_frexp'.
26491         (Misc): Add crc, memxor.
26492         (Characteristics of floating types): New section.
26493         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
26494         isnanf-nolibm, signbit, trunc, truncf, truncl.
26495         (Enhancements for ISO C 99 functions): New subsection Input/output.
26496         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
26497         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
26498         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
26499         (Compatibility checks for POSIX:2001 functions): Add clock-time.
26500         (Enhancements for POSIX:2001 functions): Add chdir-long.
26501         (File system functions): Add areadlink, chdir-safer, read-file.
26502         Remove cycle-check.
26503         (File system as inode set): New section.
26504         (Date and time): Add gethrxtime.
26505         (Multithreading): Add openmp.
26506         (Internationalization functions): Add localename.
26507         (Unicode string functions): Add unistr/u*-mbsnlen.
26508         (Support for maintaining and releasing projects): Add git-version-gen.
26509         (Lone files): Remove directories.
26510
26511 2007-10-08  Ben Pfaff  <blp@gnu.org>
26512
26513         * lib/xmalloca.h: Fix typo in comment.
26514
26515 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
26516
26517         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
26518         when avoiding problems with integer overflow.  Use a portable test
26519         instead.
26520
26521 2007-10-08  Simon Josefsson  <simon@josefsson.org>
26522
26523         * modules/dummy (License): Change to LGPLv2+.
26524         * modules/float (License): Likewise
26525         * modules/realloc (License): Likewise
26526         * modules/stdlib (License): Likewise
26527
26528 2007-10-07  Bruno Haible  <bruno@clisp.org>
26529
26530         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
26531         * floor.c (TWO_MANT_DIG): Likewise.
26532         * ceil.c (TWO_MANT_DIG): Likewise.
26533         Reported by Ben Pfaff.
26534
26535 2007-10-07  Bruno Haible  <bruno@clisp.org>
26536
26537         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
26538         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
26539         * lib/frexp.c (FUNC): Likewise.
26540         * lib/printf-frexp.h (printf_frexp): Likewise.
26541         * lib/printf-frexpl.h (printf_frexpl): Likewise.
26542         * lib/printf-frexp.c (FUNC): Likewise.
26543         Suggested by Jim Meyering.
26544
26545 2007-10-07  Jim Meyering  <meyering@redhat.com>
26546
26547         Make xnanosleep's integer overflow test more robust.
26548         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
26549         so that gcc-4.3.0 doesn't optimize away this test for overflow.
26550
26551 2007-10-07  Bruno Haible  <bruno@clisp.org>
26552
26553         * NEWS: Mention the license change.
26554
26555         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
26556         abbreviations in the modules files.
26557
26558         Change copyright notice from GPLv2+ to GPLv3+.
26559         * README: Change copyright notice.
26560         * MODULES.html.sh: Likewise.
26561         * build-aux/bootstrap.conf: Likewise.
26562         * build-aux/config.libpath: Likewise.
26563         * build-aux/csharpcomp.sh.in: Likewise.
26564         * build-aux/csharpexec.sh.in: Likewise.
26565         * build-aux/install-reloc: Likewise.
26566         * build-aux/javacomp.sh.in: Likewise.
26567         * build-aux/javaexec.sh.in: Likewise.
26568         * build-aux/ldd.sh.in: Likewise.
26569         * build-aux/reloc-ldflags: Likewise.
26570         * build-aux/relocatable.sh.in: Likewise.
26571         * build-aux/x-to-1.in: Likewise.
26572         * check-module: Likewise.
26573         * config/srclistvars.sh: Likewise.
26574         * gnulib-tool: Likewise.
26575         * lib/acl-internal.h: Likewise.
26576         * lib/acl.c: Likewise.
26577         * lib/acl.h: Likewise.
26578         * lib/acl_entries.c: Likewise.
26579         * lib/areadlink-with-size.c: Likewise.
26580         * lib/areadlink.c: Likewise.
26581         * lib/areadlink.h: Likewise.
26582         * lib/argmatch.c: Likewise.
26583         * lib/argmatch.h: Likewise.
26584         * lib/argp-ba.c: Likewise.
26585         * lib/argp-eexst.c: Likewise.
26586         * lib/argp-fmtstream.c: Likewise.
26587         * lib/argp-fmtstream.h: Likewise.
26588         * lib/argp-fs-xinl.c: Likewise.
26589         * lib/argp-help.c: Likewise.
26590         * lib/argp-namefrob.h: Likewise.
26591         * lib/argp-parse.c: Likewise.
26592         * lib/argp-pin.c: Likewise.
26593         * lib/argp-pv.c: Likewise.
26594         * lib/argp-pvh.c: Likewise.
26595         * lib/argp-xinl.c: Likewise.
26596         * lib/argp.h: Likewise.
26597         * lib/at-func.c: Likewise.
26598         * lib/atanl.c: Likewise.
26599         * lib/backupfile.c: Likewise.
26600         * lib/backupfile.h: Likewise.
26601         * lib/basename.c: Likewise.
26602         * lib/binary-io.h: Likewise.
26603         * lib/byteswap.in.h: Likewise.
26604         * lib/c-stack.c: Likewise.
26605         * lib/c-stack.h: Likewise.
26606         * lib/c-strcasestr.c: Likewise.
26607         * lib/c-strcasestr.h: Likewise.
26608         * lib/c-strstr.c: Likewise.
26609         * lib/c-strstr.h: Likewise.
26610         * lib/c-strtod.c: Likewise.
26611         * lib/calloc.c: Likewise.
26612         * lib/canon-host.c: Likewise.
26613         * lib/canon-host.h: Likewise.
26614         * lib/canonicalize-lgpl.c: Likewise.
26615         * lib/canonicalize.c: Likewise.
26616         * lib/canonicalize.h: Likewise.
26617         * lib/ceil.c: Likewise.
26618         * lib/ceilf.c: Likewise.
26619         * lib/ceill.c: Likewise.
26620         * lib/chdir-long.c: Likewise.
26621         * lib/chdir-long.h: Likewise.
26622         * lib/chdir-safer.c: Likewise.
26623         * lib/chdir-safer.h: Likewise.
26624         * lib/chown.c: Likewise.
26625         * lib/classpath.c: Likewise.
26626         * lib/classpath.h: Likewise.
26627         * lib/clean-temp.c: Likewise.
26628         * lib/clean-temp.h: Likewise.
26629         * lib/cloexec.c: Likewise.
26630         * lib/close-stream.c: Likewise.
26631         * lib/closein.c: Likewise.
26632         * lib/closein.h: Likewise.
26633         * lib/closeout.c: Likewise.
26634         * lib/closeout.h: Likewise.
26635         * lib/concat-filename.c: Likewise.
26636         * lib/copy-file.c: Likewise.
26637         * lib/copy-file.h: Likewise.
26638         * lib/count-one-bits.h: Likewise.
26639         * lib/crc.c: Likewise.
26640         * lib/crc.h: Likewise.
26641         * lib/creat-safer.c: Likewise.
26642         * lib/csharpcomp.c: Likewise.
26643         * lib/csharpcomp.h: Likewise.
26644         * lib/csharpexec.c: Likewise.
26645         * lib/csharpexec.h: Likewise.
26646         * lib/cycle-check.c: Likewise.
26647         * lib/cycle-check.h: Likewise.
26648         * lib/diacrit.c: Likewise.
26649         * lib/diacrit.h: Likewise.
26650         * lib/diffseq.h: Likewise.
26651         * lib/dirchownmod.c: Likewise.
26652         * lib/dirent.in.h: Likewise.
26653         * lib/dirfd.c: Likewise.
26654         * lib/dirfd.h: Likewise.
26655         * lib/dirname.c: Likewise.
26656         * lib/dirname.h: Likewise.
26657         * lib/dummy.c: Likewise.
26658         * lib/dup-safer.c: Likewise.
26659         * lib/dup2.c: Likewise.
26660         * lib/eealloc.h: Likewise.
26661         * lib/error.c: Likewise.
26662         * lib/error.h: Likewise.
26663         * lib/euidaccess.c: Likewise.
26664         * lib/exclude.c: Likewise.
26665         * lib/exclude.h: Likewise.
26666         * lib/execute.c: Likewise.
26667         * lib/execute.h: Likewise.
26668         * lib/exitfail.c: Likewise.
26669         * lib/exitfail.h: Likewise.
26670         * lib/expl.c: Likewise.
26671         * lib/fatal-signal.c: Likewise.
26672         * lib/fatal-signal.h: Likewise.
26673         * lib/fbufmode.c: Likewise.
26674         * lib/fbufmode.h: Likewise.
26675         * lib/fchdir.c: Likewise.
26676         * lib/fchmodat.c: Likewise.
26677         * lib/fchownat.c: Likewise.
26678         * lib/fcntl--.h: Likewise.
26679         * lib/fcntl-safer.h: Likewise.
26680         * lib/fcntl.in.h: Likewise.
26681         * lib/fd-safer.c: Likewise.
26682         * lib/fflush.c: Likewise.
26683         * lib/file-has-acl.c: Likewise.
26684         * lib/file-set.c: Likewise.
26685         * lib/file-type.c: Likewise.
26686         * lib/file-type.h: Likewise.
26687         * lib/fileblocks.c: Likewise.
26688         * lib/filemode.c: Likewise.
26689         * lib/filemode.h: Likewise.
26690         * lib/filename.h: Likewise.
26691         * lib/filenamecat.c: Likewise.
26692         * lib/filenamecat.h: Likewise.
26693         * lib/findprog.c: Likewise.
26694         * lib/findprog.h: Likewise.
26695         * lib/float.in.h: Likewise.
26696         * lib/floor.c: Likewise.
26697         * lib/floorf.c: Likewise.
26698         * lib/floorl.c: Likewise.
26699         * lib/fopen-safer.c: Likewise.
26700         * lib/fopen.c: Likewise.
26701         * lib/fpending.c: Likewise.
26702         * lib/fpending.h: Likewise.
26703         * lib/fprintf.c: Likewise.
26704         * lib/fprintftime.h: Likewise.
26705         * lib/fpucw.h: Likewise.
26706         * lib/fpurge.c: Likewise.
26707         * lib/fpurge.h: Likewise.
26708         * lib/freadable.c: Likewise.
26709         * lib/freadable.h: Likewise.
26710         * lib/freadahead.c: Likewise.
26711         * lib/freadahead.h: Likewise.
26712         * lib/freading.c: Likewise.
26713         * lib/freading.h: Likewise.
26714         * lib/free.c: Likewise.
26715         * lib/freopen.c: Likewise.
26716         * lib/frexp.c: Likewise.
26717         * lib/frexpl.c: Likewise.
26718         * lib/fseek.c: Likewise.
26719         * lib/fseterr.c: Likewise.
26720         * lib/fseterr.h: Likewise.
26721         * lib/fstatat.c: Likewise.
26722         * lib/fstrcmp.c: Likewise.
26723         * lib/fstrcmp.h: Likewise.
26724         * lib/fsusage.c: Likewise.
26725         * lib/fsusage.h: Likewise.
26726         * lib/ftell.c: Likewise.
26727         * lib/ftello.c: Likewise.
26728         * lib/fts-cycle.c: Likewise.
26729         * lib/fts.c: Likewise.
26730         * lib/fts_.h: Likewise.
26731         * lib/full-read.c: Likewise.
26732         * lib/full-read.h: Likewise.
26733         * lib/full-write.c: Likewise.
26734         * lib/full-write.h: Likewise.
26735         * lib/fwritable.c: Likewise.
26736         * lib/fwritable.h: Likewise.
26737         * lib/fwriteerror.c: Likewise.
26738         * lib/fwriteerror.h: Likewise.
26739         * lib/fwriting.c: Likewise.
26740         * lib/fwriting.h: Likewise.
26741         * lib/gcd.c: Likewise.
26742         * lib/gcd.h: Likewise.
26743         * lib/getcwd.c: Likewise.
26744         * lib/getdate.h: Likewise.
26745         * lib/getdate.y: Likewise.
26746         * lib/getdomainname.c: Likewise.
26747         * lib/getdomainname.h: Likewise.
26748         * lib/getgroups.c: Likewise.
26749         * lib/gethostname.c: Likewise.
26750         * lib/gethrxtime.c: Likewise.
26751         * lib/gethrxtime.h: Likewise.
26752         * lib/getloadavg.c: Likewise.
26753         * lib/getndelim2.c: Likewise.
26754         * lib/getndelim2.h: Likewise.
26755         * lib/getnline.c: Likewise.
26756         * lib/getnline.h: Likewise.
26757         * lib/getopt.c: Likewise.
26758         * lib/getopt.in.h: Likewise.
26759         * lib/getopt1.c: Likewise.
26760         * lib/getopt_int.h: Likewise.
26761         * lib/getpagesize.h: Likewise.
26762         * lib/getsubopt.c: Likewise.
26763         * lib/gettime.c: Likewise.
26764         * lib/getugroups.c: Likewise.
26765         * lib/getugroups.h: Likewise.
26766         * lib/getusershell.c: Likewise.
26767         * lib/gl_anyavltree_list1.h: Likewise.
26768         * lib/gl_anyavltree_list2.h: Likewise.
26769         * lib/gl_anyhash_list1.h: Likewise.
26770         * lib/gl_anyhash_list2.h: Likewise.
26771         * lib/gl_anylinked_list1.h: Likewise.
26772         * lib/gl_anylinked_list2.h: Likewise.
26773         * lib/gl_anyrbtree_list1.h: Likewise.
26774         * lib/gl_anyrbtree_list2.h: Likewise.
26775         * lib/gl_anytree_list1.h: Likewise.
26776         * lib/gl_anytree_list2.h: Likewise.
26777         * lib/gl_anytree_oset.h: Likewise.
26778         * lib/gl_anytreehash_list1.h: Likewise.
26779         * lib/gl_anytreehash_list2.h: Likewise.
26780         * lib/gl_array_list.c: Likewise.
26781         * lib/gl_array_list.h: Likewise.
26782         * lib/gl_array_oset.c: Likewise.
26783         * lib/gl_array_oset.h: Likewise.
26784         * lib/gl_avltree_list.c: Likewise.
26785         * lib/gl_avltree_list.h: Likewise.
26786         * lib/gl_avltree_oset.c: Likewise.
26787         * lib/gl_avltree_oset.h: Likewise.
26788         * lib/gl_avltreehash_list.c: Likewise.
26789         * lib/gl_avltreehash_list.h: Likewise.
26790         * lib/gl_carray_list.c: Likewise.
26791         * lib/gl_carray_list.h: Likewise.
26792         * lib/gl_linked_list.c: Likewise.
26793         * lib/gl_linked_list.h: Likewise.
26794         * lib/gl_linkedhash_list.c: Likewise.
26795         * lib/gl_linkedhash_list.h: Likewise.
26796         * lib/gl_list.c: Likewise.
26797         * lib/gl_list.h: Likewise.
26798         * lib/gl_oset.c: Likewise.
26799         * lib/gl_oset.h: Likewise.
26800         * lib/gl_rbtree_list.c: Likewise.
26801         * lib/gl_rbtree_list.h: Likewise.
26802         * lib/gl_rbtree_oset.c: Likewise.
26803         * lib/gl_rbtree_oset.h: Likewise.
26804         * lib/gl_rbtreehash_list.c: Likewise.
26805         * lib/gl_rbtreehash_list.h: Likewise.
26806         * lib/gl_sublist.c: Likewise.
26807         * lib/gl_sublist.h: Likewise.
26808         * lib/group-member.c: Likewise.
26809         * lib/group-member.h: Likewise.
26810         * lib/hard-locale.c: Likewise.
26811         * lib/hard-locale.h: Likewise.
26812         * lib/hash-pjw.c: Likewise.
26813         * lib/hash-pjw.h: Likewise.
26814         * lib/hash-triple.c: Likewise.
26815         * lib/hash.c: Likewise.
26816         * lib/hash.h: Likewise.
26817         * lib/human.c: Likewise.
26818         * lib/human.h: Likewise.
26819         * lib/i-ring.c: Likewise.
26820         * lib/i-ring.h: Likewise.
26821         * lib/idcache.c: Likewise.
26822         * lib/imaxabs.c: Likewise.
26823         * lib/imaxdiv.c: Likewise.
26824         * lib/inet_pton.c: Likewise.
26825         * lib/inet_pton.h: Likewise.
26826         * lib/intprops.h: Likewise.
26827         * lib/inttostr.c: Likewise.
26828         * lib/inttostr.h: Likewise.
26829         * lib/inttypes.in.h: Likewise.
26830         * lib/isapipe.c: Likewise.
26831         * lib/isdir.c: Likewise.
26832         * lib/isnan.c: Likewise.
26833         * lib/isnan.h: Likewise.
26834         * lib/isnanf.c: Likewise.
26835         * lib/isnanf.h: Likewise.
26836         * lib/isnanl-nolibm.h: Likewise.
26837         * lib/isnanl.c: Likewise.
26838         * lib/isnanl.h: Likewise.
26839         * lib/javacomp.c: Likewise.
26840         * lib/javacomp.h: Likewise.
26841         * lib/javaexec.c: Likewise.
26842         * lib/javaexec.h: Likewise.
26843         * lib/javaversion.c: Likewise.
26844         * lib/javaversion.h: Likewise.
26845         * lib/javaversion.java: Likewise.
26846         * lib/lbrkprop.h: Likewise.
26847         * lib/lchmod.h: Likewise.
26848         * lib/lchown.c: Likewise.
26849         * lib/ldexpl.c: Likewise.
26850         * lib/linebreak.c: Likewise.
26851         * lib/linebreak.h: Likewise.
26852         * lib/linebuffer.c: Likewise.
26853         * lib/linebuffer.h: Likewise.
26854         * lib/locale.in.h: Likewise.
26855         * lib/logl.c: Likewise.
26856         * lib/long-options.c: Likewise.
26857         * lib/long-options.h: Likewise.
26858         * lib/lstat.c: Likewise.
26859         * lib/lstat.h: Likewise.
26860         * lib/math.in.h: Likewise.
26861         * lib/mbchar.c: Likewise.
26862         * lib/mbchar.h: Likewise.
26863         * lib/mbfile.h: Likewise.
26864         * lib/mbiter.h: Likewise.
26865         * lib/mbscasecmp.c: Likewise.
26866         * lib/mbscasestr.c: Likewise.
26867         * lib/mbschr.c: Likewise.
26868         * lib/mbscspn.c: Likewise.
26869         * lib/mbslen.c: Likewise.
26870         * lib/mbsncasecmp.c: Likewise.
26871         * lib/mbsnlen.c: Likewise.
26872         * lib/mbspbrk.c: Likewise.
26873         * lib/mbspcasecmp.c: Likewise.
26874         * lib/mbsrchr.c: Likewise.
26875         * lib/mbssep.c: Likewise.
26876         * lib/mbsspn.c: Likewise.
26877         * lib/mbsstr.c: Likewise.
26878         * lib/mbstok_r.c: Likewise.
26879         * lib/mbswidth.c: Likewise.
26880         * lib/mbswidth.h: Likewise.
26881         * lib/mbuiter.h: Likewise.
26882         * lib/memcasecmp.c: Likewise.
26883         * lib/memcasecmp.h: Likewise.
26884         * lib/memchr.c: Likewise.
26885         * lib/memcmp.c: Likewise.
26886         * lib/memcoll.c: Likewise.
26887         * lib/memcoll.h: Likewise.
26888         * lib/memcpy.c: Likewise.
26889         * lib/memrchr.c: Likewise.
26890         * lib/mkancesdirs.c: Likewise.
26891         * lib/mkdir-p.c: Likewise.
26892         * lib/mkdir-p.h: Likewise.
26893         * lib/mkdir.c: Likewise.
26894         * lib/mkdirat.c: Likewise.
26895         * lib/mkdtemp.c: Likewise.
26896         * lib/mkstemp-safer.c: Likewise.
26897         * lib/mkstemp.c: Likewise.
26898         * lib/modechange.c: Likewise.
26899         * lib/modechange.h: Likewise.
26900         * lib/mountlist.c: Likewise.
26901         * lib/mountlist.h: Likewise.
26902         * lib/mpsort.c: Likewise.
26903         * lib/nanosleep.c: Likewise.
26904         * lib/obstack.c: Likewise.
26905         * lib/obstack.h: Likewise.
26906         * lib/open-safer.c: Likewise.
26907         * lib/open.c: Likewise.
26908         * lib/openat-die.c: Likewise.
26909         * lib/openat-priv.h: Likewise.
26910         * lib/openat-proc.c: Likewise.
26911         * lib/openat.c: Likewise.
26912         * lib/openat.h: Likewise.
26913         * lib/pagealign_alloc.c: Likewise.
26914         * lib/pagealign_alloc.h: Likewise.
26915         * lib/physmem.c: Likewise.
26916         * lib/physmem.h: Likewise.
26917         * lib/pipe-safer.c: Likewise.
26918         * lib/pipe.c: Likewise.
26919         * lib/pipe.h: Likewise.
26920         * lib/posixtm.c: Likewise.
26921         * lib/posixtm.h: Likewise.
26922         * lib/posixver.c: Likewise.
26923         * lib/printf-frexp.c: Likewise.
26924         * lib/printf-frexp.h: Likewise.
26925         * lib/printf-frexpl.c: Likewise.
26926         * lib/printf-frexpl.h: Likewise.
26927         * lib/printf.c: Likewise.
26928         * lib/progname.c: Likewise.
26929         * lib/progname.h: Likewise.
26930         * lib/progreloc.c: Likewise.
26931         * lib/putenv.c: Likewise.
26932         * lib/quote.c: Likewise.
26933         * lib/quote.h: Likewise.
26934         * lib/quotearg.c: Likewise.
26935         * lib/quotearg.h: Likewise.
26936         * lib/raise.c: Likewise.
26937         * lib/readline.c: Likewise.
26938         * lib/readline.h: Likewise.
26939         * lib/readlink.c: Likewise.
26940         * lib/readtokens.c: Likewise.
26941         * lib/readtokens.h: Likewise.
26942         * lib/readtokens0.c: Likewise.
26943         * lib/readtokens0.h: Likewise.
26944         * lib/readutmp.c: Likewise.
26945         * lib/readutmp.h: Likewise.
26946         * lib/realloc.c: Likewise.
26947         * lib/relocwrapper.c: Likewise.
26948         * lib/rename-dest-slash.c: Likewise.
26949         * lib/rename.c: Likewise.
26950         * lib/rmdir.c: Likewise.
26951         * lib/rpmatch.c: Likewise.
26952         * lib/safe-read.c: Likewise.
26953         * lib/safe-read.h: Likewise.
26954         * lib/safe-write.c: Likewise.
26955         * lib/safe-write.h: Likewise.
26956         * lib/same-inode.h: Likewise.
26957         * lib/same.c: Likewise.
26958         * lib/same.h: Likewise.
26959         * lib/save-cwd.c: Likewise.
26960         * lib/save-cwd.h: Likewise.
26961         * lib/savedir.c: Likewise.
26962         * lib/savedir.h: Likewise.
26963         * lib/savewd.c: Likewise.
26964         * lib/savewd.h: Likewise.
26965         * lib/search.in.h: Likewise.
26966         * lib/setenv.c: Likewise.
26967         * lib/setenv.h: Likewise.
26968         * lib/settime.c: Likewise.
26969         * lib/sh-quote.c: Likewise.
26970         * lib/sh-quote.h: Likewise.
26971         * lib/sig2str.c: Likewise.
26972         * lib/sig2str.h: Likewise.
26973         * lib/signal.in.h: Likewise.
26974         * lib/signbitd.c: Likewise.
26975         * lib/signbitf.c: Likewise.
26976         * lib/signbitl.c: Likewise.
26977         * lib/sigprocmask.c: Likewise.
26978         * lib/sincosl.c: Likewise.
26979         * lib/sleep.c: Likewise.
26980         * lib/sprintf.c: Likewise.
26981         * lib/sqrtl.c: Likewise.
26982         * lib/stat-time.h: Likewise.
26983         * lib/stdio--.h: Likewise.
26984         * lib/stdio-safer.h: Likewise.
26985         * lib/stdlib--.h: Likewise.
26986         * lib/stdlib-safer.h: Likewise.
26987         * lib/stdlib.in.h: Likewise.
26988         * lib/stpcpy.c: Likewise.
26989         * lib/stpncpy.c: Likewise.
26990         * lib/strchrnul.c: Likewise.
26991         * lib/strcspn.c: Likewise.
26992         * lib/strerror.c: Likewise.
26993         * lib/strftime.c: Likewise.
26994         * lib/strftime.h: Likewise.
26995         * lib/striconveh.c: Likewise.
26996         * lib/striconveh.h: Likewise.
26997         * lib/striconveha.c: Likewise.
26998         * lib/striconveha.h: Likewise.
26999         * lib/stripslash.c: Likewise.
27000         * lib/strnlen1.c: Likewise.
27001         * lib/strnlen1.h: Likewise.
27002         * lib/strtod.c: Likewise.
27003         * lib/strtoimax.c: Likewise.
27004         * lib/strtok_r.c: Likewise.
27005         * lib/strtol.c: Likewise.
27006         * lib/strtoll.c: Likewise.
27007         * lib/strtoul.c: Likewise.
27008         * lib/strtoull.c: Likewise.
27009         * lib/sysexits.in.h: Likewise.
27010         * lib/tempname.c: Likewise.
27011         * lib/tempname.h: Likewise.
27012         * lib/timespec.h: Likewise.
27013         * lib/tls.c: Likewise.
27014         * lib/tls.h: Likewise.
27015         * lib/tmpdir.c: Likewise.
27016         * lib/tmpdir.h: Likewise.
27017         * lib/tmpfile-safer.c: Likewise.
27018         * lib/tmpfile.c: Likewise.
27019         * lib/trigl.c: Likewise.
27020         * lib/trigl.h: Likewise.
27021         * lib/trim.c: Likewise.
27022         * lib/trim.h: Likewise.
27023         * lib/trunc.c: Likewise.
27024         * lib/truncf.c: Likewise.
27025         * lib/truncl.c: Likewise.
27026         * lib/tsearch.c: Likewise.
27027         * lib/unicodeio.c: Likewise.
27028         * lib/unicodeio.h: Likewise.
27029         * lib/unistd--.h: Likewise.
27030         * lib/unistd-safer.h: Likewise.
27031         * lib/unistdio/ulc-fprintf.c: Likewise.
27032         * lib/unistdio/ulc-vfprintf.c: Likewise.
27033         * lib/unlinkdir.c: Likewise.
27034         * lib/unlinkdir.h: Likewise.
27035         * lib/unlocked-io.h: Likewise.
27036         * lib/unsetenv.c: Likewise.
27037         * lib/userspec.c: Likewise.
27038         * lib/utime.c: Likewise.
27039         * lib/utimecmp.c: Likewise.
27040         * lib/utimecmp.h: Likewise.
27041         * lib/utimens.c: Likewise.
27042         * lib/verify.h: Likewise.
27043         * lib/verror.c: Likewise.
27044         * lib/verror.h: Likewise.
27045         * lib/version-etc-fsf.c: Likewise.
27046         * lib/version-etc.c: Likewise.
27047         * lib/version-etc.h: Likewise.
27048         * lib/vfprintf.c: Likewise.
27049         * lib/vprintf.c: Likewise.
27050         * lib/vsprintf.c: Likewise.
27051         * lib/w32spawn.h: Likewise.
27052         * lib/wait-process.c: Likewise.
27053         * lib/wait-process.h: Likewise.
27054         * lib/wcwidth.c: Likewise.
27055         * lib/write-any-file.c: Likewise.
27056         * lib/xalloc-die.c: Likewise.
27057         * lib/xalloc.h: Likewise.
27058         * lib/xasprintf.c: Likewise.
27059         * lib/xgetcwd.c: Likewise.
27060         * lib/xgetcwd.h: Likewise.
27061         * lib/xgetdomainname.c: Likewise.
27062         * lib/xgetdomainname.h: Likewise.
27063         * lib/xgethostname.c: Likewise.
27064         * lib/xmalloc.c: Likewise.
27065         * lib/xmalloca.c: Likewise.
27066         * lib/xmalloca.h: Likewise.
27067         * lib/xmemcoll.c: Likewise.
27068         * lib/xnanosleep.c: Likewise.
27069         * lib/xreadlink.c: Likewise.
27070         * lib/xreadlink.h: Likewise.
27071         * lib/xsetenv.c: Likewise.
27072         * lib/xsetenv.h: Likewise.
27073         * lib/xstriconv.c: Likewise.
27074         * lib/xstriconv.h: Likewise.
27075         * lib/xstrndup.c: Likewise.
27076         * lib/xstrndup.h: Likewise.
27077         * lib/xstrtod.c: Likewise.
27078         * lib/xstrtod.h: Likewise.
27079         * lib/xstrtol-error.c: Likewise.
27080         * lib/xstrtol.c: Likewise.
27081         * lib/xstrtol.h: Likewise.
27082         * lib/xtime.h: Likewise.
27083         * lib/xvasprintf.c: Likewise.
27084         * lib/xvasprintf.h: Likewise.
27085         * lib/yesno.c: Likewise.
27086         * lib/yesno.h: Likewise.
27087         * posix-modules: Likewise.
27088         * tests/test-alloca-opt.c: Likewise.
27089         * tests/test-arcfour.c: Likewise.
27090         * tests/test-arctwo.c: Likewise.
27091         * tests/test-argmatch.c: Likewise.
27092         * tests/test-argp-2.sh: Likewise.
27093         * tests/test-argp.c: Likewise.
27094         * tests/test-arpa_inet.c: Likewise.
27095         * tests/test-array_list.c: Likewise.
27096         * tests/test-array_oset.c: Likewise.
27097         * tests/test-atexit.c: Likewise.
27098         * tests/test-avltree_list.c: Likewise.
27099         * tests/test-avltree_oset.c: Likewise.
27100         * tests/test-avltreehash_list.c: Likewise.
27101         * tests/test-base64.c: Likewise.
27102         * tests/test-binary-io.c: Likewise.
27103         * tests/test-byteswap.c: Likewise.
27104         * tests/test-c-ctype.c: Likewise.
27105         * tests/test-c-strcasecmp.c: Likewise.
27106         * tests/test-c-strcasestr.c: Likewise.
27107         * tests/test-c-strncasecmp.c: Likewise.
27108         * tests/test-c-strstr.c: Likewise.
27109         * tests/test-canonicalize-lgpl.c: Likewise.
27110         * tests/test-canonicalize.c: Likewise.
27111         * tests/test-carray_list.c: Likewise.
27112         * tests/test-ceilf.c: Likewise.
27113         * tests/test-ceill.c: Likewise.
27114         * tests/test-count-one-bits.c: Likewise.
27115         * tests/test-crc.c: Likewise.
27116         * tests/test-dirname.c: Likewise.
27117         * tests/test-fbufmode.c: Likewise.
27118         * tests/test-fcntl.c: Likewise.
27119         * tests/test-fflush.c: Likewise.
27120         * tests/test-floorf.c: Likewise.
27121         * tests/test-floorl.c: Likewise.
27122         * tests/test-fopen.c: Likewise.
27123         * tests/test-fprintf-posix.c: Likewise.
27124         * tests/test-fprintf-posix.h: Likewise.
27125         * tests/test-fpurge.c: Likewise.
27126         * tests/test-freadable.c: Likewise.
27127         * tests/test-freadahead.c: Likewise.
27128         * tests/test-freading.c: Likewise.
27129         * tests/test-freopen.c: Likewise.
27130         * tests/test-frexp.c: Likewise.
27131         * tests/test-frexpl.c: Likewise.
27132         * tests/test-fseek.c: Likewise.
27133         * tests/test-fseeko.c: Likewise.
27134         * tests/test-fseterr.c: Likewise.
27135         * tests/test-fstrcmp.c: Likewise.
27136         * tests/test-ftell.c: Likewise.
27137         * tests/test-ftello.c: Likewise.
27138         * tests/test-fwritable.c: Likewise.
27139         * tests/test-fwriting.c: Likewise.
27140         * tests/test-getaddrinfo.c: Likewise.
27141         * tests/test-getpass.c: Likewise.
27142         * tests/test-gettimeofday.c: Likewise.
27143         * tests/test-hmac-md5.c: Likewise.
27144         * tests/test-hmac-sha1.c: Likewise.
27145         * tests/test-iconv.c: Likewise.
27146         * tests/test-iconvme.c: Likewise.
27147         * tests/test-inttypes.c: Likewise.
27148         * tests/test-isnan.c: Likewise.
27149         * tests/test-isnanf.c: Likewise.
27150         * tests/test-isnanl-nolibm.c: Likewise.
27151         * tests/test-isnanl.c: Likewise.
27152         * tests/test-isnanl.h: Likewise.
27153         * tests/test-ldexpl.c: Likewise.
27154         * tests/test-linked_list.c: Likewise.
27155         * tests/test-linkedhash_list.c: Likewise.
27156         * tests/test-locale.c: Likewise.
27157         * tests/test-localename.c: Likewise.
27158         * tests/test-lock.c: Likewise.
27159         * tests/test-lseek.c: Likewise.
27160         * tests/test-malloca.c: Likewise.
27161         * tests/test-math.c: Likewise.
27162         * tests/test-mbscasecmp.c: Likewise.
27163         * tests/test-mbscasestr1.c: Likewise.
27164         * tests/test-mbscasestr2.c: Likewise.
27165         * tests/test-mbscasestr3.c: Likewise.
27166         * tests/test-mbscasestr4.c: Likewise.
27167         * tests/test-mbschr.c: Likewise.
27168         * tests/test-mbscspn.c: Likewise.
27169         * tests/test-mbsncasecmp.c: Likewise.
27170         * tests/test-mbspbrk.c: Likewise.
27171         * tests/test-mbspcasecmp.c: Likewise.
27172         * tests/test-mbsrchr.c: Likewise.
27173         * tests/test-mbsspn.c: Likewise.
27174         * tests/test-mbsstr1.c: Likewise.
27175         * tests/test-mbsstr2.c: Likewise.
27176         * tests/test-mbsstr3.c: Likewise.
27177         * tests/test-md5.c: Likewise.
27178         * tests/test-memmem.c: Likewise.
27179         * tests/test-netinet_in.c: Likewise.
27180         * tests/test-open.c: Likewise.
27181         * tests/test-printf-frexp.c: Likewise.
27182         * tests/test-printf-frexpl.c: Likewise.
27183         * tests/test-printf-posix.c: Likewise.
27184         * tests/test-printf-posix.h: Likewise.
27185         * tests/test-rbtree_list.c: Likewise.
27186         * tests/test-rbtree_oset.c: Likewise.
27187         * tests/test-rbtreehash_list.c: Likewise.
27188         * tests/test-read-file.c: Likewise.
27189         * tests/test-rijndael.c: Likewise.
27190         * tests/test-search.c: Likewise.
27191         * tests/test-signbit.c: Likewise.
27192         * tests/test-sleep.c: Likewise.
27193         * tests/test-snprintf-posix.c: Likewise.
27194         * tests/test-snprintf-posix.h: Likewise.
27195         * tests/test-snprintf.c: Likewise.
27196         * tests/test-sprintf-posix.c: Likewise.
27197         * tests/test-sprintf-posix.h: Likewise.
27198         * tests/test-stat-time.c: Likewise.
27199         * tests/test-stdbool.c: Likewise.
27200         * tests/test-stdint.c: Likewise.
27201         * tests/test-stdio.c: Likewise.
27202         * tests/test-stdlib.c: Likewise.
27203         * tests/test-stpncpy.c: Likewise.
27204         * tests/test-strcasestr.c: Likewise.
27205         * tests/test-striconv.c: Likewise.
27206         * tests/test-striconveh.c: Likewise.
27207         * tests/test-striconveha.c: Likewise.
27208         * tests/test-string.c: Likewise.
27209         * tests/test-sys_select.c: Likewise.
27210         * tests/test-sys_socket.c: Likewise.
27211         * tests/test-sys_stat.c: Likewise.
27212         * tests/test-sys_time.c: Likewise.
27213         * tests/test-sysexits.c: Likewise.
27214         * tests/test-time.c: Likewise.
27215         * tests/test-tls.c: Likewise.
27216         * tests/test-trunc.c: Likewise.
27217         * tests/test-truncf.c: Likewise.
27218         * tests/test-truncl.c: Likewise.
27219         * tests/test-unistd.c: Likewise.
27220         * tests/test-vasnprintf-posix.c: Likewise.
27221         * tests/test-vasnprintf-posix2.c: Likewise.
27222         * tests/test-vasnprintf.c: Likewise.
27223         * tests/test-vasprintf-posix.c: Likewise.
27224         * tests/test-vasprintf.c: Likewise.
27225         * tests/test-verify.c: Likewise.
27226         * tests/test-vfprintf-posix.c: Likewise.
27227         * tests/test-vprintf-posix.c: Likewise.
27228         * tests/test-vsnprintf-posix.c: Likewise.
27229         * tests/test-vsnprintf.c: Likewise.
27230         * tests/test-vsprintf-posix.c: Likewise.
27231         * tests/test-wchar.c: Likewise.
27232         * tests/test-wctype.c: Likewise.
27233         * tests/test-wcwidth.c: Likewise.
27234         * tests/test-xstrtol.c: Likewise.
27235         * tests/test-xvasprintf.c: Likewise.
27236         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
27237         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
27238         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27239         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27240         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27241         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
27242         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27243         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27244         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27245         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
27246         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27247         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27248         * tests/uniname/test-uninames.c: Likewise.
27249         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
27250         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
27251         * tests/unistdio/test-u16-printf1.h: Likewise.
27252         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
27253         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
27254         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
27255         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
27256         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
27257         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
27258         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
27259         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
27260         * tests/unistdio/test-u32-printf1.h: Likewise.
27261         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
27262         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
27263         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
27264         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
27265         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
27266         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
27267         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
27268         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
27269         * tests/unistdio/test-u8-printf1.h: Likewise.
27270         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
27271         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
27272         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
27273         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
27274         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
27275         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
27276         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
27277         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
27278         * tests/unistdio/test-ulc-printf1.h: Likewise.
27279         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
27280         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
27281         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
27282         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
27283         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
27284         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
27285         * tests/uniwidth/test-u16-strwidth.c: Likewise.
27286         * tests/uniwidth/test-u16-width.c: Likewise.
27287         * tests/uniwidth/test-u32-strwidth.c: Likewise.
27288         * tests/uniwidth/test-u32-width.c: Likewise.
27289         * tests/uniwidth/test-u8-strwidth.c: Likewise.
27290         * tests/uniwidth/test-u8-width.c: Likewise.
27291         * tests/uniwidth/test-uc_width.c: Likewise.
27292         * config/srclist-update: Likewise.
27293         (fixlicense): Update to GPLv3+.
27294
27295         Change copyright notice from LGPLv2.1+ to LGPLv3+.
27296         * tests/test-tsearch.c: Change copyright notice.
27297
27298         Change copyright notice from LGPLv2.0+ to LGPLv3+.
27299         * lib/c-strcaseeq.h: Change copyright notice.
27300         * lib/streq.h: Likewise.
27301         * lib/uniconv.h: Likewise.
27302         * lib/uniconv/u-conv-from-enc.h: Likewise.
27303         * lib/uniconv/u-conv-to-enc.h: Likewise.
27304         * lib/uniconv/u-strconv-from-enc.h: Likewise.
27305         * lib/uniconv/u-strconv-to-enc.h: Likewise.
27306         * lib/uniconv/u16-conv-from-enc.c: Likewise.
27307         * lib/uniconv/u16-conv-to-enc.c: Likewise.
27308         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
27309         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
27310         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
27311         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
27312         * lib/uniconv/u32-conv-from-enc.c: Likewise.
27313         * lib/uniconv/u32-conv-to-enc.c: Likewise.
27314         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
27315         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
27316         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
27317         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
27318         * lib/uniconv/u8-conv-from-enc.c: Likewise.
27319         * lib/uniconv/u8-conv-to-enc.c: Likewise.
27320         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
27321         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
27322         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
27323         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
27324         * lib/uniname.h: Likewise.
27325         * lib/uniname/uniname.c: Likewise.
27326         * lib/unistdio.h: Likewise.
27327         * lib/unistdio/u-asnprintf.h: Likewise.
27328         * lib/unistdio/u-asprintf.h: Likewise.
27329         * lib/unistdio/u-printf-args.c: Likewise.
27330         * lib/unistdio/u-printf-args.h: Likewise.
27331         * lib/unistdio/u-printf-parse.h: Likewise.
27332         * lib/unistdio/u-snprintf.h: Likewise.
27333         * lib/unistdio/u-sprintf.h: Likewise.
27334         * lib/unistdio/u-vasprintf.h: Likewise.
27335         * lib/unistdio/u-vsnprintf.h: Likewise.
27336         * lib/unistdio/u-vsprintf.h: Likewise.
27337         * lib/unistdio/u16-asnprintf.c: Likewise.
27338         * lib/unistdio/u16-asprintf.c: Likewise.
27339         * lib/unistdio/u16-printf-parse.c: Likewise.
27340         * lib/unistdio/u16-snprintf.c: Likewise.
27341         * lib/unistdio/u16-sprintf.c: Likewise.
27342         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
27343         * lib/unistdio/u16-u16-asprintf.c: Likewise.
27344         * lib/unistdio/u16-u16-snprintf.c: Likewise.
27345         * lib/unistdio/u16-u16-sprintf.c: Likewise.
27346         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
27347         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
27348         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
27349         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
27350         * lib/unistdio/u16-vasnprintf.c: Likewise.
27351         * lib/unistdio/u16-vasprintf.c: Likewise.
27352         * lib/unistdio/u16-vsnprintf.c: Likewise.
27353         * lib/unistdio/u16-vsprintf.c: Likewise.
27354         * lib/unistdio/u32-asnprintf.c: Likewise.
27355         * lib/unistdio/u32-asprintf.c: Likewise.
27356         * lib/unistdio/u32-printf-parse.c: Likewise.
27357         * lib/unistdio/u32-snprintf.c: Likewise.
27358         * lib/unistdio/u32-sprintf.c: Likewise.
27359         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
27360         * lib/unistdio/u32-u32-asprintf.c: Likewise.
27361         * lib/unistdio/u32-u32-snprintf.c: Likewise.
27362         * lib/unistdio/u32-u32-sprintf.c: Likewise.
27363         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
27364         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
27365         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
27366         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
27367         * lib/unistdio/u32-vasnprintf.c: Likewise.
27368         * lib/unistdio/u32-vasprintf.c: Likewise.
27369         * lib/unistdio/u32-vsnprintf.c: Likewise.
27370         * lib/unistdio/u32-vsprintf.c: Likewise.
27371         * lib/unistdio/u8-asnprintf.c: Likewise.
27372         * lib/unistdio/u8-asprintf.c: Likewise.
27373         * lib/unistdio/u8-printf-parse.c: Likewise.
27374         * lib/unistdio/u8-snprintf.c: Likewise.
27375         * lib/unistdio/u8-sprintf.c: Likewise.
27376         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
27377         * lib/unistdio/u8-u8-asprintf.c: Likewise.
27378         * lib/unistdio/u8-u8-snprintf.c: Likewise.
27379         * lib/unistdio/u8-u8-sprintf.c: Likewise.
27380         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
27381         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
27382         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
27383         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
27384         * lib/unistdio/u8-vasnprintf.c: Likewise.
27385         * lib/unistdio/u8-vasprintf.c: Likewise.
27386         * lib/unistdio/u8-vsnprintf.c: Likewise.
27387         * lib/unistdio/u8-vsprintf.c: Likewise.
27388         * lib/unistdio/ulc-asnprintf.c: Likewise.
27389         * lib/unistdio/ulc-asprintf.c: Likewise.
27390         * lib/unistdio/ulc-printf-parse.c: Likewise.
27391         * lib/unistdio/ulc-snprintf.c: Likewise.
27392         * lib/unistdio/ulc-sprintf.c: Likewise.
27393         * lib/unistdio/ulc-vasnprintf.c: Likewise.
27394         * lib/unistdio/ulc-vasprintf.c: Likewise.
27395         * lib/unistdio/ulc-vsnprintf.c: Likewise.
27396         * lib/unistdio/ulc-vsprintf.c: Likewise.
27397         * lib/unistr.h: Likewise.
27398         * lib/unistr/u-cpy-alloc.h: Likewise.
27399         * lib/unistr/u-cpy.h: Likewise.
27400         * lib/unistr/u-endswith.h: Likewise.
27401         * lib/unistr/u-move.h: Likewise.
27402         * lib/unistr/u-set.h: Likewise.
27403         * lib/unistr/u-startswith.h: Likewise.
27404         * lib/unistr/u-stpcpy.h: Likewise.
27405         * lib/unistr/u-stpncpy.h: Likewise.
27406         * lib/unistr/u-strcat.h: Likewise.
27407         * lib/unistr/u-strcpy.h: Likewise.
27408         * lib/unistr/u-strcspn.h: Likewise.
27409         * lib/unistr/u-strdup.h: Likewise.
27410         * lib/unistr/u-strlen.h: Likewise.
27411         * lib/unistr/u-strncat.h: Likewise.
27412         * lib/unistr/u-strncpy.h: Likewise.
27413         * lib/unistr/u-strnlen.h: Likewise.
27414         * lib/unistr/u-strpbrk.h: Likewise.
27415         * lib/unistr/u-strspn.h: Likewise.
27416         * lib/unistr/u-strstr.h: Likewise.
27417         * lib/unistr/u-strtok.h: Likewise.
27418         * lib/unistr/u16-check.c: Likewise.
27419         * lib/unistr/u16-chr.c: Likewise.
27420         * lib/unistr/u16-cmp.c: Likewise.
27421         * lib/unistr/u16-cpy-alloc.c: Likewise.
27422         * lib/unistr/u16-cpy.c: Likewise.
27423         * lib/unistr/u16-endswith.c: Likewise.
27424         * lib/unistr/u16-mblen.c: Likewise.
27425         * lib/unistr/u16-mbsnlen.c: Likewise.
27426         * lib/unistr/u16-mbtouc-aux.c: Likewise.
27427         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
27428         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
27429         * lib/unistr/u16-mbtouc.c: Likewise.
27430         * lib/unistr/u16-mbtoucr.c: Likewise.
27431         * lib/unistr/u16-move.c: Likewise.
27432         * lib/unistr/u16-next.c: Likewise.
27433         * lib/unistr/u16-prev.c: Likewise.
27434         * lib/unistr/u16-set.c: Likewise.
27435         * lib/unistr/u16-startswith.c: Likewise.
27436         * lib/unistr/u16-stpcpy.c: Likewise.
27437         * lib/unistr/u16-stpncpy.c: Likewise.
27438         * lib/unistr/u16-strcat.c: Likewise.
27439         * lib/unistr/u16-strchr.c: Likewise.
27440         * lib/unistr/u16-strcmp.c: Likewise.
27441         * lib/unistr/u16-strcpy.c: Likewise.
27442         * lib/unistr/u16-strcspn.c: Likewise.
27443         * lib/unistr/u16-strdup.c: Likewise.
27444         * lib/unistr/u16-strlen.c: Likewise.
27445         * lib/unistr/u16-strmblen.c: Likewise.
27446         * lib/unistr/u16-strmbtouc.c: Likewise.
27447         * lib/unistr/u16-strncat.c: Likewise.
27448         * lib/unistr/u16-strncmp.c: Likewise.
27449         * lib/unistr/u16-strncpy.c: Likewise.
27450         * lib/unistr/u16-strnlen.c: Likewise.
27451         * lib/unistr/u16-strpbrk.c: Likewise.
27452         * lib/unistr/u16-strrchr.c: Likewise.
27453         * lib/unistr/u16-strspn.c: Likewise.
27454         * lib/unistr/u16-strstr.c: Likewise.
27455         * lib/unistr/u16-strtok.c: Likewise.
27456         * lib/unistr/u16-to-u32.c: Likewise.
27457         * lib/unistr/u16-to-u8.c: Likewise.
27458         * lib/unistr/u16-uctomb-aux.c: Likewise.
27459         * lib/unistr/u16-uctomb.c: Likewise.
27460         * lib/unistr/u32-check.c: Likewise.
27461         * lib/unistr/u32-chr.c: Likewise.
27462         * lib/unistr/u32-cmp.c: Likewise.
27463         * lib/unistr/u32-cpy-alloc.c: Likewise.
27464         * lib/unistr/u32-cpy.c: Likewise.
27465         * lib/unistr/u32-endswith.c: Likewise.
27466         * lib/unistr/u32-mblen.c: Likewise.
27467         * lib/unistr/u32-mbsnlen.c: Likewise.
27468         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
27469         * lib/unistr/u32-mbtouc.c: Likewise.
27470         * lib/unistr/u32-mbtoucr.c: Likewise.
27471         * lib/unistr/u32-move.c: Likewise.
27472         * lib/unistr/u32-next.c: Likewise.
27473         * lib/unistr/u32-prev.c: Likewise.
27474         * lib/unistr/u32-set.c: Likewise.
27475         * lib/unistr/u32-startswith.c: Likewise.
27476         * lib/unistr/u32-stpcpy.c: Likewise.
27477         * lib/unistr/u32-stpncpy.c: Likewise.
27478         * lib/unistr/u32-strcat.c: Likewise.
27479         * lib/unistr/u32-strchr.c: Likewise.
27480         * lib/unistr/u32-strcmp.c: Likewise.
27481         * lib/unistr/u32-strcpy.c: Likewise.
27482         * lib/unistr/u32-strcspn.c: Likewise.
27483         * lib/unistr/u32-strdup.c: Likewise.
27484         * lib/unistr/u32-strlen.c: Likewise.
27485         * lib/unistr/u32-strmblen.c: Likewise.
27486         * lib/unistr/u32-strmbtouc.c: Likewise.
27487         * lib/unistr/u32-strncat.c: Likewise.
27488         * lib/unistr/u32-strncmp.c: Likewise.
27489         * lib/unistr/u32-strncpy.c: Likewise.
27490         * lib/unistr/u32-strnlen.c: Likewise.
27491         * lib/unistr/u32-strpbrk.c: Likewise.
27492         * lib/unistr/u32-strrchr.c: Likewise.
27493         * lib/unistr/u32-strspn.c: Likewise.
27494         * lib/unistr/u32-strstr.c: Likewise.
27495         * lib/unistr/u32-strtok.c: Likewise.
27496         * lib/unistr/u32-to-u16.c: Likewise.
27497         * lib/unistr/u32-to-u8.c: Likewise.
27498         * lib/unistr/u32-uctomb.c: Likewise.
27499         * lib/unistr/u8-check.c: Likewise.
27500         * lib/unistr/u8-chr.c: Likewise.
27501         * lib/unistr/u8-cmp.c: Likewise.
27502         * lib/unistr/u8-cpy-alloc.c: Likewise.
27503         * lib/unistr/u8-cpy.c: Likewise.
27504         * lib/unistr/u8-endswith.c: Likewise.
27505         * lib/unistr/u8-mblen.c: Likewise.
27506         * lib/unistr/u8-mbsnlen.c: Likewise.
27507         * lib/unistr/u8-mbtouc-aux.c: Likewise.
27508         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
27509         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
27510         * lib/unistr/u8-mbtouc.c: Likewise.
27511         * lib/unistr/u8-mbtoucr.c: Likewise.
27512         * lib/unistr/u8-move.c: Likewise.
27513         * lib/unistr/u8-next.c: Likewise.
27514         * lib/unistr/u8-prev.c: Likewise.
27515         * lib/unistr/u8-set.c: Likewise.
27516         * lib/unistr/u8-startswith.c: Likewise.
27517         * lib/unistr/u8-stpcpy.c: Likewise.
27518         * lib/unistr/u8-stpncpy.c: Likewise.
27519         * lib/unistr/u8-strcat.c: Likewise.
27520         * lib/unistr/u8-strchr.c: Likewise.
27521         * lib/unistr/u8-strcmp.c: Likewise.
27522         * lib/unistr/u8-strcpy.c: Likewise.
27523         * lib/unistr/u8-strcspn.c: Likewise.
27524         * lib/unistr/u8-strdup.c: Likewise.
27525         * lib/unistr/u8-strlen.c: Likewise.
27526         * lib/unistr/u8-strmblen.c: Likewise.
27527         * lib/unistr/u8-strmbtouc.c: Likewise.
27528         * lib/unistr/u8-strncat.c: Likewise.
27529         * lib/unistr/u8-strncmp.c: Likewise.
27530         * lib/unistr/u8-strncpy.c: Likewise.
27531         * lib/unistr/u8-strnlen.c: Likewise.
27532         * lib/unistr/u8-strpbrk.c: Likewise.
27533         * lib/unistr/u8-strrchr.c: Likewise.
27534         * lib/unistr/u8-strspn.c: Likewise.
27535         * lib/unistr/u8-strstr.c: Likewise.
27536         * lib/unistr/u8-strtok.c: Likewise.
27537         * lib/unistr/u8-to-u16.c: Likewise.
27538         * lib/unistr/u8-to-u32.c: Likewise.
27539         * lib/unistr/u8-uctomb-aux.c: Likewise.
27540         * lib/unistr/u8-uctomb.c: Likewise.
27541         * lib/unitypes.h: Likewise.
27542         * lib/uniwidth.h: Likewise.
27543         * lib/uniwidth/cjk.h: Likewise.
27544         * lib/uniwidth/u16-strwidth.c: Likewise.
27545         * lib/uniwidth/u16-width.c: Likewise.
27546         * lib/uniwidth/u32-strwidth.c: Likewise.
27547         * lib/uniwidth/u32-width.c: Likewise.
27548         * lib/uniwidth/u8-strwidth.c: Likewise.
27549         * lib/uniwidth/u8-width.c: Likewise.
27550         * lib/uniwidth/width.c: Likewise.
27551
27552 2007-10-07  Bruno Haible  <bruno@clisp.org>
27553
27554         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
27555         The file is still under LGPL (see modules/inttypes).
27556
27557 2007-10-06  Bruno Haible  <bruno@clisp.org>
27558
27559         * modules/trunc (Dependencies): Add 'extensions'.
27560         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
27561         Reported by Ben Pfaff <blp@gnu.org>.
27562
27563 2007-10-06  Bruno Haible  <bruno@clisp.org>
27564
27565         * modules/freopen-tests: New file.
27566         * tests/test-freopen.c: New file.
27567
27568         * modules/fopen-tests: New file.
27569         * tests/test-fopen.c: New file.
27570
27571         * modules/fopen: New file.
27572         * lib/fopen.c: New file.
27573         * m4/fopen.m4: New file.
27574         * modules/freopen: New file.
27575         * lib/freopen.c: New file.
27576         * m4/freopen.m4: New file.
27577         * lib/stdio.in.h (fopen, freopen): New declarations.
27578         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
27579         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
27580         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
27581         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
27582         * doc/functions/fopen.texi: Mention the 'fopen' module.
27583         * doc/functions/freopen.texi: Mention the 'freopen' module.
27584
27585 2007-10-06  Bruno Haible  <bruno@clisp.org>
27586
27587         * modules/open-tests: New file.
27588         * tests/test-open.c: New file.
27589
27590         * modules/open: New file.
27591         * lib/open.c: New file.
27592         * m4/open.m4: New file.
27593         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
27594         lib/open.c does.
27595         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
27596         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
27597         macros.
27598         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
27599         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
27600         REPLACE_OPEN.
27601         * doc/functions/open.texi: Mention the 'open' module.
27602
27603 2007-10-04  Bruno Haible  <bruno@clisp.org>
27604
27605         * modules/ceill-tests: New file.
27606         * tests/test-ceill.c: New file.
27607
27608         * modules/ceill: New file.
27609         * lib/ceill.c: Replace entire file.
27610         * m4/ceill.m4: New file.
27611         * lib/math.in.h (ceill): Replace declaration.
27612         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
27613         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
27614         * doc/functions/ceill.texi: Mention the 'ceill' module.
27615         * modules/mathl (Files): Remove lib/ceill.c.
27616         (Depends-on): Add ceill.
27617
27618 2007-10-04  Bruno Haible  <bruno@clisp.org>
27619
27620         * modules/ceilf-tests: New file.
27621         * tests/test-ceilf.c: New file.
27622
27623         * modules/ceilf: New file.
27624         * lib/ceil.c: New file.
27625         * lib/ceilf.c: New file.
27626         * m4/ceilf.m4: New file.
27627         * lib/math.in.h (ceilf): New declaration.
27628         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
27629         HAVE_DECL_CEILF.
27630         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
27631         HAVE_DECL_CEILF.
27632         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
27633
27634 2007-10-04  Bruno Haible  <bruno@clisp.org>
27635
27636         * modules/floorl-tests: New file.
27637         * tests/test-floorl.c: New file.
27638
27639         * modules/floorl: New file.
27640         * lib/floorl.c: Replace entire file.
27641         * m4/floorl.m4: New file.
27642         * lib/math.in.h (floorl): Replace declaration.
27643         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
27644         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
27645         * doc/functions/floorl.texi: Mention the 'floorl' module.
27646         * modules/mathl (Files): Remove lib/floorl.c.
27647         (Depends-on): Add floorl.
27648
27649 2007-10-04  Bruno Haible  <bruno@clisp.org>
27650
27651         * modules/floorf-tests: New file.
27652         * tests/test-floorf.c: New file.
27653
27654         * modules/floorf: New file.
27655         * lib/floor.c: New file.
27656         * lib/floorf.c: New file.
27657         * m4/floorf.m4: New file.
27658         * lib/math.in.h (floorf): New declaration.
27659         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
27660         HAVE_DECL_FLOORF.
27661         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
27662         HAVE_DECL_FLOORF.
27663         * doc/functions/floorf.texi: Mention the 'floorf' module.
27664
27665 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
27666             Bruno Haible  <bruno@clisp.org>
27667
27668         Advertise for the Git server instead of the CVS server.
27669         * doc/gnulib-intro.texi (Steady Development): Mention the Git
27670         repository instead of the CVS one.
27671         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
27672         about all VCS systems generically.
27673         * doc/gnulib.texi (Introduction): Capitalize `Git'.
27674
27675 2007-10-04  Bruno Haible  <bruno@clisp.org>
27676
27677         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
27678         means.
27679         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
27680
27681 2007-10-04  Bruno Haible  <bruno@clisp.org>
27682
27683         * modules/truncl-tests: New file.
27684         * tests/test-truncl.c: New file.
27685
27686         * modules/truncl: New file.
27687         * lib/truncl.c: New file.
27688         * m4/truncl.m4: New file.
27689         * lib/math.in.h (truncl): New declaration.
27690         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
27691         HAVE_DECL_TRUNCL.
27692         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
27693         HAVE_DECL_TRUNCL.
27694         * doc/functions/truncl.texi: Mention the 'truncl' module.
27695
27696 2007-10-04  Bruno Haible  <bruno@clisp.org>
27697
27698         * modules/truncf-tests: New file.
27699         * tests/test-truncf.c: New file.
27700
27701         * modules/truncf: New file.
27702         * lib/trunc.c: Make paramerizable through USE_* macros.
27703         * lib/truncf.c: New file.
27704         * m4/truncf.m4: New file.
27705         * lib/math.in.h (truncf): New declaration.
27706         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
27707         HAVE_DECL_TRUNCF.
27708         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
27709         HAVE_DECL_TRUNCF.
27710         * doc/functions/truncf.texi: Mention the 'truncf' module.
27711
27712 2007-10-03  Bruno Haible  <bruno@clisp.org>
27713
27714         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
27715         augmentation also for tests modules.
27716         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
27717         * modules/atexit-tests (Makefile.am): Likewise.
27718         * modules/binary-io-tests (Makefile.am): Likewise.
27719         * modules/c-strcase-tests (Makefile.am): Likewise.
27720         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
27721         * modules/canonicalize-tests (Makefile.am): Likewise.
27722         * modules/closein-tests (Makefile.am): Likewise.
27723         * modules/fprintf-posix-tests (Makefile.am): Likewise.
27724         * modules/freadahead-tests (Makefile.am): Likewise.
27725         * modules/fseek-tests (Makefile.am): Likewise.
27726         * modules/fseeko-tests (Makefile.am): Likewise.
27727         * modules/ftell-tests (Makefile.am): Likewise.
27728         * modules/ftello-tests (Makefile.am): Likewise.
27729         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
27730         * modules/isnanl-tests (Makefile.am): Likewise.
27731         * modules/lseek-tests (Makefile.am): Likewise.
27732         * modules/mbscasecmp-tests (Makefile.am): Likewise.
27733         * modules/mbscasestr-tests (Makefile.am): Likewise.
27734         * modules/mbschr-tests (Makefile.am): Likewise.
27735         * modules/mbscspn-tests (Makefile.am): Likewise.
27736         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
27737         * modules/mbspbrk-tests (Makefile.am): Likewise.
27738         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
27739         * modules/mbsrchr-tests (Makefile.am): Likewise.
27740         * modules/mbsspn-tests (Makefile.am): Likewise.
27741         * modules/mbsstr-tests (Makefile.am): Likewise.
27742         * modules/printf-posix-tests (Makefile.am): Likewise.
27743         * modules/snprintf-posix-tests (Makefile.am): Likewise.
27744         * modules/sprintf-posix-tests (Makefile.am): Likewise.
27745         * modules/tsearch-tests (Makefile.am): Likewise.
27746         * modules/uniname/uniname-tests (Makefile.am): Likewise.
27747         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
27748         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
27749         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
27750         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
27751         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
27752         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
27753         * modules/vprintf-posix-tests (Makefile.am): Likewise.
27754         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
27755         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
27756         * modules/xstrtoimax-tests (Makefile.am): Likewise.
27757         * modules/xstrtol-tests (Makefile.am): Likewise.
27758         * modules/xstrtoumax-tests (Makefile.am): Likewise.
27759         * modules/yesno-tests (Makefile.am): Likewise.
27760
27761 2007-10-03  Bruno Haible  <bruno@clisp.org>
27762
27763         * modules/trunc-tests: New file.
27764         * tests/test-trunc.c: New file.
27765
27766         * modules/trunc: New file.
27767         * lib/trunc.c: New file.
27768         * m4/trunc.m4: New file.
27769         * lib/math.in.h (trunc): New declaration.
27770         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
27771         HAVE_DECL_TRUNC.
27772         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
27773         HAVE_DECL_TRUNC.
27774         * doc/functions/trunc.texi: Mention the 'trunc' module.
27775
27776 2007-10-03  Bruno Haible  <bruno@clisp.org>
27777
27778         * tests/test-fpending.c: New file, mostly copied
27779         from coreutils/lib/t-fpending.c.
27780         * modules/fpending-tests: New file.
27781
27782 2007-10-03  Bruno Haible  <bruno@clisp.org>
27783
27784         Port the stdio extensions to QNX (untested).
27785         * lib/fseterr.c (fseterr): Add support for QNX.
27786         * lib/fbufmode.c (fbufmode): Likewise.
27787         * lib/freadable.c (freadable): Likewise.
27788         * lib/fwritable.c (fwritable): Likewise.
27789         * lib/freading.c (freading): Likewise.
27790         * lib/fwriting.c (fwriting): Likewise.
27791         * lib/freadahead.c (freadahed): Likewise.
27792         * lib/fpurge.c (fpurge): Likewise.
27793         * lib/fseeko.c (rpl_fseeko): Likewise.
27794
27795 2007-10-03  Bruno Haible  <bruno@clisp.org>
27796             Jim Meyering  <jim@meyering.net>
27797             Eric Blake  <ebb9@byu.net>
27798
27799         * doc/relocatable.texi: Use @command instead of @program.
27800
27801 2007-10-02  Jim Meyering  <jim@meyering.net>
27802
27803         Perform one more "_.h" -> ".in.h" substitution.
27804         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
27805         instead of unistd_.h here, too.
27806
27807 2007-10-01  Bruno Haible  <bruno@clisp.org>
27808
27809         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
27810         Needed for the alloca-opt module.
27811
27812 2007-09-30  Bruno Haible  <bruno@clisp.org>
27813
27814         * lib/alloca.in.h: Renamed from lib/alloca_.h.
27815         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
27816         alloca_.h.
27817         * lib/argz.in.h: Renamed from lib/argz_.h.
27818         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
27819         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
27820         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
27821         byteswap_.h.
27822         * lib/dirent.in.h: Renamed from lib/dirent_.h.
27823         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
27824         dirent_.h.
27825         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
27826         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
27827         fcntl_.h.
27828         * lib/float.in.h: Renamed from lib/float_.h.
27829         * modules/float (Files, Makefile.am): Use float.in.h instead of
27830         float_.h.
27831         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
27832         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
27833         fnmatch_.h.
27834         * lib/getopt.in.h: Renamed from lib/getopt_.h.
27835         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
27836         getopt_.h.
27837         * lib/glob.in.h: Renamed from lib/glob_.h.
27838         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
27839         * lib/iconv.in.h: Renamed from lib/iconv_.h.
27840         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
27841         iconv_.h.
27842         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
27843         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
27844         inttypes_.h.
27845         * lib/locale.in.h: Renamed from lib/locale_.h.
27846         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
27847         locale_.h.
27848         * lib/math.in.h: Renamed from lib/math_.h.
27849         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
27850         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
27851         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
27852         of netinet_in_.h. Add dependency.
27853         * lib/poll.in.h: Renamed from lib/poll_.h.
27854         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
27855         * lib/search.in.h: Renamed from lib/search_.h.
27856         * modules/search (Files, Makefile.am): Use search.in.h instead of
27857         search_.h.
27858         * lib/signal.in.h: Renamed from lib/signal_.h.
27859         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
27860         _signal.h.
27861         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
27862         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
27863         stdbool_.h.
27864         * lib/stdint.in.h: Renamed from lib/stdint_.h.
27865         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
27866         stdint_.h.
27867         * lib/stdio.in.h: Renamed from lib/stdio_.h.
27868         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
27869         stdio_.h.
27870         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
27871         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
27872         stdlib_.h.
27873         * lib/string.in.h: Renamed from lib/string_.h.
27874         * modules/string (Files, Makefile.am): Use string.in.h instead of
27875         string_.h.
27876         * doc/gnulib-tool.texi (Initial import): Update.
27877         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
27878         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
27879         of sys_select_.h. Add dependency.
27880         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
27881         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
27882         of sys_socket_.h.
27883         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
27884         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
27885         sys_stat_.h.
27886         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
27887         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
27888         sys_time_.h.
27889         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
27890         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
27891         sysexits_.h.
27892         * lib/time.in.h: Renamed from lib/time_.h.
27893         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
27894         * lib/unistd.in.h: Renamed from lib/unistd_.h.
27895         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
27896         unistd_.h.
27897         * lib/wchar.in.h: Renamed from lib/wchar_.h.
27898         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
27899         wchar_.h.
27900         * lib/wctype.in.h: Renamed from lib/wctype_.h.
27901         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
27902         wctype_.h.
27903         * build-aux/bootstrap (slurp): Update.
27904         * lib/.cppi-disable: Update.
27905
27906 2007-09-30  Bruno Haible  <bruno@clisp.org>
27907
27908         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
27909         Needed on BeOS.
27910
27911 2007-09-30  Bruno Haible  <bruno@clisp.org>
27912
27913         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
27914
27915 2007-09-29  Bruno Haible  <bruno@clisp.org>
27916
27917         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
27918
27919 2007-09-29  Bruno Haible  <bruno@clisp.org>
27920
27921         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
27922         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
27923         * build-aux/install-reloc: Compile also areadlink.c.
27924         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
27925
27926 2007-09-29  Bruno Haible  <bruno@clisp.org>
27927
27928         * gnulib-tool (func_emit_initmacro_done): Indentation.
27929
27930 2007-09-29  Bruno Haible  <bruno@clisp.org>
27931
27932         * README: Add CVS checkout update instructions.
27933         Info from Bob Proulx <bob@proulx.com>.
27934
27935 2007-09-28  Eric Blake  <ebb9@byu.net>
27936
27937         Provide move-if-change.
27938         * build-aux/move-if-change: New file, based on best practice
27939         rather than any canonical upstream location.
27940
27941 2007-09-28  Jim Meyering  <jim@meyering.net>
27942
27943         Fix canonicalize loop-detection corner case.
27944         Do not attempt to stat the symlink values stored via seen_triple.
27945         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
27946         on linux-2.6.18, (but not 2.6.22).
27947         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
27948         triple_compare.  The former compares dev,ino,filename, while the latter
27949         would actually stat dirname(filename) when dev and ino were equal.
27950         * lib/hash-triple.c: Install <string.h>.
27951         (STREQ): Define.
27952         (triple_compare_ino_str): New function.
27953         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
27954
27955 2007-09-28  Eric Blake  <ebb9@byu.net>
27956
27957         Enforce that AC_REPLACE_FUNCS files exist.
27958         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
27959         override check for typos.
27960
27961         Fix test-closein on Solaris 10.
27962         * tests/test-closein.c (main): Don't assume stdin can be inherited
27963         closed on all systems.
27964         * tests/test-closein.sh: Likewise.
27965         Reported by Piotr Tarnowski.
27966
27967 2007-09-28  Jim Meyering  <jim@meyering.net>
27968
27969         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
27970
27971 2007-09-27  Jim Meyering  <jim@meyering.net>
27972
27973         canonicalize: Avoid a false-positive cycle failure.
27974         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
27975         Sort.  Remove cycle-check.
27976         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
27977         not cycle-check.h.
27978         (seen_triple): New function.
27979         (canonicalize_filename_mode): Use it instead of cycle-check.
27980         * tests/test-canonicalize.c: Add a test for this bug.
27981         * tests/test-canonicalize.sh: Set up and run the test.
27982
27983         New module, file-set, from coreutils.
27984         * modules/file-set: Define it.
27985         * lib/file-set.c, lib/file-set.h: Implement.
27986
27987         New module, hash-triple, from coreutils.
27988         * modules/hash-triple: Define it.
27989         * lib/hash-triple.c, lib/hash-triple.h: Implement.
27990
27991 2007-09-25  Eric Blake  <ebb9@byu.net>
27992
27993         Fix strerror on Interix.
27994         * lib/string_.h (strerror): Declare replacement.
27995         * doc/functions/strerror.texi (strerror): Document the Interix
27996         shortcoming.
27997         * modules/string (Makefile.am): Support new hooks.
27998         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
27999         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
28000         gl_FUNC_STRERROR_SEPARATE.
28001         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
28002         * lib/strerror.c (rpl_strerror): Provide replacement.
28003         * modules/strerror (Depends-on): Add string.
28004         (configure.ac): Detect use of module.
28005         * tests/test-strerror.c: New file.
28006         * modules/strerror-tests: New test module.
28007         * modules/argp (Depends-on): Add strerror.
28008         * modules/error (Depends-on): Likewise.
28009         Reported by Martin Koeppe.
28010
28011 2007-09-24  Bruno Haible  <bruno@clisp.org>
28012
28013         * README: Update git instructions.
28014
28015 2007-09-24  Eric Blake  <ebb9@byu.net>
28016
28017         Revert fpending breakage from 2007-09-08.
28018         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
28019         __fpending.c.
28020
28021 2007-09-24  Jim Meyering  <jim@meyering.net>
28022
28023         filenamecat.c: Add a test.
28024         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
28025         showing how the function works when DIR is the empty string.
28026
28027 2007-09-21  Simon Josefsson  <simon@josefsson.org>
28028
28029         * tests/test-canonicalize.sh: Turn on executable bit.
28030
28031 2007-09-19  Eric Blake  <ebb9@byu.net>
28032
28033         * README: Update CVS instructions.
28034
28035 2007-09-18  Bruno Haible  <bruno@clisp.org>
28036
28037         * modules/areadlink: New file.
28038         * lib/areadlink.h (areadlink): New declaration.
28039         * lib/areadlink.c: New file, based on lib/xreadlink.c.
28040
28041 2007-09-17  Jim Meyering  <jim@meyering.net>
28042
28043         * lib/savewd.c (ESTALE) [!defined]: Define.
28044         Reported to be required on Interix by Martin Koeppe.
28045
28046 2007-09-17  Bruno Haible  <bruno@clisp.org>
28047
28048         * gnulib-tool (func_version): Use $version.
28049
28050 2007-09-16  Bruno Haible  <bruno@clisp.org>
28051
28052         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
28053         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
28054         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
28055         Reported by Greg Schafer <gschafer@zip.com.au>.
28056
28057 2007-09-15  Bruno Haible  <bruno@clisp.org>
28058
28059         * gnulib-tool (sed): Try a little harder to make bash understand the
28060         alias.
28061         Reported by Bruce Korb <bruce.korb@gmail.com>.
28062
28063 2007-09-13  Eric Blake  <ebb9@byu.net>
28064
28065         * ChangeLog: Remove conflict markers.
28066
28067 2007-09-13  Simon Josefsson  <simon@josefsson.org>
28068
28069         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
28070         Reported by Bruno Haible <bruno@clisp.org>.
28071
28072 2007-09-12  Bruno Haible  <bruno@clisp.org>
28073
28074         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
28075         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
28076         is not defined.
28077
28078 2007-09-12  Eric Blake  <ebb9@byu.net>
28079
28080         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
28081         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
28082         Autoconf definition.
28083         * modules/euidaccess (Depends-on): Add extensions, for
28084         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
28085         * modules/fnmatch (Depends-on): Likewise.
28086         * modules/getaddrinfo (Depends-on): Likewise.
28087         * modules/getdelim (Depends-on): Likewise.
28088         * modules/getline (Depends-on): Likewise.
28089         * modules/getsubopt (Depends-on): Likewise.
28090         * modules/gettext (Depends-on): Likewise.
28091         * modules/group-member (Depends-on): Likewise.
28092         * modules/mbchar (Depends-on): Likewise.
28093         * modules/memmem (Depends-on): Likewise.
28094         * modules/mempcpy (Depends-on): Likewise.
28095         * modules/memrchr (Depends-on): Likewise.
28096         * modules/pagealign_alloc (Depends-on): Likewise.
28097         * modules/readutmp (Depends-on): Likewise.
28098         * modules/stpcpy (Depends-on): Likewise.
28099         * modules/stpncpy (Depends-on): Likewise.
28100         * modules/strchrnul (Depends-on): Likewise.
28101         * modules/strndup (Depends-on): Likewise.
28102         * modules/strsep (Depends-on): Likewise.
28103         * modules/strverscmp (Depends-on): Likewise.
28104         * modules/vasprintf (Depends-on): Likewise.
28105         * modules/wcwidth (Depends-on): Likewise.
28106         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
28107         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
28108         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
28109         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
28110         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28111         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
28112         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
28113         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
28114         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
28115         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
28116         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
28117         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
28118         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
28119         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
28120         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
28121         * m4/readutmp.m4 (gl_READUTMP): Likewise.
28122         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
28123         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
28124         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28125         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
28126         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
28127         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
28128         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
28129         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
28130         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
28131         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
28132         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
28133         so that lock.m4 can be used in gettext without extensions module.
28134
28135 2007-09-11  Bruno Haible  <bruno@clisp.org>
28136
28137         * m4/isc-posix.m4: Remove file.
28138         Suggested by Eric Blake.
28139
28140 2007-09-11  Eric Blake  <ebb9@byu.net>
28141
28142         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
28143
28144 2007-09-10  Bruno Haible  <bruno@clisp.org>
28145
28146         * posix-modules: Fix typo in error message.
28147         Reported by Matt <mkraai@beckman.com>.
28148
28149 2007-09-09  Bruno Haible  <bruno@clisp.org>
28150
28151         * doc/functions/getdelim.texi: Update list of platforms lacking the
28152         function.
28153         * doc/functions/getline.texi: Likewise.
28154
28155 2007-09-09  Jim Meyering  <jim@meyering.net>
28156
28157         * lib/hash.c (hash_initialize): Detect calloc failure.
28158         Reported by Bruno Haible.
28159
28160 2007-09-09  Bruno Haible  <bruno@clisp.org>
28161
28162         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
28163         malloc or realloc fails.
28164
28165 2007-09-09  Bruno Haible  <bruno@clisp.org>
28166
28167         * modules/getcwd (Depends-on): Add malloc-posix.
28168         * modules/glob (Depends-on): Likewise.
28169         * modules/putenv (Depends-on): Likewise.
28170         * modules/strdup (Depends-on): Likewise.
28171         * modules/getdelim (Depends-on): Add realloc-posix.
28172         * modules/read-file (Depends-on): Likewise.
28173
28174 2007-09-09  Bruno Haible  <bruno@clisp.org>
28175
28176         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
28177         (gl_FUNC_MALLOC_POSIX): Require it.
28178         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
28179         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
28180         * modules/realloc (Files): Add m4/malloc.m4.
28181         * modules/calloc (Files): Likewise.
28182
28183 2007-09-09  Bruno Haible  <bruno@clisp.org>
28184
28185         * modules/malloc-posix: New file.
28186         * modules/malloc (Depends-on): Add malloc-posix.
28187         * lib/malloc.c: Include errno.h.
28188         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
28189         and a POSIX-compatible malloc into a single function. Set ENOMEM
28190         when returning NULL.
28191         * m4/malloc.m4: New file.
28192         * doc/functions/malloc.texi: Mention the malloc-posix module.
28193         * lib/stdlib_.h (malloc): New declaration.
28194         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
28195         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
28196         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
28197         and HAVE_MALLOC_POSIX.
28198
28199 2007-09-09  Bruno Haible  <bruno@clisp.org>
28200
28201         * modules/realloc-posix: New file.
28202         * modules/realloc (Depends-on): Add realloc-posix.
28203         * lib/realloc.c: Include errno.h.
28204         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
28205         and a POSIX-compatible realloc into a single function. Set ENOMEM
28206         when returning NULL.
28207         * m4/realloc.m4: New file.
28208         * doc/functions/realloc.texi: Mention the realloc-posix module.
28209         * lib/stdlib_.h (realloc): New declaration.
28210         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
28211         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
28212         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
28213         and HAVE_REALLOC_POSIX.
28214
28215 2007-09-09  Bruno Haible  <bruno@clisp.org>
28216
28217         * modules/calloc-posix: New file.
28218         * modules/calloc (Depends-on): Add calloc-posix.
28219         * lib/calloc.c: Include errno.h.
28220         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
28221         and a POSIX-compatible calloc into a single function. Set ENOMEM
28222         when returning NULL.
28223         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
28224         * doc/functions/calloc.texi: Mention the calloc-posix module.
28225         * lib/stdlib_.h (calloc): New declaration.
28226         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
28227         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
28228         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
28229         and HAVE_CALLOC_POSIX.
28230
28231 2007-09-09  Bruno Haible  <bruno@clisp.org>
28232
28233         Allow for modules to show an arbitrary notice.
28234         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
28235         * gnulib-tool: New option --extract-notice.
28236         (func_usage): Document it.
28237         (sed_extract_prog): Update.
28238         (func_get_notice): New function.
28239         (func_modules_notice): New function.
28240         (func_import, func_create_testdir): Invoke it.
28241         Suggested by Jim Meyering.
28242
28243 2007-09-09  Bruno Haible  <bruno@clisp.org>
28244
28245         * gnulib-tool: New options --verbose, --quiet.
28246         (func_usage): Document them.
28247         (verbose): New variable.
28248         (func_execute_command): New function.
28249         (func_import): Don't show the module list and the file list if
28250         $verbose < 0.
28251         (func_create_testdir): Likewise. Use func_execute_command.
28252         (func_create_megatestdir): Use func_execute_command.
28253
28254 2007-09-08  Bruno Haible  <bruno@clisp.org>
28255
28256         * gnulib-tool (func_import): Prefer rsync over wget when available,
28257         for fetching the PO files.
28258
28259 2007-09-08  Bruno Haible  <bruno@clisp.org>
28260
28261         * posix-modules: New file. Portions copied from gnulib-tool.
28262         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
28263
28264 2007-09-08  Jim Meyering  <jim@meyering.net>
28265
28266         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
28267         * lib/fpending.h: Rename from __fpending.h.
28268         * lib/fpending.c: Rename from __fpending.c.
28269         Include "fpending.h", not "__fpending.h".
28270         * lib/__fpending.h, lib/__fpending.c: Remove files.
28271         * modules/fpending (Files): Reflect new file names.
28272         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
28273
28274 2007-09-08  Bruno Haible  <bruno@clisp.org>
28275
28276         * m4/inttypes-h.m4: Remove stub file.
28277
28278 2007-09-07  Simon Josefsson  <simon@josefsson.org>
28279
28280         * doc/headers/stdint.texi: Discuss #include_next issue.
28281
28282 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28283
28284         * build-aux/bootstrap: Remove obsolete comment about wget --help.
28285
28286 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28287
28288         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
28289         in variable name.
28290
28291 2007-09-03  Jim Meyering  <jim@meyering.net>
28292
28293         New module: git-version-gen.
28294         * modules/git-version-gen: New file.
28295
28296         Import changes from coreutils for bootstrap script.
28297
28298         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
28299
28300         bootstrap: uses rsync to download the .po files
28301         * build-aux/bootstrap (po_download_command_format): New global.
28302         (download_po_files): Use rsync.
28303         (update_po_files): Don't remove .po files after download,
28304         so future rsync runs can take advantage of the copies.
28305
28306         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
28307
28308         Solve the unnecessary-.po-file-regeneration problem once and for all.
28309         * build-aux/bootstrap (download_po_files): New function, renamed from
28310         get_translations.  Now, downloads, but doesn't update LINGUAS.
28311         (update_po_files): New function.
28312
28313         bootstrap: Ignore more.
28314         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
28315         uniwidth to e.g., lib/.gitignore.
28316         (slurp): Handle the sys_stat_.h -> sys mapping, too.
28317
28318         * build-aux/bootstrap: New setting: vc_ignore.
28319         (insert_sorted_if_absent): Create $file if absent.
28320         Adapt to new, possibly empty, list: $vc_ignore.
28321
28322         bootstrap: generate more ignorable names
28323         * build-aux/bootstrap (slurp): When generating ignorable names,
28324         also map .sin to .sed, .gperf to .c, and .y to .c.
28325
28326 2007-09-03  Jim Meyering  <jim@meyering.net>
28327
28328         * build-aux/git-version-gen: New file, from coreutils.  For details, see
28329         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
28330
28331 2007-09-02  Bruno Haible  <bruno@clisp.org>
28332
28333         Fix mis-recognition of 'mcs' on QNX 6.
28334         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
28335         output contains the string "Mono".
28336         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
28337         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
28338
28339 2007-09-01  Bruno Haible  <bruno@clisp.org>
28340
28341         Fix collision between uniwidth/* and linebreak modules.
28342         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
28343         u32_width): Remove declarations.
28344         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
28345         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
28346         streq3, streq2, streq1, streq0): Remove functions.
28347         (STREQ): Remove macro.
28348         (is_cjk_encoding): Remove function.
28349         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
28350         (uc_width, u8_width, u16_width, u32_width): Remove functions.
28351         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
28352         * NEWS: Document the change.
28353
28354 2007-09-01  Bruno Haible  <bruno@clisp.org>
28355
28356         * lib/streq.h: Add double-inclusion guard.
28357
28358 2007-09-01  Karl Berry  <karl@gnu.org>
28359
28360         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
28361
28362 2007-08-28  Jim Meyering  <jim@meyering.net>
28363
28364         Rename mreadlink_with_size to areadlink_with_size.
28365         * NEWS: Document the change.
28366         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
28367         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
28368         * lib/mreadlink.h: Rename this to...
28369         * lib/areadlink.h: ...this.
28370         * modules/mreadlink-with-size: Rename this to...
28371         * modules/areadlink-with-size: ...this.
28372         * lib/canonicalize.c: Reflect the renaming.
28373         * modules/canonicalize: Likewise.
28374
28375 2007-08-26  Bruno Haible  <bruno@clisp.org>
28376
28377         * gnulib-tool (func_import): When deciding which files to remove,
28378         consider also dangling symbolic links.
28379         Reported by Eric Blake.
28380
28381 2007-08-26  Bruno Haible  <bruno@clisp.org>
28382
28383         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
28384
28385 2007-08-23  Simon Josefsson  <simon@josefsson.org>
28386
28387         * lib/readline.c: Don't include getline.h, the prototype is now
28388         found in stdio.h.
28389
28390 2007-08-23  Jim Meyering  <jim@meyering.net>
28391
28392         Getdelim touchup.
28393         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
28394         around the funlockfile call, since funlockfile never sets errno.
28395         Don't set errno upon failed realloc.
28396
28397 2007-08-22  Eric Blake  <ebb9@byu.net>
28398
28399         Getline touchups.
28400         * lib/getdelim.c (getdelim): Revert regression that required *n to
28401         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
28402         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
28403         getdelim, rather than whether implementation is missing.
28404         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
28405         * lib/stdio_.h (getline): Also declare if replacement is
28406         required.
28407         * doc/functions/getdelim.texi: New file.
28408         * doc/functions/getline.texi: Likewise.
28409         * doc/gnulib.texi (Function Substitutes): Add new files.
28410         Reported by Bruno Haible.
28411
28412 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
28413
28414         * users.txt: Add Guile.
28415
28416 2007-08-22  Eric Blake  <ebb9@byu.net>
28417
28418         * tests/test-getdelim.c (main): Use remove, not unlink.
28419         * tests/test-getline.c (main): Likewise.
28420
28421         Move getline and getdelim into stdio.h, per POSIX 200x.
28422         * modules/getline (Files): Remove getline.h.
28423         (Depends-on): Add stdio.
28424         (configure.ac): Add module indicator.
28425         * modules/getdelim (Files): Remove getdelim.h.
28426         (Depends-on): Add stdio.
28427         (configure.ac): Add module indicator.
28428         * modules/stdio (Makefile.am): Work with new indicators.
28429         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
28430         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
28431         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
28432         * lib/getdelim.h: Delete.
28433         * lib/getline.h: Delete.
28434         * lib/stdio_.h (getdelim, getline): Declare.
28435         * modules/getdelim-tests: New module.
28436         * modules/getline-tests: Likewise.
28437         * tests/test-getdelim.c: New file.
28438         * tests/test-getline.c: Likewise.
28439         * NEWS: Document the change.
28440         * lib/getline.c: Update choice of header.
28441         * lib/csharpcomp.c: Likewise.
28442         * lib/getpass.c: Likewise.
28443         * lib/javacomp.c: Likewise.
28444         * lib/javaversion.c: Likewise.
28445         * lib/yesno.c: Likewise.
28446         * lib/getdelim.c: Likewise.
28447         (getdelim): Set errno on failure, and avoid memory leak.
28448
28449 2007-08-19  Bruno Haible  <bruno@clisp.org>
28450
28451         * modules/closein (Depends-on): Add freadahead.
28452         * lib/closein.c: Include freadahead.h.
28453         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
28454         is zero.
28455
28456 2007-08-19  Bruno Haible  <bruno@clisp.org>
28457
28458         * modules/freadahead-tests: New file.
28459         * tests/test-freadahead.sh: New file.
28460         * tests/test-freadahead.c: New file.
28461
28462         * modules/freadahead: New file.
28463         * lib/freadahead.h: New file.
28464         * lib/freadahead.c: New file.
28465         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
28466         fbufmode, fpurge, freadable, fwritable.
28467
28468 2007-08-19  Eric Blake  <ebb9@byu.net>
28469
28470         Test yesno in combination with closein.
28471         * lib/yesno.c (yesno): Document use of stdin.
28472         * modules/yesno-tests (Files): New module.
28473         * tests/test-yesno.c (main): New file.
28474         * tests/test-yesno.sh: Likewise.
28475
28476 2007-08-19  Bruno Haible  <bruno@clisp.org>
28477
28478         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
28479         * lib/fseeko.c (rpl_fseeko): Likewise.
28480         * lib/fseterr.c (fseterr): Likewise.
28481
28482 2007-08-19  Bruno Haible  <bruno@clisp.org>
28483
28484         * tests/test-lseek.c (main): Disable a test for BeOS.
28485         * doc/functions/lseek.texi: Document the BeOS bug.
28486
28487 2007-08-19  Bruno Haible  <bruno@clisp.org>
28488             Eric Blake  <ebb9@byu.net>
28489
28490         * lib/lseek.c: Include <sys/stat.h>.
28491         (rpl_lseek): Add workaround code also for Unix platforms.
28492         Needed for BeOS.
28493         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
28494         * doc/functions/lseek.texi: Document BeOS definiency.
28495
28496 2007-08-18  Bruno Haible  <bruno@clisp.org>
28497
28498         * modules/fstrcmp-tests: New file.
28499         * tests/test-fstrcmp.c: New file.
28500
28501 2007-08-18  Bruno Haible  <bruno@clisp.org>
28502
28503         * modules/fstrcmp: New file, from GNU gettext with modifications.
28504         * lib/fstrcmp.h: New file, from GNU gettext.
28505         * lib/fstrcmp.c: New file, from GNU gettext.
28506         * MODULES.html.sh (String handling): Add fstrcmp.
28507
28508 2007-08-18  Bruno Haible  <bruno@clisp.org>
28509
28510         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
28511         'bool'.
28512         (diag, compareseq): Remove const from the ctxt argument.
28513         (USE_HEURISTIC): Undefine at the end.
28514
28515 2007-08-18  Jim Meyering  <jim@meyering.net>
28516
28517         New file: lib/idcache.h
28518         * NEWS: Mention the addition.
28519         * modules/idcache (Files): Add lib/idcache.h
28520         * lib/idcache.c: Include "idcache.h".
28521         Don't include <sys/types.h>.
28522         Add a FIXME comment.
28523         Move file-scoped "static" declarations to the top.
28524         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
28525
28526 2007-08-17  Bruno Haible  <bruno@clisp.org>
28527         and Paul Eggert  <eggert@cs.ucla.edu>
28528
28529         * MODULES.html.sh: Add diffseq.
28530         * modules/diffseq: New file.
28531         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
28532         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
28533
28534 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
28535
28536         Import changes from coreutils for bootstrap script.
28537
28538         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
28539
28540         * build-aux/bootstrap (slurp): Work even in environments where
28541         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
28542         current code does not slurp files whose names start with ".", and
28543         this looks like it might be a troublesome area.
28544
28545         2007-07-11  Jim Meyering  <jim@meyering.net>
28546
28547         If there's a GPL vN copyright comment, require that N == 3.
28548
28549         2007-07-08  Jim Meyering  <jim@meyering.net>
28550
28551         Run the coreutils-specific code only if tests/Makefile.am.in exists.
28552         * build-aux/bootstrap (mam_template): Move definition out of loop.
28553
28554         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
28555
28556         * build-aux/bootstrap (symlink_to_dir): Rename function from
28557         symlink_to_gnulib.  Add a directory parameter.  Update all
28558         callers.
28559         (cp_mark_as_generated): Also check for -- and link to -- files in
28560         gl/.
28561
28562         2007-07-08  Jim Meyering  <jim@meyering.net>
28563
28564         Adapt to deeper hierarchy in gnulib.
28565         * build-aux/bootstrap (symlink_to_dir): If the destination
28566         directory doesn't exist, create it. This is required at least for
28567         "lib/uniwidth/cjk.h".
28568
28569         2007-05-15  Jim Meyering  <jim@meyering.net>
28570
28571         * build-aux/bootstrap: Now that generated Makefile.am files
28572         are no longer under version control, they must be created at
28573         bootstrap time.
28574
28575 2007-08-14  Ben Pfaff  <blp@gnu.org>
28576
28577         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
28578
28579 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
28580
28581         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
28582         given the changes below.
28583         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
28584         even on hosts that have padding bits beyond the supported 64.
28585
28586 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
28587
28588         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
28589         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
28590         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
28591         depends on it.
28592         (xstrtol_error): Remove.
28593         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
28594         but with a different signature.
28595         (ATTRIBUTE_NORETURN, __attribute__): New macros.
28596         * lib/xstrtol-error.c: Include exitfail.h.
28597         (xstrtol_fatal): New function, with a different signature from the
28598         old xstrtol_error, so that the caller need not worry about passing
28599         in an exit status, or about storage management of the option argument.
28600         (xstrtol_error): Now a static function.  Redo signature to
28601         implement xstrtol_fatal.  Output the correct number of hyphens in
28602         front of the option so that the caller need not worry about
28603         storage management.
28604         (N_): New macro.
28605         (_): Remove; not used now.
28606         * modules/xstrtol: Depend on getopt.
28607         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
28608         of old STRTOL_FATAL_ERROR macro.
28609         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
28610         of test program.
28611         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
28612         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
28613
28614 2007-08-08  Eric Blake  <ebb9@byu.net>
28615
28616         * lib/xstrtol-error.c: Add missing include.
28617
28618         Move xstrtol messages into gnulib domain, when --pobase is used.
28619         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
28620         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
28621         * modules/xstrtol (Files): Distribute new file.
28622         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
28623         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
28624         * tests/test-xstrtol.c: ...into new file.
28625         * tests/test-xstrtoul.c: Also test xstrtoul.
28626         * tests/test-xstrtoimax.c: Also test xstrtoimax.
28627         * tests/test-xstrtoumax.c: Also test xstrtoumax.
28628         * tests/test-xstrtol.sh: Drive the tests.
28629         * tests/test-xstrtoimax.sh: Likewise.
28630         * tests/test-xstrtoumax.sh: Likewise.
28631         * modules/xstrtol-tests: New module.
28632         * modules/xstrtoimax-tests: Likewise.
28633         * modules/xstrtoumax-tests: Likewise.
28634
28635 2007-08-08  Jim Meyering  <jim@meyering.net>
28636
28637         New function: mfile_name_concat.
28638         * lib/filenamecat.c (mfile_name_concat): New function, just like
28639         file_name_concat, but return NULL upon failure rather than exiting
28640         with a diagnostic.
28641         * lib/filenamecat.h: Declare it.
28642
28643 2007-08-07  Bruno Haible  <bruno@clisp.org>
28644
28645         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
28646         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
28647         warning from gcc.
28648         Reported by Eric Blake.
28649
28650 2007-08-07  Simon Josefsson  <simon@josefsson.org>
28651
28652         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
28653         * modules/crypto/arcfour (License): Likewise.
28654         * modules/crypto/des-tests (License): Likewise.
28655         * modules/crypto/gc-arctwo-tests (License): Likewise.
28656         * modules/crypto/gc-des-tests (License): Likewise.
28657         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
28658         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
28659         * modules/crypto/gc-md2-tests (License): Likewise.
28660         * modules/crypto/gc-md4-tests (License): Likewise.
28661         * modules/crypto/gc-md5-tests (License): Likewise.
28662         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
28663         * modules/crypto/gc-rijndael-tests (License): Likewise.
28664         * modules/crypto/gc-sha1-tests (License): Likewise.
28665         * modules/crypto/gc-tests (License): Likewise.
28666         * modules/crypto/hmac-md5 (License): Likewise.
28667         * modules/crypto/hmac-sha1 (License): Likewise.
28668         * modules/crypto/md2-tests (License): Likewise.
28669         * modules/crypto/md4-tests (License): Likewise.
28670         * modules/crypto/md5 (License): Likewise.
28671         * modules/crypto/rijndael (License): Likewise.
28672         * modules/crypto/sha1 (License): Likewise.
28673         * modules/memxor (License): Likewise.
28674
28675 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
28676         and Bruno Haible  <bruno@clisp.org>
28677
28678         * NEWS: Describe interface changes to human, xstrtol.
28679         * lib/human.h: Include <xstrtol.h>.
28680         (human_options): Return enum strtol_error, not int.  Remove
28681         bool arg; take int * instead.
28682         * lib/human.c: Don't include "gettext.h".
28683         (_): Remove; no longer used.
28684         Don't include <xstrtol.h>, since human.h does it.
28685         (human_options): Adjust to abovementioned interface changes.
28686         Do not report error to stderr; that's now the caller's
28687         responsibility.
28688         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
28689         interface change.
28690         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
28691         Str, Argument_type_string.  All uses changed.  Put " argument"
28692         in diagnostics to make them clearer.  Change wording of suffix
28693         message for clarity.
28694         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
28695         Argument_type_string.
28696         (STRTOL_FATAL_WARN): Remove; no longer used.
28697         * modules/human (Depends-on): Remove gettext-h.
28698
28699 2007-08-06  Simon Josefsson  <simon@josefsson.org>
28700
28701         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
28702
28703 2007-07-31  Bruno Haible  <bruno@clisp.org>
28704
28705         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
28706         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
28707         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
28708
28709 2007-07-31  Bruno Haible  <bruno@clisp.org>
28710
28711         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
28712         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
28713
28714 2007-07-30  Bruno Haible  <bruno@clisp.org>
28715
28716         * modules/base64 (License): Use the synonymous term "LGPLv2+".
28717         * modules/c-ctype (License): Likewise.
28718         * modules/c-strcase (License): Likewise.
28719         * modules/check-version (License): Likewise.
28720         * modules/iconv (License): Likewise.
28721         * modules/iconv_open (License): Likewise.
28722         * modules/read-file (License): Likewise.
28723         * modules/striconv (License): Likewise.
28724         * modules/strverscmp (License): Likewise.
28725         * modules/vasprintf (License): Likewise.
28726         * modules/crypto/des (License): Likewise.
28727         * modules/crypto/gc (License): Likewise.
28728         * modules/crypto/gc-arcfour (License): Likewise.
28729         * modules/crypto/gc-arctwo (License): Likewise.
28730         * modules/crypto/gc-des (License): Likewise.
28731         * modules/crypto/gc-hmac-md5 (License): Likewise.
28732         * modules/crypto/gc-hmac-sha1 (License): Likewise.
28733         * modules/crypto/gc-md2 (License): Likewise.
28734         * modules/crypto/gc-md4 (License): Likewise.
28735         * modules/crypto/gc-md5 (License): Likewise.
28736         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
28737         * modules/crypto/gc-random (License): Likewise.
28738         * modules/crypto/gc-rijndael (License): Likewise.
28739         * modules/crypto/gc-sha1 (License): Likewise.
28740         * modules/crypto/md2 (License): Likewise.
28741         * modules/crypto/md4 (License): Likewise.
28742
28743 2007-07-30  Jim Meyering  <jim@meyering.net>
28744
28745         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
28746         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
28747         it has valid stat data.  This bug would cause du not to count the
28748         sizes of inaccessible directories.
28749         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
28750         in <http://bugzilla.redhat.com/250077>.
28751
28752 2007-07-25  Peter O'Gorman  <peter@pogma.com>
28753             Bruno Haible  <bruno@clisp.org>
28754
28755         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
28756         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
28757         #include_next, gives a diagnostic about it, but reports no error in
28758         the exit code.
28759         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
28760
28761 2007-07-24  Ben Pfaff  <blp@gnu.org>
28762
28763         Improve name: "count-one-bits" is better than "popcount".
28764         * MODULES.html.sh: Update name.
28765         * lib/popcount.h: Renamed lib/count-one-bits.h.
28766         (popcount): Renamed count_one_bits.
28767         (popcountl): Renamed count_one_bits_l.
28768         (popcountll): Renamed count_one_bits_ll.
28769         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
28770         * modules/popcount: Renamed module/count-one-bits.
28771         * modules/popcount-tests: Renamed module/count-one-bits-tests.
28772         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
28773
28774 2007-07-23  Ben Pfaff  <blp@gnu.org>
28775
28776         * lib/popcount.h (popcount32): Reduce size of constants, to allow
28777         better code generation, and add U to large constants to avoid
28778         warnings, in non-GCC case.
28779         Suggested by Bruno Haible.
28780
28781 2007-07-23  Ben Pfaff  <blp@gnu.org>
28782
28783         * lib/popcount.h: Use verify_true instead of if...abort.
28784         * modules/popcount: Depend on verify module.
28785         Suggested by Jim Meyering.
28786
28787 2007-07-23  Bruno Haible  <bruno@clisp.org>
28788
28789         * gnulib-tool (func_import): Create a .cvsignore file also when the
28790         directory is not yet in CVS but the toplevel directory is. When
28791         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
28792         Reported by Karl Berry.
28793
28794 2007-07-22  Ben Pfaff  <blp@gnu.org>
28795
28796         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
28797         case.
28798         Suggested by Eric Blake.
28799
28800 2007-07-22  Ben Pfaff  <blp@gnu.org>
28801
28802         New module: popcount.
28803         * MODULES.html.sh: Add popcount.
28804         * modules/popcount: New file.
28805         * modules/popcount-tests: New file.
28806         * tests/test-popcount.c: New file.
28807         * lib/popcount.h: New file.
28808         * m4/popcount.m4: New file.
28809
28810 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
28811
28812         * build-aux/announce-gen: Update to GPLv3.
28813
28814         * build-aux/config.guess: Update from config.
28815
28816 2007-07-21  Bruno Haible  <bruno@clisp.org>
28817
28818         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
28819         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
28820
28821 2007-07-20  Jim Meyering  <jim@meyering.net>
28822
28823         * check-module: Diagnose a self-dependency.
28824
28825 2007-07-19  Bruno Haible  <bruno@clisp.org>
28826
28827         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
28828         empty.
28829         Reported by Eric Blake.
28830
28831 2007-07-18  Bruno Haible  <bruno@clisp.org>
28832
28833         * gnulib-tool: New options --po-base, --po-domain.
28834         (func_usage): Document them.
28835         (pobase, po_domain): New variables.
28836         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
28837         DEFAULT_TEXT_DOMAIN.
28838         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
28839         (func_import): Consider pobase and po_domain. Create a po/ directory.
28840         (func_create_testdir): Set pobase and po_domain to empty.
28841         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
28842         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
28843
28844 2007-07-18  Bruno Haible  <bruno@clisp.org>
28845
28846         * gnulib-tool (func_get_automake_snippet): Synthesize also an
28847         EXTRA_DIST augmentation for files in build-aux/.
28848
28849 2007-07-16  Bruno Haible  <bruno@clisp.org>
28850
28851         * modules/lseek (License): Use the synonymous term "LGPLv2+".
28852         * modules/getdelim (License): Likewise.
28853
28854 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28855
28856         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
28857         * modules/d-type (License): Likewise.
28858         * modules/extensions (License): Likewise.
28859         * modules/fnmatch (License): Likewise.
28860         * modules/fseeko (License): Likewise.
28861         * modules/getaddrinfo (License): Likewise.
28862         * modules/getline (License): Likewise.
28863         * modules/getlogin_r (License): Likewise.
28864         * modules/getpass (License): Likewise.
28865         * modules/gettimeofday (License): Likewise.
28866         * modules/glob (License): Likewise.
28867         * modules/inet_ntop (License): Likewise.
28868         * modules/malloc (License): Likewise.
28869         * modules/malloca (License): Likewise.
28870         * modules/memmem (License): Likewise.
28871         * modules/mempcpy (License): Likewise.
28872         * modules/memset (License): Likewise.
28873         * modules/minmax (License): Likewise.
28874         * modules/mktime (License): Likewise.
28875         * modules/netinet_in (License): Likewise.
28876         * modules/pathmax (License): Likewise.
28877         * modules/poll (License): Likewise.
28878         * modules/regex (License): Likewise.
28879         * modules/snprintf (License): Likewise.
28880         * modules/stdbool (License): Likewise.
28881         * modules/stdint (License): Likewise.
28882         * modules/stdio (License): Likewise.
28883         * modules/strcase (License): Likewise.
28884         * modules/strcasestr (License): Likewise.
28885         * modules/strdup (License): Likewise.
28886         * modules/string (License): Likewise.
28887         * modules/strndup (License): Likewise.
28888         * modules/strnlen (License): Likewise.
28889         * modules/strpbrk (License): Likewise.
28890         * modules/strptime (License): Likewise.
28891         * modules/strsep (License): Likewise.
28892         * modules/sys_select (License): Likewise.
28893         * modules/sys_socket (License): Likewise.
28894         * modules/sys_stat (License): Likewise.
28895         * modules/sys_time (License): Likewise.
28896         * modules/time (License): Likewise.
28897         * modules/time_r (License): Likewise.
28898         * modules/timegm (License): Likewise.
28899         * modules/unistd (License): Likewise.
28900         * modules/vsnprintf (License): Likewise.
28901         * modules/wctype (License): Likewise.
28902
28903 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28904
28905         * modules/argz (License): LGPLv2+.
28906
28907 2007-07-15  Karl Berry  <karl@gnu.org>
28908
28909         * doc/gnulib.texi: revise node structure per new fdl.texi.
28910
28911 2007-07-14  Bruno Haible  <bruno@clisp.org>
28912
28913         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
28914         the output file.
28915         * lib/uniname/uninames.h: Regenerated.
28916
28917 2007-07-14  Karl Berry  <karl@gnu.org>
28918
28919         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
28920         omitting sectioning and index commands.
28921
28922 2007-07-13  Bruno Haible  <bruno@clisp.org>
28923
28924         New gnulib-tool option --more-symlinks.
28925         * gnulib-tool (func_usage): Document --more-symlinks.
28926         (do_copyrights): New variable.
28927         Recognize option --more-symlinks.
28928         (func_import): Don't add a copyright notice transform to
28929         sed_transform_lib_file if do_copyrights is empty.
28930
28931 2007-07-13  Bruno Haible  <bruno@clisp.org>
28932
28933         * lib/vasnprintf.c (decimal_point_char): Define also if
28934         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
28935         && !NEED_PRINTF_DIRECTIVE_A.
28936         Reported by Clemens Koller <clemens.koller@anagramm.de> via
28937         Gary V. Vaughan <gary@gnu.org>.
28938
28939 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
28940
28941         * lib/inttypes_.h: Undo previous change, since it was fixed
28942         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
28943
28944 2007-07-13  Bruno Haible  <bruno@clisp.org>
28945
28946         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
28947         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
28948
28949 2007-07-13  Jim Meyering  <jim@meyering.net>
28950
28951         df: Don't fail for Tru64's "file-on-file mount".
28952         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
28953         so we fall through and use statfs instead.  Details here:
28954         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
28955         Reported by Albert Chin.
28956
28957 2007-07-13  Bruno Haible  <bruno@clisp.org>
28958
28959         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
28960         * modules/configmake (License): Likewise.
28961         * modules/gettext (License): Likewise.
28962         * modules/gettext-h (License): Likewise.
28963         * modules/include_next (License): Likewise.
28964         * modules/link-warning (License): Likewise.
28965         * modules/localcharset (License): Likewise.
28966         * modules/localename (License): Likewise.
28967         * modules/lock (License): Likewise.
28968         * modules/relocatable-lib-lgpl (License): Likewise.
28969         * modules/size_max (License): Likewise.
28970         * modules/vasnprintf (License): Likewise.
28971         * modules/wchar (License): Likewise.
28972         * modules/xsize (License): Likewise.
28973
28974 2007-07-13  Bruno Haible  <bruno@clisp.org>
28975
28976         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
28977         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
28978
28979 2007-07-12  Bruno Haible  <bruno@clisp.org>
28980
28981         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
28982         in the modules files.
28983
28984 2007-07-11  Karl Berry  <karl@gnu.org>
28985
28986         * MODULES.html.sh (func_module): use
28987          sed -e '\|^'"${includefile}"'$|d'
28988          instead of /.../d, to avoid errors on $includefile's containing /.
28989
28990 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
28991
28992         * gnulib-tool (func_import): Avoid duplication of --avoid
28993         statements
28994         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
28995         names to `_' in variable names.
28996
28997 2007-07-10  Eric Blake  <ebb9@byu.net>
28998
28999         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
29000         * NEWS: Document this change.
29001
29002 2007-07-08  Bruno Haible  <bruno@clisp.org>
29003
29004         Update to Unicode 5.0.
29005         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
29006         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
29007         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
29008         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
29009         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
29010         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
29011         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
29012         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
29013         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
29014         U+10A3F, U+1D242..U+1D244.
29015         (nonspacing_table_ind): Update.
29016         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
29017         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
29018
29019 2007-07-08  Bruno Haible  <bruno@clisp.org>
29020
29021         Update to Unicode 5.0.
29022         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
29023         code transform. Extend the name index field of unicode_name_to_code and
29024         unicode_code_to_name from 16 to 24 bits.
29025         * lib/uniname/uniname.c (unicode_character_name,
29026         unicode_name_character): Add the range 0x12xxx to the code transform.
29027         * lib/uniname/uninames.h: Regenerated.
29028         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
29029
29030 2007-07-07  Bruno Haible  <bruno@clisp.org>
29031
29032         * modules/wcwidth-tests: New file.
29033         * tests/test-wcwidth.c: New file.
29034
29035         Work around MacOS X wcwidth() bug.
29036         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
29037         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
29038         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
29039         original wcwidth in non-UTF-8 locales.
29040         * modules/wcwidth (Depends-on): Add localcharset, streq,
29041         uniwidth/width.
29042         * doc/functions/wcwidth.texi: Update.
29043
29044 2007-07-07  Bruno Haible  <bruno@clisp.org>
29045
29046         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
29047         (wcwidth): New declaration.
29048         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
29049         macros.
29050         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
29051         here. Prepare for creating <wchar.h> unconditionally.
29052         * modules/wchar (Depends-on): Add link-warning.
29053         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
29054         REPLACE_WCWIDTH, and GL_LINK_WARNING.
29055         * lib/wcwidth.h: Remove file.
29056         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
29057         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
29058         * modules/wcwidth (Files): Remove lib/wcwidth.h.
29059         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
29060         (Include): Replace wcwidth.h with <wchar.h>.
29061         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
29062         * lib/mbchar.h: Don't include wcwidth.h.
29063         * lib/mbswidth.c: Likewise.
29064         * NEWS: Mention the change.
29065
29066 2007-07-07  Bruno Haible  <bruno@clisp.org>
29067
29068         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
29069         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
29070         definition with an external declaration.
29071         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
29072         defined as a function. Remove AC_C_INLINE requirement.
29073         * modules/wcwidth (Files): Add lib/wcwidth.c.
29074         (Makefile.am): Remove redundant statement.
29075
29076 2007-07-07  Bruno Haible  <bruno@clisp.org>
29077
29078         * MODULES.html.sh (Unicode string functions): Add the new modules.
29079
29080         * tests/uniwidth/test-u32-strwidth.c: New file.
29081         * modules/uniwidth/u32-strwidth-tests: New file.
29082
29083         * lib/uniwidth/u32-strwidth.c: New file.
29084         * modules/uniwidth/u32-strwidth: New file.
29085
29086         * tests/uniwidth/test-u16-strwidth.c: New file.
29087         * modules/uniwidth/u16-strwidth-tests: New file.
29088
29089         * lib/uniwidth/u16-strwidth.c: New file.
29090         * modules/uniwidth/u16-strwidth: New file.
29091
29092         * tests/uniwidth/test-u8-strwidth.c: New file.
29093         * modules/uniwidth/u8-strwidth-tests: New file.
29094
29095         * lib/uniwidth/u8-strwidth.c: New file.
29096         * modules/uniwidth/u8-strwidth: New file.
29097
29098         * tests/uniwidth/test-u32-width.c: New file.
29099         * modules/uniwidth/u32-width-tests: New file.
29100
29101         * lib/uniwidth/u32-width.c: New file.
29102         * modules/uniwidth/u32-width: New file.
29103
29104         * tests/uniwidth/test-u16-width.c: New file.
29105         * modules/uniwidth/u16-width-tests: New file.
29106
29107         * lib/uniwidth/u16-width.c: New file.
29108         * modules/uniwidth/u16-width: New file.
29109
29110         * tests/uniwidth/test-u8-width.c: New file.
29111         * modules/uniwidth/u8-width-tests: New file.
29112
29113         * lib/uniwidth/u8-width.c: New file.
29114         * modules/uniwidth/u8-width: New file.
29115
29116         * tests/uniwidth/test-uc_width.c: New file.
29117         * modules/uniwidth/width-tests: New file.
29118
29119         * lib/uniwidth/width.c: New file, from GNU libiconv.
29120         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
29121         * modules/uniwidth/width: New file.
29122
29123         * lib/uniwidth.h: New file, from GNU libiconv.
29124         * modules/uniwidth/base: New file.
29125
29126 2007-07-07  Bruno Haible  <bruno@clisp.org>
29127
29128         * lib/uniname.h: New file, from GNU gettext.
29129         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
29130         * lib/uniname/uninames.h: New file, from GNU gettext.
29131         * lib/uniname/uniname.c: New file, from GNU gettext.
29132         * tests/uniname/test-uninames.sh: New file.
29133         * tests/uniname/test-uninames.c: New file, from GNU gettext.
29134         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
29135         * modules/uniname/base: New file.
29136         * modules/uniname/uniname: New file.
29137         * modules/uniname/uniname-tests: New file.
29138         * MODULES.html.sh (Unicode string functions): Add the new modules.
29139
29140 2007-07-06  Bruno Haible  <bruno@clisp.org>
29141
29142         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
29143
29144 2007-07-06  Bruno Haible  <bruno@clisp.org>
29145
29146         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
29147         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
29148         includes <cygwin/sys_time.h> which includes <sys/select.h> which
29149         include <sys/time.h>.
29150         Reported by Eric Blake.
29151
29152 2007-07-06  Eric Blake  <ebb9@byu.net>
29153
29154         Fix testing canonicalize on cygwin.
29155         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
29156         Revert patch from 2007-06-19.
29157         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
29158         canonicalize module is also in use.
29159         * tests/test-canonicalize.c: New file.
29160         * tests/test-canonicalize.sh: Likewise.
29161         * modules/canonicalize-tests: Likewise.
29162
29163 2007-07-06  Jim Meyering  <jim@meyering.net>
29164
29165         * lib/getugroups.c (getugroups): Detect getgrent failure.
29166         Adjust comment to reflect reality: this function may return -1.
29167
29168 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
29169
29170         * build-aux/bootstrap (TP_URL,get_translations): Update to use
29171         the new TP address.
29172         (usage): Fix typo
29173         (gnulib_mk): New variable.
29174
29175 2007-07-05  Jim Meyering  <jim@meyering.net>
29176
29177         Don't let endgrent clobber errno, no matter how improbable.
29178         * lib/getugroups.c (getugroups): Save and restore errno around
29179         endgrent call.
29180
29181         Close the group DB even when failing with 2^31 or more members.
29182         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
29183
29184 2007-07-04  Jim Meyering  <jim@meyering.net>
29185
29186         * lib/getugroups.h: New file.
29187         * lib/getugroups.c: Include "getugroups.h".
29188         Remove uses of "register" keyword.
29189         Move local variable, "cp", down into scope where used.
29190         Give "username" parameter the "const" attribute.
29191         * modules/getugroups (Files): Add lib/getugroups.h
29192
29193 2007-07-04  Karl Berry  <karl@gnu.org>
29194
29195         * MODULES.html.sh (func_all_modules): Complete rename of
29196         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
29197
29198 2007-07-02  Bruno Haible  <bruno@clisp.org>
29199
29200         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
29201         mode, when inttypes.h comes from gnulib.
29202         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
29203
29204 2007-07-02  Simon Josefsson  <simon@josefsson.org>
29205
29206         * NEWS: Mention lgpl module name change.
29207
29208         * modules/lgpl-2.1: Renamed from lgpl.
29209
29210         * NEWS: Mention gpl module name change.
29211
29212         * modules/gpl-3.0: New file, based on gpl-2.0.
29213
29214         * modules/gpl-2.0: Renamed from gpl.
29215
29216         * modules/gpl: Fix filename, doc/gpl.texi is now found at
29217         doc/gpl-2.0.texi.
29218
29219 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
29220
29221         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
29222         #define __STDC_LIMIT_MACROS temporarily while including
29223         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
29224         Problem reported by Joel E. Denny in
29225         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
29226
29227 2007-07-01  Bruno Haible  <bruno@clisp.org>
29228
29229         * lib/unistdio.h: New file.
29230         * lib/unistdio/u-asnprintf.h: New file.
29231         * lib/unistdio/u-asprintf.h: New file.
29232         * lib/unistdio/u-printf-args.c: New file.
29233         * lib/unistdio/u-printf-args.h: New file.
29234         * lib/unistdio/u-printf-parse.h: New file.
29235         * lib/unistdio/u-snprintf.h: New file.
29236         * lib/unistdio/u-sprintf.h: New file.
29237         * lib/unistdio/u-vasprintf.h: New file.
29238         * lib/unistdio/u-vsnprintf.h: New file.
29239         * lib/unistdio/u-vsprintf.h: New file.
29240         * lib/unistdio/ulc-asnprintf.c: New file.
29241         * lib/unistdio/ulc-asprintf.c: New file.
29242         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
29243         * lib/unistdio/ulc-printf-parse.c: New file.
29244         * lib/unistdio/ulc-snprintf.c: New file.
29245         * lib/unistdio/ulc-sprintf.c: New file.
29246         * lib/unistdio/ulc-vasnprintf.c: New file.
29247         * lib/unistdio/ulc-vasprintf.c: New file.
29248         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
29249         * lib/unistdio/ulc-vsnprintf.c: New file.
29250         * lib/unistdio/ulc-vsprintf.c: New file.
29251         * lib/unistdio/u8-asnprintf.c: New file.
29252         * lib/unistdio/u8-asprintf.c: New file.
29253         * lib/unistdio/u8-printf-parse.c: New file.
29254         * lib/unistdio/u8-snprintf.c: New file.
29255         * lib/unistdio/u8-sprintf.c: New file.
29256         * lib/unistdio/u8-vasnprintf.c: New file.
29257         * lib/unistdio/u8-vasprintf.c: New file.
29258         * lib/unistdio/u8-vsnprintf.c: New file.
29259         * lib/unistdio/u8-vsprintf.c: New file.
29260         * lib/unistdio/u8-u8-asnprintf.c: New file.
29261         * lib/unistdio/u8-u8-asprintf.c: New file.
29262         * lib/unistdio/u8-u8-snprintf.c: New file.
29263         * lib/unistdio/u8-u8-sprintf.c: New file.
29264         * lib/unistdio/u8-u8-vasnprintf.c: New file.
29265         * lib/unistdio/u8-u8-vasprintf.c: New file.
29266         * lib/unistdio/u8-u8-vsnprintf.c: New file.
29267         * lib/unistdio/u8-u8-vsprintf.c: New file.
29268         * lib/unistdio/u16-asnprintf.c: New file.
29269         * lib/unistdio/u16-asprintf.c: New file.
29270         * lib/unistdio/u16-printf-parse.c: New file.
29271         * lib/unistdio/u16-snprintf.c: New file.
29272         * lib/unistdio/u16-sprintf.c: New file.
29273         * lib/unistdio/u16-vasnprintf.c: New file.
29274         * lib/unistdio/u16-vasprintf.c: New file.
29275         * lib/unistdio/u16-vsnprintf.c: New file.
29276         * lib/unistdio/u16-vsprintf.c: New file.
29277         * lib/unistdio/u16-u16-asnprintf.c: New file.
29278         * lib/unistdio/u16-u16-asprintf.c: New file.
29279         * lib/unistdio/u16-u16-snprintf.c: New file.
29280         * lib/unistdio/u16-u16-sprintf.c: New file.
29281         * lib/unistdio/u16-u16-vasnprintf.c: New file.
29282         * lib/unistdio/u16-u16-vasprintf.c: New file.
29283         * lib/unistdio/u16-u16-vsnprintf.c: New file.
29284         * lib/unistdio/u16-u16-vsprintf.c: New file.
29285         * lib/unistdio/u32-asnprintf.c: New file.
29286         * lib/unistdio/u32-asprintf.c: New file.
29287         * lib/unistdio/u32-printf-parse.c: New file.
29288         * lib/unistdio/u32-snprintf.c: New file.
29289         * lib/unistdio/u32-sprintf.c: New file.
29290         * lib/unistdio/u32-vasnprintf.c: New file.
29291         * lib/unistdio/u32-vasprintf.c: New file.
29292         * lib/unistdio/u32-vsnprintf.c: New file.
29293         * lib/unistdio/u32-vsprintf.c: New file.
29294         * lib/unistdio/u32-u32-asnprintf.c: New file.
29295         * lib/unistdio/u32-u32-asprintf.c: New file.
29296         * lib/unistdio/u32-u32-snprintf.c: New file.
29297         * lib/unistdio/u32-u32-sprintf.c: New file.
29298         * lib/unistdio/u32-u32-vasnprintf.c: New file.
29299         * lib/unistdio/u32-u32-vasprintf.c: New file.
29300         * lib/unistdio/u32-u32-vsnprintf.c: New file.
29301         * lib/unistdio/u32-u32-vsprintf.c: New file.
29302         * tests/unistdio/test-ulc-asnprintf1.c: New file.
29303         * tests/unistdio/test-ulc-asnprintf1.h: New file.
29304         * tests/unistdio/test-ulc-printf1.h: New file.
29305         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
29306         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
29307         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
29308         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
29309         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
29310         * tests/unistdio/test-ulc-vasprintf1.c: New file.
29311         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
29312         * tests/unistdio/test-ulc-vsprintf1.c: New file.
29313         * tests/unistdio/test-u8-asnprintf1.c: New file.
29314         * tests/unistdio/test-u8-asnprintf1.h: New file.
29315         * tests/unistdio/test-u8-printf1.h: New file.
29316         * tests/unistdio/test-u8-vasnprintf1.c: New file.
29317         * tests/unistdio/test-u8-vasnprintf2.c: New file.
29318         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
29319         * tests/unistdio/test-u8-vasnprintf3.c: New file.
29320         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
29321         * tests/unistdio/test-u8-vasprintf1.c: New file.
29322         * tests/unistdio/test-u8-vsnprintf1.c: New file.
29323         * tests/unistdio/test-u8-vsprintf1.c: New file.
29324         * tests/unistdio/test-u16-asnprintf1.c: New file.
29325         * tests/unistdio/test-u16-asnprintf1.h: New file.
29326         * tests/unistdio/test-u16-printf1.h: New file.
29327         * tests/unistdio/test-u16-vasnprintf1.c: New file.
29328         * tests/unistdio/test-u16-vasnprintf2.c: New file.
29329         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
29330         * tests/unistdio/test-u16-vasnprintf3.c: New file.
29331         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
29332         * tests/unistdio/test-u16-vasprintf1.c: New file.
29333         * tests/unistdio/test-u16-vsnprintf1.c: New file.
29334         * tests/unistdio/test-u16-vsprintf1.c: New file.
29335         * tests/unistdio/test-u32-asnprintf1.c: New file.
29336         * tests/unistdio/test-u32-asnprintf1.h: New file.
29337         * tests/unistdio/test-u32-printf1.h: New file.
29338         * tests/unistdio/test-u32-vasnprintf1.c: New file.
29339         * tests/unistdio/test-u32-vasnprintf2.c: New file.
29340         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
29341         * tests/unistdio/test-u32-vasnprintf3.c: New file.
29342         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
29343         * tests/unistdio/test-u32-vasprintf1.c: New file.
29344         * tests/unistdio/test-u32-vsnprintf1.c: New file.
29345         * tests/unistdio/test-u32-vsprintf1.c: New file.
29346         * modules/unistdio/base: New file.
29347         * modules/unistdio/u-printf-args: New file.
29348         * modules/unistdio/ulc-asnprintf: New file.
29349         * modules/unistdio/ulc-asprintf: New file.
29350         * modules/unistdio/ulc-fprintf: New file.
29351         * modules/unistdio/ulc-printf-parse: New file.
29352         * modules/unistdio/ulc-snprintf: New file.
29353         * modules/unistdio/ulc-sprintf: New file.
29354         * modules/unistdio/ulc-vasnprintf: New file.
29355         * modules/unistdio/ulc-vasprintf: New file.
29356         * modules/unistdio/ulc-vfprintf: New file.
29357         * modules/unistdio/ulc-vsnprintf: New file.
29358         * modules/unistdio/ulc-vsprintf: New file.
29359         * modules/unistdio/u8-asnprintf: New file.
29360         * modules/unistdio/u8-asprintf: New file.
29361         * modules/unistdio/u8-printf-parse: New file.
29362         * modules/unistdio/u8-snprintf: New file.
29363         * modules/unistdio/u8-sprintf: New file.
29364         * modules/unistdio/u8-vasnprintf: New file.
29365         * modules/unistdio/u8-vasprintf: New file.
29366         * modules/unistdio/u8-vsnprintf: New file.
29367         * modules/unistdio/u8-vsprintf: New file.
29368         * modules/unistdio/u8-u8-asnprintf: New file.
29369         * modules/unistdio/u8-u8-asprintf: New file.
29370         * modules/unistdio/u8-u8-snprintf: New file.
29371         * modules/unistdio/u8-u8-sprintf: New file.
29372         * modules/unistdio/u8-u8-vasnprintf: New file.
29373         * modules/unistdio/u8-u8-vasprintf: New file.
29374         * modules/unistdio/u8-u8-vsnprintf: New file.
29375         * modules/unistdio/u8-u8-vsprintf: New file.
29376         * modules/unistdio/u16-asnprintf: New file.
29377         * modules/unistdio/u16-asprintf: New file.
29378         * modules/unistdio/u16-printf-parse: New file.
29379         * modules/unistdio/u16-snprintf: New file.
29380         * modules/unistdio/u16-sprintf: New file.
29381         * modules/unistdio/u16-vasnprintf: New file.
29382         * modules/unistdio/u16-vasprintf: New file.
29383         * modules/unistdio/u16-vsnprintf: New file.
29384         * modules/unistdio/u16-vsprintf: New file.
29385         * modules/unistdio/u16-u16-asnprintf: New file.
29386         * modules/unistdio/u16-u16-asprintf: New file.
29387         * modules/unistdio/u16-u16-snprintf: New file.
29388         * modules/unistdio/u16-u16-sprintf: New file.
29389         * modules/unistdio/u16-u16-vasnprintf: New file.
29390         * modules/unistdio/u16-u16-vasprintf: New file.
29391         * modules/unistdio/u16-u16-vsnprintf: New file.
29392         * modules/unistdio/u16-u16-vsprintf: New file.
29393         * modules/unistdio/u32-asnprintf: New file.
29394         * modules/unistdio/u32-asprintf: New file.
29395         * modules/unistdio/u32-printf-parse: New file.
29396         * modules/unistdio/u32-snprintf: New file.
29397         * modules/unistdio/u32-sprintf: New file.
29398         * modules/unistdio/u32-vasnprintf: New file.
29399         * modules/unistdio/u32-vasprintf: New file.
29400         * modules/unistdio/u32-vsnprintf: New file.
29401         * modules/unistdio/u32-vsprintf: New file.
29402         * modules/unistdio/u32-u32-asnprintf: New file.
29403         * modules/unistdio/u32-u32-asprintf: New file.
29404         * modules/unistdio/u32-u32-snprintf: New file.
29405         * modules/unistdio/u32-u32-sprintf: New file.
29406         * modules/unistdio/u32-u32-vasnprintf: New file.
29407         * modules/unistdio/u32-u32-vasprintf: New file.
29408         * modules/unistdio/u32-u32-vsnprintf: New file.
29409         * modules/unistdio/u32-u32-vsprintf: New file.
29410         * modules/unistdio/ulc-asnprintf-tests: New file.
29411         * modules/unistdio/ulc-vasnprintf-tests: New file.
29412         * modules/unistdio/ulc-vasprintf-tests: New file.
29413         * modules/unistdio/ulc-vsnprintf-tests: New file.
29414         * modules/unistdio/ulc-vsprintf-tests: New file.
29415         * modules/unistdio/u8-asnprintf-tests: New file.
29416         * modules/unistdio/u8-vasnprintf-tests: New file.
29417         * modules/unistdio/u8-vasprintf-tests: New file.
29418         * modules/unistdio/u8-vsnprintf-tests: New file.
29419         * modules/unistdio/u8-vsprintf-tests: New file.
29420         * modules/unistdio/u16-asnprintf-tests: New file.
29421         * modules/unistdio/u16-vasnprintf-tests: New file.
29422         * modules/unistdio/u16-vasprintf-tests: New file.
29423         * modules/unistdio/u16-vsnprintf-tests: New file.
29424         * modules/unistdio/u16-vsprintf-tests: New file.
29425         * modules/unistdio/u32-asnprintf-tests: New file.
29426         * modules/unistdio/u32-vasnprintf-tests: New file.
29427         * modules/unistdio/u32-vasprintf-tests: New file.
29428         * modules/unistdio/u32-vsnprintf-tests: New file.
29429         * modules/unistdio/u32-vsprintf-tests: New file.
29430         * MODULES.html.sh (Unicode string functions): Add the new modules.
29431
29432 2007-07-01  Bruno Haible  <bruno@clisp.org>
29433
29434         * lib/sprintf.c (sprintf): Limit the available length estimation,
29435         to avoid address wraparound.
29436         * lib/vsprintf.c (vsprintf): Likewise.
29437         * modules/sprintf-posix (Dependencies): Add stdint.
29438         * modules/vsprintf-posix (Dependencies): Likewise.
29439
29440 2007-07-01  Bruno Haible  <bruno@clisp.org>
29441
29442         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
29443         Windows PATH as well. Conservative double-quoting. Comments.
29444
29445 2007-07-01  Bruno Haible  <bruno@clisp.org>
29446             Eric Blake  <ebb9@byu.net>
29447             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29448
29449         * gnulib-tool (self_abspathname): Fix algorithm to cope with
29450         empty components in $PATH, denoting '.'.
29451
29452 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29453
29454         * gnulib-tool: Fix indentation.
29455         (func_create_megatestdir): Likewise.
29456         Report by Bruno Haible.
29457
29458 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29459
29460         Sync from Automake.
29461         * build-aux/gnupload: Fix shell portability issues with for loops.
29462         Report by Karl Berry.
29463
29464 2007-06-29  Simon Josefsson  <simon@josefsson.org>
29465
29466         * build-aux/maint.mk (POURL): Use translationproject.org.
29467
29468 2007-06-27  Simon Josefsson  <simon@josefsson.org>
29469             Bruno Haible  <bruno@clisp.org>
29470
29471         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
29472         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
29473         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
29474         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
29475         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
29476
29477 2007-06-27  Bruno Haible  <bruno@clisp.org>
29478
29479         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
29480         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
29481
29482 2007-06-26  Karl Berry  <karl@gnu.org>
29483
29484         * MODULES.html.sh: remove xreadlink-with-size.
29485
29486 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
29487
29488         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
29489         method that I hope also handles the double-include problem noted
29490         by Bruno Haible in
29491         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
29492
29493 2007-06-23  Bruno Haible  <bruno@clisp.org>
29494
29495         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
29496         Don't let the 'mostlyclean' target fail if the last subdirectory could
29497         not be removed.
29498         Reported by Karl Berry.
29499
29500 2007-06-23  Bruno Haible  <bruno@clisp.org>
29501
29502         * gnulib-tool (echo): Add a speedier workaround for ksh.
29503         * tests/test-echo.sh: Likewise.
29504
29505 2007-06-23  Bruno Haible  <bruno@clisp.org>
29506
29507         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
29508         * tests/test-echo.sh: Likewise.
29509
29510 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29511
29512         * gnulib-tool (IFS): Initialize early, so we don't set it to
29513         empty later.
29514         (self_abspathname): Rewrite algorithm to set it, reindent.
29515         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
29516         (func_create_megatestdir): Merge some sed scripts.
29517
29518 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
29519
29520         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
29521         exposed by Sun Studio 11 cc on Solaris 8.
29522
29523 2007-06-22  Bruno Haible  <bruno@clisp.org>
29524
29525         * gnulib-tool (echo): Ensure the echo primitive does not interpret
29526         backslashes.
29527         * tests/test-echo.sh: New file.
29528
29529 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29530
29531         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
29532         simplify `sed_replace_build_aux' scripts, they are portable but
29533         echoing them with `echo' is not.
29534         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
29535
29536 2007-06-21  Karl Berry  <karl@gnu.org>
29537
29538         * config/srclist.txt: guess we can't handle the licenses via
29539         srclist at the moment.
29540
29541 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
29542
29543         * MODULES.html.sh: Add include_next.
29544         * modules/include_next: New file.
29545
29546 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
29547
29548         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
29549         INCLUDE_NEXT.
29550         (gl_CHECK_NEXT_HEADERS): New macro.
29551         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
29552         the obsolescent gl_ABSOLUTE_HEADER.
29553         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
29554         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
29555         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
29556         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
29557         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
29558         * m4/math_h.m4 (gl_MATH_H): Likewise.
29559         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
29560         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
29561         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
29562         * m4/stdint.m4 (gl_STDINT_H): Likewise.
29563         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
29564         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
29565         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
29566         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
29567         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
29568         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
29569         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
29570         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
29571         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
29572         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
29573         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
29574         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
29575         * m4/inttypes.m4 (gl_INTTYPES_H): Define
29576         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
29577         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
29578         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
29579         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
29580         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
29581         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
29582         * lib/float_.h: Likewise.
29583         * lib/inttypes_.h: Likewise.
29584         * lib/math_.h: Likewise.
29585         * lib/search_.h: Likewise.
29586         * lib/signal_.h: Likewise.
29587         * lib/stdint_.h: Likewise.
29588         * lib/stdio_.h: Likewise.
29589         * lib/stdlib_.h: Likewise.
29590         * lib/string_.h: Likewise.
29591         * lib/sys_stat_.h: Likewise.
29592         * lib/sys_time_.h: Likewise.
29593         * lib/time_.h: Likewise.
29594         * lib/unistd_.h: Likewise.
29595         * lib/wchar_.h: Likewise.
29596         * lib/wctype_.h: Likewise.
29597         * lib/dirent_.h: Likewise.
29598         * lib/iconv_.h: Likewise.
29599         * lib/locale_.h: Likewise.
29600         * lib/netinet_in_.h: Likewise.
29601         * lib/sys_select_.h: Likewise.
29602         * lib/sys_socket_.h: Likewise.
29603         * lib/sysexits_.h: Likewise.
29604         * modules/fcntl (Depends-on): Depend on include_next, not
29605         absolute_header.
29606         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
29607         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
29608         * modules/fchdir: Likewise.
29609         * modules/float: Likewise.
29610         * modules/iconv_open: Likewise.
29611         * modules/inttypes: Likewise.
29612         * modules/locale: Likewise.
29613         * modules/math: Likewise.
29614         * modules/netinet_in: Likewise.
29615         * modules/search: Likewise.
29616         * modules/signal: Likewise.
29617         * modules/stdint: Likewise.
29618         * modules/stdio: Likewise.
29619         * modules/stdlib: Likewise.
29620         * modules/string: Likewise.
29621         * modules/sys_select: Likewise.
29622         * modules/sys_socket: Likewise.
29623         * modules/sys_stat: Likewise.
29624         * modules/sys_time: Likewise.
29625         * modules/sysexits: Likewise.
29626         * modules/time: Likewise.
29627         * modules/unistd: Likewise.
29628         * modules/wchar: Likewise.
29629         * modules/wctype: Likewise.
29630         * modules/sys_stat: Change maintainer to "all".
29631         * modules/unistd: Likewise.
29632
29633 2007-06-20  Karl Berry  <karl@gnu.org>
29634
29635         * config/srclist.txt: track www changes in license files.
29636
29637 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
29638
29639         * build-aux/bootstrap: Remove stray dot.
29640         Make sure build_aux settings are honored when linking
29641         gnulib_extra_files.
29642
29643 2007-06-19  Eric Blake  <ebb9@byu.net>
29644
29645         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
29646         Allow compilation on cygwin.
29647
29648 2007-06-19  Jim Meyering  <jim@meyering.net>
29649
29650         xreadlink-with-size: Remove module.  No longer used.
29651         Ex-callers now use xreadlink or mreadlink-with-size.
29652         * modules/xreadlink-with-size: Remove module.
29653         * lib/xreadlink-with-size.c: Remove file.
29654         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
29655         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
29656         just before the function definition *is* accurate.
29657
29658         Eliminate one way canonicalize_filename_mode could exit.
29659         * lib/canonicalize.c (canonicalize_filename_mode):
29660         Use mreadlink_with_size, not xreadlink_with_size.
29661
29662 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
29663
29664         Detect porting problems to FreeBSD/arm, which has time_t wider than
29665         long int.  Original problem reported for GNU diff by Xin Li in
29666         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
29667         * modules/getdate (Depends-on): Add intprops, verify.
29668         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
29669         is an integer type no wider than long int.
29670
29671 2007-06-18  Jim Meyering  <jim@meyering.net>
29672
29673         New module: mreadlink-with-size.
29674         * MODULES.html.sh: Add mreadlink-with-size.
29675         * modules/mreadlink-with-size: New module
29676         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
29677         not xreadlink-with-size.
29678         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
29679
29680 2007-06-16  Bruno Haible  <bruno@clisp.org>
29681
29682         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
29683         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
29684         Reported by Gary V. Vaughan <gary@gnu.org>.
29685
29686 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
29687
29688         Revamp lchown so that it lives in unistd.h where it belongs.
29689         * lib/lchown.h: Remove.
29690         * lib/dirchownmod.c: Don't include lib/lchown.h.
29691         * lib/fchownat.c: Likewise.
29692         * lib/openat.c: Likewise.
29693         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
29694         does not follow symlinks.
29695         (EOPNOTSUPP): Define if not defined.
29696         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
29697         is defined to 0.
29698         (lchown): New decl.
29699         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
29700         Do not check for lchown decl.
29701         Set REPLACE_LCHOWN.
29702         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
29703         REPLACE_LCHOWN.
29704         * modules/chown: Make it clear it follows symlinks.
29705         * modules/lchown: Make it clear it doesn't follow symlinks.
29706         (Files): Remove lib/lchown.h
29707         (Depends-on): Add unistd.
29708         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
29709         (Include): Include <unistd.h>, not "lchown.h".
29710         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
29711         REPLACE_LCHOWN.
29712
29713 2007-06-15  Jim Meyering  <jim@meyering.net>
29714
29715         Change license (GPL to LGPL) of fsusage and dependents.
29716         * modules/fsusage (License): Change to LGPL.
29717         * modules/full-read (License): Likewise.
29718         * modules/full-write (License): Likewise.
29719         * modules/safe-read (License): Likewise.
29720         * modules/safe-write (License): Likewise.
29721
29722 2007-06-14  Ben Pfaff  <blp@gnu.org>
29723
29724         Missing part of allocsa -> malloca transition.
29725         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
29726         gl_MALLOCA.
29727
29728 2007-06-12  Bruno Haible  <bruno@clisp.org>
29729
29730         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
29731         to ia64, x86_64, i386.
29732         Reported by Eric Blake.
29733
29734 2007-06-12  Bruno Haible  <bruno@clisp.org>
29735
29736         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
29737         cross-compiling to x86_64.
29738
29739 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
29740
29741         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
29742         glitch reported by Ralf Wildenhues in
29743         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
29744
29745         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
29746         Vin Shelton.
29747
29748 2007-06-11  Bruno Haible  <bruno@clisp.org>
29749
29750         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
29751         replacement string.
29752         Reported by Eric Blake.
29753
29754 2007-06-10  Bruno Haible  <bruno@clisp.org>
29755
29756         Prepare vasnprintf code for use with Unicode strings.
29757         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
29758         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
29759         TYPE_U32_STRING.
29760         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
29761         a_u32_string variants.
29762         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
29763         * lib/printf-args.c: Don't include config.h and the specification
29764         header if PRINTF_FETCHARGS is already defined.
29765         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
29766         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
29767         TYPE_U16_STRING, TYPE_U32_STRING.
29768         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
29769         u16_directive, u16_directives, u32_directive, u32_directives): New
29770         types.
29771         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
29772         New declarations.
29773         * lib/printf-parse.c: Don't include config.h and the specification
29774         header if PRINTF_PARSE is already defined. Eliminate the set of
29775         parameters for WIDE_CHAR_VERSION; the user of this file must provide
29776         them now. Include c-ctype.h.
29777         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
29778         directive and CHAR_T_ONLY_ASCII.
29779         * lib/vasnprintf.c: Don't include config.h and the specification header
29780         if VASNPRINTF is already defined.
29781         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
29782         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
29783         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
29784         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
29785         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
29786         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
29787         code accordingly.
29788         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
29789         pad_ourselves also in this case, with the 'c' and 's' directives, and
29790         with a different notion of "width".
29791         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
29792
29793 2007-06-10  Bruno Haible  <bruno@clisp.org>
29794
29795         * modules/unistr/u32-mbsnlen: New file.
29796         * lib/unistr/u32-mbsnlen.c: New file.
29797
29798         * modules/unistr/u16-mbsnlen: New file.
29799         * lib/unistr/u16-mbsnlen.c: New file.
29800
29801         * modules/unistr/u8-mbsnlen: New file.
29802         * lib/unistr/u8-mbsnlen.c: New file.
29803
29804         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
29805         declarations.
29806
29807 2007-06-10  Bruno Haible  <bruno@clisp.org>
29808
29809         * lib/string_.h (mbsnlen): New declaration.
29810         * lib/mbsnlen.c: New file.
29811         * m4/mbsnlen.m4: New file.
29812         * modules/mbsnlen: New file.
29813         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
29814         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
29815         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
29816
29817 2007-06-10  Bruno Haible  <bruno@clisp.org>
29818
29819         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
29820
29821 2007-06-10  Bruno Haible  <bruno@clisp.org>
29822
29823         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
29824         * lib/mbuiter.h: Likewise.
29825
29826 2007-06-10  Bruno Haible  <bruno@clisp.org>
29827
29828         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
29829         declaration.
29830
29831 2007-06-10  Karl Berry  <karl@gnu.org>
29832
29833         * config/srclist.txt: remove gettext entries, Bruno prefers
29834         to update individually.
29835
29836 2007-06-10  Bruno Haible  <bruno@clisp.org>
29837
29838         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
29839         'maxlen'. Ensure only length + width bytes are allocated, not
29840         length + 1 + width.
29841
29842 2007-06-09  Bruno Haible  <bruno@clisp.org>
29843
29844         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
29845         (CHAR_T): Remove macro.
29846         (VASNPRINTF): Update.
29847
29848 2007-06-09  Bruno Haible  <bruno@clisp.org>
29849
29850         * MODULES.html.sh (Unicode string functions): Add the new modules.
29851
29852         * modules/uniconv/u32-conv-to-enc: New file.
29853         * lib/uniconv/u32-conv-to-enc.c: New file.
29854         * modules/uniconv/u32-conv-to-enc-tests: New file.
29855         * tests/uniconv/test-u32-conv-to-enc.c: New file.
29856
29857         * modules/uniconv/u16-conv-to-enc: New file.
29858         * lib/uniconv/u16-conv-to-enc.c: New file.
29859         * lib/uniconv/u-conv-to-enc.h: New file.
29860         * modules/uniconv/u16-conv-to-enc-tests: New file.
29861         * tests/uniconv/test-u16-conv-to-enc.c: New file.
29862
29863         * modules/uniconv/u8-conv-to-enc: New file.
29864         * lib/uniconv/u8-conv-to-enc.c: New file.
29865         * modules/uniconv/u8-conv-to-enc-tests: New file.
29866         * tests/uniconv/test-u8-conv-to-enc.c: New file.
29867
29868         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
29869         u32_conv_to_encoding): New declarations.
29870
29871 2007-06-09  Bruno Haible  <bruno@clisp.org>
29872
29873         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
29874
29875 2007-06-09  Bruno Haible  <bruno@clisp.org>
29876
29877         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
29878         * modules/malloca: Renamed from modules/allocsa, updated.
29879         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
29880         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
29881         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
29882         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
29883         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
29884         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
29885         * modules/xmalloca: Renamed from modules/xallocsa, updated.
29886         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
29887         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
29888         * modules/c-strcasestr (Depends-on): Update.
29889         * lib/c-strcasestr.c: Update.
29890         * modules/c-strstr (Depends-on): Update.
29891         * lib/c-strstr.c: Update.
29892         * modules/canonicalize-lgpl (Depends-on): Update.
29893         * lib/canonicalize-lgpl.c: Update.
29894         * modules/clean-temp (Depends-on): Update.
29895         * lib/clean-temp.c: Update.
29896         * modules/csharpcomp (Depends-on): Update.
29897         * lib/csharpcomp.c: Update.
29898         * modules/csharpexec (Depends-on): Update.
29899         * lib/csharpexec.c: Update.
29900         * modules/javacomp (Depends-on): Update.
29901         * lib/javacomp.c: Update.
29902         * modules/javaexec (Depends-on): Update.
29903         * lib/javaexec.c: Update.
29904         * modules/mbscasestr (Depends-on): Update.
29905         * lib/mbscasestr.c: Update.
29906         * modules/mbsstr (Depends-on): Update.
29907         * lib/mbsstr.c: Update.
29908         * modules/setenv (Depends-on): Update.
29909         * lib/setenv.c: Update.
29910         * modules/strcasestr (Depends-on): Update.
29911         * lib/strcasestr.c: Update.
29912         * modules/striconveha (Depends-on): Update.
29913         * lib/striconveha.c: Update.
29914         * modules/relocatable-prog-wrapper (Files): Update.
29915         * lib/relocwrapper.c: Update.
29916         * build-aux/install-reloc: Update.
29917         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
29918
29919 2007-06-08  Bruno Haible  <bruno@clisp.org>
29920
29921         Port to uClibc.
29922         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
29923         * lib/fpurge.c (fpurge): Likewise.
29924         * lib/freading.c (freading): Likewise.
29925         * lib/fseeko.c (rpl_fseeko): Likewise.
29926         * lib/fseterr.c (fseterr): Likewise.
29927         * lib/fwriting.c (fwriting): Likewise.
29928         * tests/test-fflush.c (main): Avoid a failure on uClibc.
29929
29930 2007-06-08  Bruno Haible  <bruno@clisp.org>
29931
29932         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
29933         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
29934         * modules/gettext (Files): Add m4/intlmacosx.m4.
29935
29936 2007-06-07  Bruno Haible  <bruno@clisp.org>
29937
29938         * modules/localename-tests: New file.
29939         * tests/test-localename.c: New file.
29940
29941         New module 'localename'.
29942         * lib/localename.h: New file.
29943         * lib/localename.c: New file, from GNU gettext.
29944         * m4/localename.m4: New file.
29945         * modules/localename: New file.
29946
29947 2007-06-07  Bruno Haible  <bruno@clisp.org>
29948
29949         Work around the lack of <wchar.h> on some builds of uClibc.
29950         * doc/headers/wchar.texi: Update.
29951         * lib/wchar_.h: Include <wchar.h> only if it exists.
29952         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
29953         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
29954         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
29955         doesn't exist.
29956         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
29957         * modules/mbfile (Depends-on): Add wchar.
29958         * modules/mbiter (Depends-on): Likewise.
29959         * modules/mbuiter (Depends-on): Likewise.
29960         Reported by Simon Josefsson.
29961
29962 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
29963
29964         Work around problem reported by Steven M. Schweda in
29965         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
29966         Tru64 5.1B with the Compaq compiler environment installed declares
29967         an 'isblank' function but does not define it in the C library.
29968         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
29969         * lib/regex_internal.h (isblank): Likewise.
29970         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
29971         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
29972
29973 2007-06-05  Bruno Haible  <bruno@clisp.org>
29974
29975         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
29976         ia64.
29977         * modules/printf-safe: New file.
29978         * modules/fprintf-posix (Depends-on): Add printf-safe.
29979         * modules/printf-posix (Depends-on): Likewise.
29980         * modules/snprintf-posix (Depends-on): Likewise.
29981         * modules/sprintf-posix (Depends-on): Likewise.
29982         * modules/vasnprintf-posix (Depends-on): Likewise.
29983         * modules/vasprintf-posix (Depends-on): Likewise.
29984         * modules/vfprintf-posix (Depends-on): Likewise.
29985         * modules/vprintf-posix (Depends-on): Likewise.
29986         * modules/vsnprintf-posix (Depends-on): Likewise.
29987         * modules/vsprintf-posix (Depends-on): Likewise.
29988         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
29989         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
29990         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
29991         "no" on i386, x86_64, ia64.
29992         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
29993         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
29994         on i386, x86_64, ia64.
29995         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
29996         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
29997         on i386, x86_64, ia64.
29998         * tests/test-vasnprintf-posix.c: Include float.h.
29999         (LDBL80_WORDS): New macro.
30000         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
30001         on i386, x86_64, ia64.
30002         * tests/test-vasprintf-posix.c: Include float.h.
30003         (LDBL80_WORDS): New macro.
30004         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
30005         on i386, x86_64, ia64.
30006         * tests/test-snprintf-posix.c: Include float.h.
30007         * tests/test-sprintf-posix.c: Likewise.
30008         * tests/test-vsnprintf-posix.c: Likewise.
30009         * tests/test-vsprintf-posix.c: Likewise.
30010
30011 2007-06-05  Bruno Haible  <bruno@clisp.org>
30012
30013         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
30014         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
30015         non-IEEE numbers on i386, x86_64, ia64.
30016         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
30017         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
30018         * tests/test-isnanl.h: Include float.h.
30019         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
30020
30021 2007-06-05  Bruno Haible  <bruno@clisp.org>
30022
30023         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
30024         also the %a / %A. Handle the %a / %A code before this extra handling.
30025
30026 2007-06-05  Bruno Haible  <bruno@clisp.org>
30027
30028         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
30029         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
30030
30031 2007-06-05  Bruno Haible  <bruno@clisp.org>
30032
30033         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
30034         typo in variable name.
30035
30036 2007-06-05  Eric Blake  <ebb9@byu.net>
30037
30038         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
30039         Reported by Simon Josefsson.
30040
30041 2007-06-04  Bruno Haible  <bruno@clisp.org>
30042
30043         Avoid test failures on some PowerPC platforms.
30044         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
30045         Define differently for PowerPC.
30046         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
30047         Reported by Gary V. Vaughan <gary@gnu.org>.
30048
30049 2007-06-02  Bruno Haible  <bruno@clisp.org>
30050
30051         Fix test-stdint failure on FreeBSD/ia64.
30052         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
30053         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
30054         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
30055         * doc/headers/stdint.texi: Update.
30056
30057 2007-06-01  Bruno Haible  <bruno@clisp.org>
30058
30059         * tests/test-binary-io.c (main): Pass a third argument to open().
30060         Reported by Gary V. Vaughan <gary@gnu.org>.
30061
30062 2007-06-01  Bruno Haible  <bruno@clisp.org>
30063
30064         * doc/functions/frexpl.texi: Update for mingw.
30065
30066 2007-06-01  Bruno Haible  <bruno@clisp.org>
30067
30068         * tests/test-lseek.c (main): Disable test of errno for invalid third
30069         argument.
30070         * doc/functions/lseek.texi: Update.
30071         Reported by Gary V. Vaughan <gary@gnu.org>.
30072
30073 2007-05-28  Bruno Haible  <bruno@clisp.org>
30074
30075         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
30076
30077 2007-05-31  Eric Blake  <ebb9@byu.net>
30078
30079         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
30080         cross compiling.
30081
30082 2007-05-30  Eric Blake  <ebb9@byu.net>
30083         and Bruno Haible  <bruno@clisp.org>
30084
30085         Work around mingw test failures exposed by m4-1.4.9b.
30086         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
30087         * tests/test-unistd.c: Disable uid_t and git_t tests for the
30088         moment.
30089
30090 2007-05-30  Bruno Haible  <bruno@clisp.org>
30091
30092         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
30093         assuming that they are closed. Needed on HP-UX 11.
30094
30095 2007-05-29  Bruno Haible  <bruno@clisp.org>
30096
30097         Fix a problem with #include_next.
30098         * lib/dirent_.h: Split the double-inclusion guard.
30099         * lib/fcntl_.h: Likewise.
30100         * lib/float_.h: Likewise.
30101         * lib/iconv_.h: Likewise.
30102         * lib/inttypes_.h: Likewise.
30103         * lib/locale_.h: Likewise.
30104         * lib/math_.h: Likewise.
30105         * lib/netinet_in_.h: Likewise.
30106         * lib/search_.h: Likewise.
30107         * lib/signal_.h: Likewise.
30108         * lib/stdint_.h: Likewise.
30109         * lib/stdio_.h: Likewise.
30110         * lib/stdlib_.h: Likewise.
30111         * lib/string_.h: Likewise.
30112         * lib/sys_select_.h: Likewise.
30113         * lib/sys_socket_.h: Likewise.
30114         * lib/sys_stat_.h: Likewise.
30115         * lib/sys_time_.h: Likewise.
30116         * lib/sysexits_.h: Likewise.
30117         * lib/time_.h: Likewise.
30118         * lib/unistd_.h: Likewise.
30119         * lib/wchar_.h: Likewise.
30120         * lib/wctype_.h: Likewise.
30121
30122 2007-05-29  Bruno Haible  <bruno@clisp.org>
30123
30124         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
30125         for the moment.
30126
30127 2007-05-29  Bruno Haible  <bruno@clisp.org>
30128
30129         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
30130         invocation.
30131         Reported by Eric Blake.
30132
30133 2007-05-29  Bruno Haible  <bruno@clisp.org>
30134
30135         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
30136         compiling case.
30137
30138 2007-05-29  Eric Blake  <ebb9@byu.net>
30139             Bruno Haible  <bruno@clisp.org>
30140
30141         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
30142         cross compiles.
30143
30144 2007-05-28  Eric Blake  <ebb9@byu.net>
30145
30146         * modules/closein-tests (test_closein_LDADD): Support test on
30147         cygwin with libtool.
30148
30149 2007-05-28  Bruno Haible  <bruno@clisp.org>
30150
30151         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
30152         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
30153         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
30154         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
30155         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
30156         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
30157         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
30158         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
30159         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
30160
30161 2007-05-28  Eric Blake  <ebb9@byu.net>
30162
30163         Unconditionally include <config.h> in unit tests.
30164         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
30165         * tests/test-allocsa.c, tests/test-arcfour.c,
30166         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
30167         tests/test-array_list.c, tests/test-array_oset.c,
30168         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
30169         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
30170         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
30171         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
30172         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
30173         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
30174         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
30175         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
30176         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
30177         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
30178         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
30179         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
30180         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
30181         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
30182         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
30183         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
30184         test-md5.c, test-memmem.c, test-printf-posix.c,
30185         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
30186         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
30187         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
30188         test-strcasestr.c, test-striconv.c, test-striconveh.c,
30189         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
30190         test-vasnprintf-posix2.c, test-vasnprintf.c,
30191         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
30192         test-vfprintf-posix.c, test-vprintf-posix.c,
30193         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
30194         test-xvasprintf.c: Likewise.
30195
30196 2007-05-28  Bruno Haible  <bruno@clisp.org>
30197
30198         * gnulib-tool (func_import): Remember the --with-tests command-line
30199         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
30200         Reported by Eric Blake.
30201
30202 2007-05-28  Bruno Haible  <bruno@clisp.org>
30203
30204         * modules/ftell-tests: New file.
30205         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
30206         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
30207
30208         * lib/ftell.c: New file.
30209         * modules/ftell: New file.
30210         * m4/ftell.m4: New file.
30211         * doc/functions/ftell.texi: Update.
30212         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
30213         REPLACE_FTELL.
30214         * lib/stdio_.h (rpl_ftell): New declaration.
30215         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
30216         REPLACE_FTELL.
30217
30218 2007-05-28  Eric Blake  <ebb9@byu.net>
30219
30220         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
30221
30222 2007-05-28  Bruno Haible  <bruno@clisp.org>
30223
30224         * modules/fseek-tests: New file.
30225         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
30226         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
30227
30228         * lib/fseek.c: New file.
30229         * modules/fseek: New file.
30230         * m4/fseek.m4: New file.
30231         * doc/functions/fseek.texi: Update.
30232         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
30233         REPLACE_FSEEK.
30234         * lib/stdio_.h (rpl_fseek): New declaration.
30235         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
30236         REPLACE_FSEEK.
30237
30238 2007-05-28  Bruno Haible  <bruno@clisp.org>
30239
30240         * lib/stdio_.h (fflush): More comments.
30241
30242 2007-05-28  Bruno Haible  <bruno@clisp.org>
30243
30244         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
30245         runtime test.
30246
30247 2007-05-28  Eric Blake  <ebb9@byu.net>
30248
30249         Improve lseek module.
30250         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
30251         * lib/unistd_.h (lseek): Scale back link warning message.
30252         * tests/test-lseek.c: Beef up test.
30253         * tests/test-lseek.sh: Exercise more facets of lseek.
30254         Reported by Bruno Haible.
30255
30256 2007-05-28  Bruno Haible  <bruno@clisp.org>
30257
30258         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
30259         to define.
30260
30261 2007-05-27  Bruno Haible  <bruno@clisp.org>
30262
30263         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
30264
30265 2007-05-27  Bruno Haible  <bruno@clisp.org>
30266
30267         * modules/openmp: New file.
30268         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
30269         Noah Misch.
30270
30271 2007-05-26  Bruno Haible  <bruno@clisp.org>
30272
30273         * modules/chdir-long (Depends-on): Add fchdir.
30274         * modules/chdir-safer (Depends-on): Likewise.
30275         * modules/fts (Depends-on): Likewise.
30276         * modules/fts-lgpl (Depends-on): Likewise.
30277         * modules/openat (Depends-on): Likewise.
30278         * modules/savewd (Depends-on): Likewise.
30279
30280 2007-05-24  Eric Blake  <ebb9@byu.net>
30281
30282         Fix lseek on mingw.
30283         * modules/lseek: New module.
30284         * m4/lseek.m4: New file.
30285         * lib/lseek.c: New file.
30286         * modules/lseek-tests: New file.
30287         * tests/test-lseek.c: New file.
30288         * tests/test-lseek.sh: New file.
30289         * MODULES.html.sh: Document lseek module.
30290         * modules/fflush (Depends-on): Add lseek, fseeko.
30291         * modules/fseeko (Depends-on): Likewise.
30292         * modules/ftello (Depends-on): Likewise.
30293         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
30294         broken.
30295         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
30296         broken.
30297         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
30298         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
30299         * lib/ftello.c (rpl_ftello): Likewise.
30300         * tests/test-fseeko.c (main): Test this.
30301         * tests/test-fseeko.sh: Likewise.
30302         * tests/test-ftello.c (main): Likewise.
30303         * tests/test-ftello.sh: Likewise.
30304         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
30305         implies replacing fseek.
30306         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
30307         HAVE_FTELLO.
30308         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
30309         * modules/unistd (Makefile.am): Likewise.
30310         * lib/unistd_.h (lseek): Declare a replacement.
30311         * doc/functions/lseek.texi (lseek): Document this fix.
30312         * doc/functions/fseek.texi (fseek): Likewise.
30313         * doc/functions/ftell.texi (ftell): Likewise.
30314
30315 2007-05-24  Bruno Haible  <bruno@clisp.org>
30316
30317         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
30318         in the printed representation of a NaN.
30319         * tests/test-vasprintf-posix.c (test_function): Likewise.
30320         * tests/test-snprintf-posix.h (test_function): Likewise.
30321         * tests/test-sprintf-posix.h (test_function): Likewise.
30322         Reported by Eric Blake.
30323
30324 2007-05-23  Eric Blake  <ebb9@byu.net>
30325
30326         Fix fseeko/ftello on cygwin 1.5.24.
30327         * doc/functions/fseeko.texi (fseeko): Document the fix.
30328         * doc/functions/ftello.texi (ftello): Document the fix.
30329         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
30330         * doc/functions/stdout.text (stdout): New file.
30331         * doc/functions/stderr.text (stderr): New file.
30332         * doc/gnulib.texi (Function Substitutes): Use new files.
30333         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
30334         prior to 1.7.0.
30335         * tests/test-ftello.c (main): Likewise for ftello.
30336         * tests/test-fseeko.sh: New file.
30337         * tests/test-ftello.sh: New file.
30338         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
30339         with seekable stdin.
30340         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
30341         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
30342         (gl_REPLACE_FSEEKO): New macro.
30343         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
30344         * modules/fseeko (Files): Distribute fseeko.c.
30345         * modules/ftello (Files): Distribute ftello.c.
30346         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
30347         mode.
30348         * lib/ftello.c (rpl_ftello): New file.
30349         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
30350         fseeko, ftello.
30351         (gl_STDIN_LARGE_OFFSET): New macro.
30352         * modules/stdio (Makefile.am): Perform the replacement.
30353         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
30354
30355 2007-05-23  Bruno Haible  <bruno@clisp.org>
30356
30357         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
30358         GNULIB_POSIXCHECK is defined.
30359
30360 2007-05-21  Bruno Haible  <bruno@clisp.org>
30361
30362         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
30363         Check also the output for NaN arguments. When cross-compiling, guess
30364         no on IRIX.
30365         * lib/vasnprintf.c: Update comments.
30366         * tests/test-vasnprintf-posix.c (strisnan): New function.
30367         (test_function): Use it.
30368         * tests/test-vasprintf-posix.c (strisnan): New function.
30369         (test_function): Use it.
30370         * tests/test-snprintf-posix.h (strisnan): New function.
30371         (test_function): Use it.
30372         * tests/test-sprintf-posix.h (strisnan): New function.
30373         (test_function): Use it.
30374         Reported by Eric Blake.
30375
30376 2007-05-20  Bruno Haible  <bruno@clisp.org>
30377
30378         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
30379         numbers that fails on BeOS.
30380         * doc/functions/frexpl.texi: Update.
30381
30382 2007-05-20  Jim Meyering  <jim@meyering.net>
30383
30384         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
30385         forced upon us by glibc-2.6.
30386
30387 2007-05-20  Bruno Haible  <bruno@clisp.org>
30388
30389         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
30390         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
30391         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
30392         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
30393         NEED_PRINTF_INFINITE.
30394         (is_infinitel): New function.
30395         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
30396         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
30397         gl_PREREQ_VASNPRINTF_INFINITE.
30398         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
30399         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30400         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
30401         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
30402         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
30403         gl_PREREQ_VASNPRINTF_INFINITE.
30404         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30405         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30406         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30407         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30408         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30409         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30410         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30411         * doc/functions/fprintf.texi: Update.
30412         * doc/functions/printf.texi: Update.
30413         * doc/functions/snprintf.texi: Update.
30414         * doc/functions/sprintf.texi: Update.
30415         * doc/functions/vfprintf.texi: Update.
30416         * doc/functions/vprintf.texi: Update.
30417         * doc/functions/vsnprintf.texi: Update.
30418         * doc/functions/vsprintf.texi: Update.
30419
30420 2007-05-20  Bruno Haible  <bruno@clisp.org>
30421
30422         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
30423         was not found in libc.
30424         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
30425
30426 2007-05-20  Bruno Haible  <bruno@clisp.org>
30427
30428         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
30429         printed as "-nan" instead of "nan".
30430         * tests/test-vasprintf-posix.c (test_function): Likewise.
30431         * tests/test-snprintf-posix.h (test_function): Likewise.
30432         * tests/test-sprintf-posix.h (test_function): Likewise.
30433         Needed for HP-UX 11.
30434
30435 2007-05-20  Jim Meyering  <jim@meyering.net>
30436
30437         Fix buggy test for the fchownat-deref bug.
30438         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
30439         symlink required for the run-test.  Without it, this test would
30440         always declare that fchownat doesn't work, and client code would
30441         unnecessarily use the replacement function with fixed libc.
30442         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
30443         Reported by Greg Schafer.
30444
30445 2007-05-19  Bruno Haible  <bruno@clisp.org>
30446
30447         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
30448         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
30449         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
30450         Needed for IRIX 6.5 and Solaris 2.5.1.
30451
30452 2007-05-19  Bruno Haible  <bruno@clisp.org>
30453
30454         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
30455         (test_function): Skip tests involving -0.0 on platforms where
30456         -0.0 = 0.0.
30457         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
30458         (test_function): Skip tests involving -0.0 on platforms where
30459         -0.0 = 0.0.
30460         * tests/test-snprintf-posix.h (have_minus_zero): New function.
30461         (test_function): Skip tests involving -0.0 on platforms where
30462         -0.0 = 0.0.
30463         * tests/test-sprintf-posix.h (have_minus_zero): New function.
30464         (test_function): Skip tests involving -0.0 on platforms where
30465         -0.0 = 0.0.
30466         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
30467         tests.
30468         * tests/test-printf-posix.h (test_function): Likewise.
30469         * tests/test-printf-posix.output: Remove all -0.0 related results.
30470         Needed for IRIX 6.5.
30471
30472 2007-05-19  Bruno Haible  <bruno@clisp.org>
30473
30474         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
30475         printed as "nan0x7fffffff" instead of "nan".
30476         * tests/test-vasprintf-posix.c (test_function): Likewise.
30477         * tests/test-snprintf-posix.h (test_function): Likewise.
30478         * tests/test-sprintf-posix.h (test_function): Likewise.
30479         * tests/test-fprintf-posix.h (NaN): Remove macro.
30480         (test_function): Remove all NaN related tests.
30481         * tests/test-printf-posix.h (NaN): Remove macro.
30482         (test_function): Remove all NaN related tests.
30483         * tests/test-printf-posix.output: Remove all NaN related results.
30484         Needed for IRIX 6.5.
30485
30486 2007-05-19  Bruno Haible  <bruno@clisp.org>
30487
30488         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
30489         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
30490
30491 2007-05-19  Bruno Haible  <bruno@clisp.org>
30492
30493         * lib/float_.h: New file.
30494         * m4/float_h.m4: New file.
30495         * modules/float: New file.
30496         * modules/isnanl (Dependencies): Add float.
30497         * modules/isnanl-nolibm (Dependencies): Likewise.
30498         * modules/mathl (Dependencies): Likewise.
30499         * modules/printf-frexpl (Dependencies): Likewise.
30500         * modules/signbit (Dependencies): Likewise.
30501         * modules/vasnprintf (Dependencies): Likewise.
30502         * doc/headers/float.texi: Update.
30503
30504 2007-05-19  Jim Meyering  <jim@meyering.net>
30505
30506         * lib/utimens.c (gl_futimens): Rename from futimens,
30507         now that glibc-2.6 declares futimens.
30508         * lib/utimens.h: Likewise.
30509
30510 2007-05-19  Bruno Haible  <bruno@clisp.org>
30511
30512         Avoid test failures on mingw.
30513         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
30514         * tests/test-printf-posix.sh: Likewise.
30515         * tests/test-vfprintf-posix.sh: Likewise.
30516         * tests/test-vprintf-posix.sh: Likewise.
30517
30518 2007-05-19  Bruno Haible  <bruno@clisp.org>
30519
30520         Fix *printf result for NaN, Inf, -0.0 on mingw.
30521         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
30522         * lib/vasnprintf.c: Include math.h and isnan.h.
30523         (is_infinite_or_zero): New function.
30524         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
30525         values in the %f, %F, %e, %E, %g, %G directives.
30526         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
30527         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30528         gl_PRINTF_INFINITE and test its result. Invoke
30529         gl_PREREQ_VASNPRINTF_INFINITE.
30530         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30531         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30532         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30533         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30534         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30535         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30536         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30537         * doc/functions/fprintf.texi: Update.
30538         * doc/functions/printf.texi: Update.
30539         * doc/functions/snprintf.texi: Update.
30540         * doc/functions/sprintf.texi: Update.
30541         * doc/functions/vfprintf.texi: Update.
30542         * doc/functions/vprintf.texi: Update.
30543         * doc/functions/vsnprintf.texi: Update.
30544         * doc/functions/vsprintf.texi: Update.
30545
30546 2007-05-19  Bruno Haible  <bruno@clisp.org>
30547
30548         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
30549         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
30550         Instead of multiplying with 10^k, set extra_zeroes to k.
30551         (scale10_round_long_double): Remove function.
30552
30553 2007-05-18  Bruno Haible  <bruno@clisp.org>
30554
30555         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
30556         introduced on 2007-05-06.
30557
30558 2007-05-18  Bruno Haible  <bruno@clisp.org>
30559
30560         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
30561         %g directives.
30562         * tests/test-vasprintf-posix.c (test_function): Likewise.
30563         * tests/test-snprintf-posix.h (test_function): Likewise.
30564         * tests/test-sprintf-posix.h (test_function): Likewise.
30565
30566 2007-05-18  Bruno Haible  <bruno@clisp.org>
30567
30568         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
30569         (strmatch): New function.
30570         (test_function): Test the %f directive on numbers of various exponents.
30571         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
30572         (strmatch): New function.
30573         (test_function): Test the %f directive on numbers of various exponents.
30574         * tests/test-snprintf-posix.h (strmatch): New function.
30575         (test_function): Test the %f directive on numbers of various exponents.
30576         * tests/test-sprintf-posix.h (strmatch): New function.
30577         (test_function): Test the %f directive on numbers of various exponents.
30578         * tests/test-snprintf-posix.c (SIZEOF): New macro.
30579         * tests/test-sprintf-posix.c (SIZEOF): New macro.
30580         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
30581         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
30582
30583 2007-05-18  Bruno Haible  <bruno@clisp.org>
30584
30585         Add support for 'long double' number output.
30586         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
30587         * lib/vasnprintf.c: Include math.h and float+.h.
30588         (mp_limb_t): New type.
30589         (GMP_LIMB_BITS): New macro.
30590         (mp_twolimb_t): New type.
30591         (GMP_TWOLIMB_BITS): New macro.
30592         (mpn_t): New type.
30593         (multiply, divide, convert_to_decimal, decode_long_double,
30594         scale10_round_long_double, scale10_round_decimal_long_double,
30595         floorlog10l): New functions.
30596         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
30597         for the %f, %F, %e, %E, %g, %G directives.
30598         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
30599         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30600         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
30601         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
30602         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30603         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30604         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30605         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30606         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30607         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30608         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30609         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
30610         * modules/snprintf-posix (Depends-on): Likewise.
30611         * modules/sprintf-posix (Depends-on): Likewise.
30612         * modules/vasnprintf-posix (Depends-on): Likewise.
30613         * modules/vasprintf-posix (Depends-on): Likewise.
30614         * modules/vfprintf-posix (Depends-on): Likewise.
30615         * modules/vsnprintf-posix (Depends-on): Likewise.
30616         * modules/vsprintf-posix (Depends-on): Likewise.
30617         * modules/vasnprintf (Files): Add lib/float+.h.
30618         * doc/functions/fprintf.texi: Update.
30619         * doc/functions/printf.texi: Update.
30620         * doc/functions/snprintf.texi: Update.
30621         * doc/functions/sprintf.texi: Update.
30622         * doc/functions/vfprintf.texi: Update.
30623         * doc/functions/vprintf.texi: Update.
30624         * doc/functions/vsnprintf.texi: Update.
30625         * doc/functions/vsprintf.texi: Update.
30626
30627 2007-05-18  Bruno Haible  <bruno@clisp.org>
30628
30629         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
30630
30631 2007-05-18  Bruno Haible  <bruno@clisp.org>
30632
30633         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
30634         for printing 64-bit integers. Needed for mingw.
30635
30636 2007-05-18  Bruno Haible  <bruno@clisp.org>
30637
30638         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
30639         gl_FUNC_FREXPL_WORKS.
30640         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
30641
30642 2007-05-18  Bruno Haible  <bruno@clisp.org>
30643
30644         * modules/frexpl-nolibm-tests: New file.
30645
30646         * modules/frexpl-nolibm: New file.
30647         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
30648
30649 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30650
30651         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
30652         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
30653         GCC 4.2, which otherwise issues a lot of warnings.
30654         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
30655         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
30656         Likewise.
30657         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
30658         * modules/iconv_open (iconv.h): Likewise.
30659         * modules/locale (locale.h): Likewise.
30660         * modules/netinet_in (netinet/in.h): Likewise.
30661         * modules/sys_select (sys_select.h): Likewise.
30662         * modules/sys_socket (sys/socket.h): Likewise.
30663         * modules/sys_stat (sys/stat.h): Likewise.
30664         * modules/sysexits (sysexits.h): Likewise.
30665         * modules/unistd (unistd.h): Likewise.
30666
30667 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30668
30669         * modules/closein-tests (Makefile.am): Distribute
30670         `test-closein.sh'.
30671
30672 2007-05-17  Bruno Haible  <bruno@clisp.org>
30673
30674         * tests/test-printf-posix.output: Renamed from
30675         tests/test-fprintf-posix.out.
30676         * modules/fprintf-posix-tests: Update.
30677         * modules/printf-posix-tests: Update.
30678         * modules/vfprintf-posix-tests: Update.
30679         * modules/vprintf-posix-tests: Update.
30680         * tests/test-fprintf-posix.sh: Update.
30681         * tests/test-printf-posix.sh: Update.
30682         * tests/test-vfprintf-posix.sh: Update.
30683         * tests/test-vprintf-posix.sh: Update.
30684         Reported by Ralf Wildenhues.
30685
30686 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30687
30688         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
30689         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
30690         GCC 4.2, which otherwise issues a lot of warnings.
30691         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
30692         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
30693         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
30694         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
30695         it should no longer be needed.
30696         * lib/string_.h: Likewise.
30697         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
30698         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
30699         * modules/inttypes (inttypes.h): Likewise.
30700         * modules/math (math.h): Likewise.
30701         * modules/search (search.h): Likewise.
30702         * modules/signal (signal.h): Likewise.
30703         * modules/stdint (stdint.h): Likewise.
30704         * modules/stdio (stdio.h): Likewise.
30705         * modules/stdlib (stdlib.h): Likewise.
30706         * modules/string (string.h): Likewise.
30707         * modules/sys_time (sys/time.h): Likewise.
30708         * modules/time (time.h): Likewise.
30709         * modules/wchar (wchar.h): Likewise.
30710         * modules/wctype (wtype.h): Likewise.
30711
30712 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
30713
30714         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
30715
30716 2007-05-13  Bruno Haible  <bruno@clisp.org>
30717
30718         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
30719         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
30720         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
30721         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
30722         (gl_PREREQ_STRTOK_R): Don't require it here.
30723
30724 2007-05-13  Bruno Haible  <bruno@clisp.org>
30725
30726         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
30727         when used in C++ mode.
30728
30729 2007-05-12  Bruno Haible  <bruno@clisp.org>
30730
30731         * lib/linebuffer.h: Tweak doc.
30732         * lib/linebuffer.c: Likewise.
30733
30734 2007-05-12  James Youngman  <jay@gnu.org>
30735
30736         * lib/linebuffer.c (readlinebuffer_delim): New function,
30737         like readlinebuffer, but use a caller-specified delimiter.
30738         (readlinebuffer): Just call readlinebuffer_delim with '\n'
30739         as the delimiter.
30740         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
30741
30742 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
30743
30744         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
30745         * modules/openat (Files): Remove openat-die.c.
30746         (Depends-on): Add openat-die.
30747         * modules/openat-die: New module.
30748
30749 2007-05-06  Bruno Haible  <bruno@clisp.org>
30750
30751         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
30752         Update with info about Cygwin.
30753         * doc/functions/fprintf.texi: Update.
30754         * doc/functions/printf.texi: Update.
30755         * doc/functions/snprintf.texi: Update.
30756         * doc/functions/sprintf.texi: Update.
30757         * doc/functions/vfprintf.texi: Update.
30758         * doc/functions/vprintf.texi: Update.
30759         * doc/functions/vsnprintf.texi: Update.
30760         * doc/functions/vsprintf.texi: Update.
30761         Reported by Eric Blake.
30762
30763 2007-05-06  Bruno Haible  <bruno@clisp.org>
30764
30765         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
30766         padding ourselves for the floating-point directives.
30767         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
30768         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
30769         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
30770         gl_PRINTF_FLAG_ZERO and test its result. Invoke
30771         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
30772         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30773         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
30774         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30775         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30776         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30777         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30778         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30779         * tests/test-snprintf-posix.h (test_function): Also check the width
30780         and some flags in the %f directive.
30781         * tests/test-sprintf-posix.h (test_function): Likewise.
30782         * tests/test-vasnprintf-posix.c (test_function): Likewise.
30783         * tests/test-vasprintf-posix.c (test_function): Likewise.
30784         * doc/functions/fprintf.texi: Update.
30785         * doc/functions/printf.texi: Update.
30786         * doc/functions/snprintf.texi: Update.
30787         * doc/functions/sprintf.texi: Update.
30788         * doc/functions/vfprintf.texi: Update.
30789         * doc/functions/vprintf.texi: Update.
30790         * doc/functions/vsnprintf.texi: Update.
30791         * doc/functions/vsprintf.texi: Update.
30792
30793 2007-05-06  Bruno Haible  <bruno@clisp.org>
30794
30795         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
30796         pass the ' flag character to sprintf or snprintf.
30797         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
30798         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
30799         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
30800         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
30801         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
30802         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30803         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
30804         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30805         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30806         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30807         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30808         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30809         * tests/test-snprintf-posix.h (test_function): Also check the grouping
30810         flag.
30811         * tests/test-sprintf-posix.h (test_function): Likewise.
30812         * tests/test-vasnprintf-posix.c (test_function): Likewise.
30813         * tests/test-vasprintf-posix.c (test_function): Likewise.
30814         * doc/functions/fprintf.texi: Update.
30815         * doc/functions/printf.texi: Update.
30816         * doc/functions/snprintf.texi: Update.
30817         * doc/functions/sprintf.texi: Update.
30818         * doc/functions/vfprintf.texi: Update.
30819         * doc/functions/vprintf.texi: Update.
30820         * doc/functions/vsnprintf.texi: Update.
30821         * doc/functions/vsprintf.texi: Update.
30822
30823 2007-05-01  Bruno Haible  <bruno@clisp.org>
30824
30825         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
30826
30827 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
30828
30829         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
30830         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
30831
30832 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
30833
30834         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
30835         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
30836         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
30837
30838 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
30839
30840         * lib/argp-help.c (struct hol_entry): New member `ord'.
30841         (HOL_ENTRY_PTRCMP): Use ord for comparison
30842         (hol_sort): Initialize ord.
30843
30844 2007-05-01  Bruno Haible  <bruno@clisp.org>
30845
30846         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
30847         Reported by Eric Blake.
30848         * doc/gnulib.texi (Function Substitutes): Update.
30849
30850 2007-05-01  Bruno Haible  <bruno@clisp.org>
30851
30852         * doc/functions.texi: Remove file, now redundant through
30853         doc/functions/*.texi.
30854
30855 2007-05-01  Bruno Haible  <bruno@clisp.org>
30856
30857         * modules/argp (Depends-on): Add sleep.
30858
30859 2007-05-01  Bruno Haible  <bruno@clisp.org>
30860
30861         * modules/sleep-tests: New file.
30862         * tests/test-sleep.c: New file.
30863
30864         * modules/sleep: New file.
30865         * lib/sleep.c: New file.
30866         * m4/sleep.m4: New file.
30867         * lib/unistd_.h (sleep): New declaration.
30868         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
30869         HAVE_SLEEP.
30870         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
30871         * doc/functions/sleep.texi: Document the sleep module.
30872
30873 2007-05-01  Bruno Haible  <bruno@clisp.org>
30874
30875         * lib/sigprocmask.h: Remove file.
30876         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
30877         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
30878         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
30879         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
30880         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
30881         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
30882         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
30883         HAVE_SIGSET_T as a shell variable.
30884         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
30885         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
30886         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
30887         (Depends-on): Add signal. Remove verify.
30888         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
30889         (Include): Mention <signal.h> instead of sigprocmask.h.
30890         * NEWS: Mention the change.
30891         * lib/fatal-signal.c: Don't include sigprocmask.h.
30892
30893 2007-05-01  Bruno Haible  <bruno@clisp.org>
30894
30895         * modules/signal: New file.
30896         * lib/signal_.h: New file.
30897         * m4/signal_h.m4: New file.
30898
30899 2007-05-01  Bruno Haible  <bruno@clisp.org>
30900
30901         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
30902         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
30903         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
30904         HAVE_WCTYPE_CTMP_BUG into wctype.h.
30905
30906 2007-05-01  Bruno Haible  <bruno@clisp.org>
30907
30908         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
30909         configure time.
30910         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
30911         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
30912         * modules/sys_stat (Makefile.am): Substitute their values into
30913         sys/stat.h.
30914
30915 2007-05-01  Bruno Haible  <bruno@clisp.org>
30916
30917         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
30918         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
30919         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
30920
30921 2007-05-01  Bruno Haible  <bruno@clisp.org>
30922
30923         * doc/header/assert.texi: Undo last change: don't mention the gnulib
30924         'assert' module here.
30925
30926 2007-05-01  Bruno Haible  <bruno@clisp.org>
30927
30928         * doc/functions/*.texi: New files.
30929         * doc/functions/google-ranking.txt: New file.
30930         * doc/gnulib.texi (Function Substitutes): New chapter.
30931         (ctime, inet_ntoa): Remove sections.
30932         * doc/ctime.texi: Remove file.
30933         * doc/inet_ntoa.texi: Remove file.
30934         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
30935         dependencies.
30936         (%.info): New rule, specifying a --reference-limit.
30937
30938 2007-05-01  Bruno Haible  <bruno@clisp.org>
30939
30940         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
30941
30942 2007-05-01  Bruno Haible  <bruno@clisp.org>
30943
30944         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
30945         the portability of 'mkdir' to mingw systems.
30946
30947 2007-05-01  Bruno Haible  <bruno@clisp.org>
30948
30949         * doc/headers/google-ranking.txt: New file.
30950
30951 2007-04-30  Eric Blake  <ebb9@byu.net>
30952
30953         Prefer fseeko to fseek.
30954         * modules/getpass (Depends-on): Add fseeko.
30955         * lib/getpass.c (getpass): Use fseeko, not fseek.
30956
30957 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
30958
30959         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
30960         assumes the sorting is stable, while most qsort implementations
30961         are not.  Use argument addresses to ensure they never compare as
30962         equal.
30963
30964         * tests/test-argp-2.sh (usage-indent test): Fix output
30965         (func_compare): Restore diff options
30966         * tests/test-argp.c: Restore #include "progname.h"
30967
30968 2007-04-29  Bruno Haible  <bruno@clisp.org>
30969
30970         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
30971         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
30972         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
30973         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30974         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
30975         (configure.ac): Define CHECK_SNPRINTF_POSIX.
30976         (TESTS, check_PROGRAMS): Add test-snprintf.
30977         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
30978         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
30979         (TESTS, check_PROGRAMS): Add test-vsnprintf.
30980         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
30981         assertions that fail on HP-UX, OSF/1, or IRIX.
30982         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
30983
30984 2007-04-29  Bruno Haible  <bruno@clisp.org>
30985
30986         * MODULES.html.sh (posix_functions): Remove 'contents'.
30987
30988 2007-04-29  Karl Berry  <karl@gnu.org>
30989
30990         * config/srclist.txt (gendocs_template_min): new entry.
30991
30992 2007-04-29  Bruno Haible  <bruno@clisp.org>
30993
30994         Work around fpurge bug on BSD systems.
30995         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
30996         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
30997         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
30998         fpurge to rpl_fpurge if the system already has this function.
30999         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
31000         the case where the system already has this function. Correct invariants
31001         on BSD systems.
31002         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
31003         BSD systems.
31004
31005 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
31006
31007         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
31008         proposed by Sven Verdoolaege.
31009
31010         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
31011         options.
31012         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
31013         (usage and help tests): Update
31014
31015 2007-04-29  Bruno Haible  <bruno@clisp.org>
31016
31017         * tests/test-fflush.c (main): Use a file of size 17, not 10.
31018         Print more information in case of failure. Disable a test on BeOS.
31019
31020 2007-04-29  Bruno Haible  <bruno@clisp.org>
31021
31022         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
31023         This helps debugging on systems on which no gdb is available.
31024
31025 2007-04-29  Bruno Haible  <bruno@clisp.org>
31026
31027         * lib/freading.h: Improve comments.
31028         * lib/fwriting.h: Likewise.
31029         * tests/test-freading.c (main): Don't check freading immediately after
31030         repositioning. Needed for glibc.
31031
31032 2007-04-29  Bruno Haible  <bruno@clisp.org>
31033
31034         * lib/freading.c (freading): Trivial simplification.
31035
31036 2007-04-28  Bruno Haible  <bruno@clisp.org>
31037
31038         * tests/test-fwriting.c (main): Also test the interaction between
31039         fflush and fwriting.
31040         * modules/fwriting-tests (Depends-on): Add fflush.
31041
31042         * tests/test-freading.c (main): Also test the interaction between
31043         fflush and freading.
31044         * modules/freading-tests (Depends-on): Add fflush.
31045
31046 2007-04-28  Bruno Haible  <bruno@clisp.org>
31047
31048         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
31049         fseeko and ftello.
31050         Suggested by Eric Blake.
31051
31052 2007-04-28  Jim Meyering  <jim@meyering.net>
31053
31054         Avoid false-negative in gl_STDINT_H's C99 conformance test.
31055         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
31056         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
31057
31058 2007-04-27  Eric Blake  <ebb9@byu.net>
31059
31060         * doc/headers/assert.texi (assert.h): Document assert module use.
31061
31062 2007-04-27  Bruno Haible  <bruno@clisp.org>
31063
31064         * doc/headers/*.texi: New files.
31065         * doc/gnulib.texi (Header File Substitutes): New chapter.
31066         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
31067         dependencies.
31068         (standards.info ,standards.html, standards.dvi): Update dependencies.
31069         (mostlyclean, clean): New targets.
31070
31071 2007-04-27  Bruno Haible  <bruno@clisp.org>
31072
31073         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
31074         * modules/sysexits (Files, Makefile.am): Update.
31075
31076         * lib/sys_socket_.h: Renamed from lib/socket_.h.
31077         * modules/sys_socket (Files, Makefile.am): Update.
31078
31079         * lib/sys_stat_.h: Renamed from lib/stat_.h.
31080         * modules/sys_stat (Files, Makefile.am): Update.
31081
31082 2007-04-27  Eric Blake  <ebb9@byu.net>
31083
31084         * lib/freading.h: Improve comments.
31085         * lib/fwriting.h: Likewise.
31086         * lib/fflush.c: Likewise.
31087
31088         Fix closein for mingw.
31089         * modules/closein-tests: Add tests for closein.
31090         * tests/test-closein.c: New file.
31091         * tests/test-closein.sh: Likewise.
31092         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
31093         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
31094
31095 2007-04-27  Bruno Haible  <bruno@clisp.org>
31096
31097         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
31098         version is < 6.
31099         * lib/math_.h [__DECC]: Likewise.
31100         * lib/stdio_.h [__DECC]: Likewise.
31101         * lib/stdlib_.h [__DECC]: Likewise.
31102         * lib/string_.h [__DECC]: Likewise.
31103         * lib/time_.h [__DECC]: Likewise.
31104         * lib/wchar_.h [__DECC]: Likewise.
31105         * lib/wctype_.h [__DECC]: Likewise.
31106
31107 2007-04-27  Bruno Haible  <bruno@clisp.org>
31108
31109         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
31110
31111 2007-04-27  Bruno Haible  <bruno@clisp.org>
31112
31113         * lib/fflush.c: Add comments.
31114         * modules/fpurge-tests (Depends-on): Add fflush.
31115         * modules/freadable-tests (Depends-on): Likewise.
31116         * modules/fwritable-tests (Depends-on): Likewise.
31117
31118 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
31119
31120         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
31121         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
31122         Report by Bruno Haible <bruno@clisp.org>.
31123
31124 2007-04-26  Eric Blake  <ebb9@byu.net>
31125
31126         Fix fflush on mingw.
31127         * modules/fflush (Depends-on): Add freading.
31128         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
31129         but unread data.
31130
31131 2007-04-26  Eric Blake  <ebb9@byu.net>
31132         and Bruno Haible  <bruno@clisp.org>
31133
31134         Implement freading and fwriting.
31135         * lib/freading.c: New file.
31136         * lib/freading.h: Likewise.
31137         * m4/freading.m4: Likewise.
31138         * modules/freading: Likewise.
31139         * modules/freading-tests: Likewise.
31140         * tests/test-freading.c: Likewise.
31141         * lib/fwriting.c: New file.
31142         * lib/fwriting.h: Likewise.
31143         * m4/fwriting.m4: Likewise.
31144         * modules/fwriting: Likewise.
31145         * modules/fwriting-tests: Likewise.
31146         * tests/test-fwriting.c: Likewise.
31147         * MODULES.html.sh (File stream based Input/Output): Mention them.
31148
31149 2007-04-26  Bruno Haible  <bruno@clisp.org>
31150
31151         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
31152         'long' when we assume it.
31153         Suggested by Eric Blake.
31154
31155 2007-04-26  Bruno Haible  <bruno@clisp.org>
31156
31157         Ensure fseeko, ftello are declared on glibc systems.
31158         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
31159         * modules/fseeko (configure.ac-early): Likewise.
31160         * modules/ftello (configure.ac-early): Likewise.
31161         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
31162         AC_FUNC_FSEEKO for this.
31163         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
31164         (gl_CHECK_FSEEKO): Remove macro.
31165
31166 2007-04-26  Bruno Haible  <bruno@clisp.org>
31167
31168         * tests/test-fflush.c (main): Also check the ftell result after
31169         fflush and fseek/fseeko.
31170         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
31171         file descriptor position cache in the stream.
31172         * lib/fseeko.c (rpl_fseeko): Likewise.
31173
31174 2007-04-26  Bruno Haible  <bruno@clisp.org>
31175
31176         * modules/fflush-tests (Depends-on): Add fseeko.
31177
31178 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
31179             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31180
31181         * lib/argz_.h: ensure error_t definition is obtained in same
31182         mechanism system argz.h would have.
31183         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
31184         argz facilities are known bad.  Err on the side of caution if
31185         cross-compiling.
31186
31187 2007-04-25  Eric Blake  <ebb9@byu.net>
31188
31189         * lib/fpurge.c (includes): Use stdlib.h for free.
31190         * tests/test-fflush.c (main): Also test fflush-fseeko.
31191
31192 2007-04-25  Bruno Haible  <bruno@clisp.org>
31193
31194         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
31195         * lib/fseeko.c: New file.
31196         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
31197         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
31198         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
31199         gl_FUNC_FSEEKO.
31200         (gl_FUNC_FSEEKO): Invoke it.
31201         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
31202         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
31203         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
31204
31205 2007-04-25  Bruno Haible  <bruno@clisp.org>
31206
31207         * modules/fflush (Depends-on): Add ftello.
31208
31209 2007-04-25  Bruno Haible  <bruno@clisp.org>
31210
31211         * modules/ftello-tests: New file.
31212         * tests/test-ftello.c: New file.
31213
31214         * modules/ftello: New file.
31215         * m4/ftello.m4: New file.
31216         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
31217         HAVE_FTELLO.
31218         * lib/stdio_.h (ftello): New declaration.
31219         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
31220         HAVE_FTELLO.
31221
31222 2007-04-25  Bruno Haible  <bruno@clisp.org>
31223
31224         * modules/fseeko-tests: New file.
31225         * tests/test-fseeko.c: New file.
31226
31227         * modules/fseeko: New file.
31228         * m4/fseeko.m4: New file.
31229         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
31230         HAVE_FSEEKO.
31231         * lib/stdio_.h (fseeko): New declaration.
31232         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
31233         HAVE_FSEEKO.
31234
31235 2007-04-25  Bruno Haible  <bruno@clisp.org>
31236
31237         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
31238
31239 2007-04-25  Bruno Haible  <bruno@clisp.org>
31240
31241         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
31242         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
31243         * tests/test-unistd.c: Likewise.
31244         * tests/test-fcntl.c: Likewise.
31245
31246 2007-04-23  Eric Blake  <ebb9@byu.net>
31247
31248         * lib/fflush.c: Fix missing include.
31249         Reported by Bruno Haible.
31250
31251 2007-04-23  Bruno Haible  <bruno@clisp.org>
31252
31253         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
31254         Reported by Eric Blake.
31255
31256 2007-04-23  Bruno Haible  <bruno@clisp.org>
31257
31258         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
31259
31260 2007-04-23  Bruno Haible  <bruno@clisp.org>
31261
31262         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
31263
31264 2007-04-23  Bruno Haible  <bruno@clisp.org>
31265
31266         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
31267         Needed on HP-UX 11.
31268
31269 2007-04-16  Eric Blake  <ebb9@byu.net>
31270
31271         Make fflush rely on fpurge.
31272         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
31273         open coding all variants.
31274         * modules/fflush (Depends-on): Add fpurge and unistd.
31275         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
31276         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
31277
31278         Fix --with-tests compilation on cygwin.
31279         * modules/argmatch-tests (Makefile.am): List gnulib library first
31280         in LDADD.
31281         * modules/argp-tests (Makefile.am): Likewise.
31282         * modules/array-list-tests (Makefile.am): Likewise.
31283         * modules/array-oset-tests (Makefile.am): Likewise.
31284         * modules/avltree-list-tests (Makefile.am): Likewise.
31285         * modules/avltree-oset-tests (Makefile.am): Likewise.
31286         * modules/avltreehash-list-tests (Makefile.am): Likewise.
31287         * modules/carray-list-tests (Makefile.am): Likewise.
31288         * modules/dirname-tests (Makefile.am): Likewise.
31289         * modules/frexp-tests (Makefile.am): Likewise.
31290         * modules/isnanl-tests (Makefile.am): Likewise.
31291         * modules/linked-list-tests (Makefile.am): Likewise.
31292         * modules/linkedhash-list-tests (Makefile.am): Likewise.
31293         * modules/lock-tests (Makefile.am): Likewise.
31294         * modules/rbtree-list-tests (Makefile.am): Likewise.
31295         * modules/rbtree-oset-tests (Makefile.am): Likewise.
31296         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
31297         * modules/tls-tests (Makefile.am): Likewise.
31298         * modules/tsearch-tests (Makefile.am): Likewise.
31299         * modules/xvasprintf-tests (Makefile.am): Likewise.
31300
31301         Fix fpurge for cygwin.
31302         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
31303         value.
31304         * modules/fpurge-tests (Depends-on): Clean up trash.
31305
31306 2007-04-16  Simon Josefsson  <simon@josefsson.org>
31307
31308         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
31309
31310         * m4/autobuild.m4: Re-indent.
31311
31312 2007-04-13  Bruno Haible  <bruno@clisp.org>
31313
31314         * modules/fpurge-tests: New file.
31315         * tests/test-fpurge.c: New file.
31316
31317         * modules/fpurge: New file.
31318         * lib/fpurge.h: New file.
31319         * lib/fpurge.c: New file.
31320         * m4/fpurge.m4: New file.
31321
31322 2007-04-13  Bruno Haible  <bruno@clisp.org>
31323
31324         * modules/fbufmode-tests: New file.
31325         * tests/test-fbufmode.c: New file.
31326
31327         * modules/fbufmode: New file.
31328         * lib/fbufmode.h: New file.
31329         * lib/fbufmode.c: New file.
31330         * m4/fbufmode.m4: New file.
31331
31332 2007-04-13  Bruno Haible  <bruno@clisp.org>
31333
31334         * modules/fwritable-tests: New file.
31335         * tests/test-fwritable.c: New file.
31336
31337         * modules/fwritable: New file.
31338         * lib/fwritable.h: New file.
31339         * lib/fwritable.c: New file.
31340         * m4/fwritable.m4: New file.
31341
31342 2007-04-13  Bruno Haible  <bruno@clisp.org>
31343
31344         * modules/freadable-tests: New file.
31345         * tests/test-freadable.c: New file.
31346
31347         * modules/freadable: New file.
31348         * lib/freadable.h: New file.
31349         * lib/freadable.c: New file.
31350         * m4/freadable.m4: New file.
31351
31352 2007-04-13  Bruno Haible  <bruno@clisp.org>
31353
31354         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
31355         MOSTLYCLEANFILES.
31356
31357 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
31358
31359         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
31360         gzip bootstrap.conf to avoid dragging in i18n machinery.
31361         (gnulib_tool_option): Use it.
31362
31363 2007-04-13  Bruno Haible  <bruno@clisp.org>
31364
31365         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
31366         %F directives.
31367         * tests/test-vasprintf-posix.c (test_function): Likewise.
31368         * tests/test-snprintf-posix.h (test_function): Likewise.
31369         * tests/test-sprintf-posix.h (test_function): Likewise.
31370         * tests/test-fprintf-posix.h (test_function): Likewise.
31371         * tests/test-printf-posix.h (test_function): Likewise.
31372         * tests/test-fprintf-posix.out: Likewise.
31373
31374 2007-04-13  Bruno Haible  <bruno@clisp.org>
31375
31376         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
31377         * modules/tls-tests (configure.ac): Likewise.
31378         Reported by Arto C. Nirkko <anirkko@insel.ch>.
31379
31380 2007-04-13  Bruno Haible  <bruno@clisp.org>
31381
31382         * lib/tls.c (glthread_tls_get): Fix return type.
31383         Patch by Arto C. Nirkko <anirkko@insel.ch>.
31384
31385 2007-04-12  Eric Blake  <ebb9@byu.net>
31386
31387         * modules/gettime (Depends-on): Remove gettime.
31388         Reported by Dmitry V. Levin.
31389
31390 2007-04-12  Bruno Haible  <bruno@clisp.org>
31391
31392         * modules/fflush (Include): Mention <stdio.h>.
31393         * modules/strtoimax (Include): Mention <inttypes.h>.
31394         * modules/strtoumax (Include): Likewise.
31395
31396 2007-04-12  Eric Blake  <ebb9@byu.net>
31397
31398         * .cvsignore: New file.
31399         * .gitignore: Likewise.
31400
31401 2007-04-12  Bruno Haible  <bruno@clisp.org>
31402
31403         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
31404         not before, since $(LDADD) often contains libgnu.a.
31405         * modules/striconv-tests (test_striconv_LDADD): Likewise.
31406         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
31407         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
31408         Needed on Cygwin.
31409
31410 2007-04-12  Eric Blake  <ebb9@byu.net>
31411
31412         Work around glibc's failure to flush stdin on fclose.
31413         * lib/closein.c (close_stdin): Flush stdin before closing.
31414
31415         Work around glibc's failure to reset seekable stdin on exit.
31416         * modules/closein: New module.
31417         * lib/closein.c: New file.
31418         * lib/closein.h: Likewise.
31419         * m4/closein.m4: Likewise.
31420         * MODULES.html.sh (File stream based Input/Output): Document it.
31421
31422 2007-04-12  Simon Josefsson  <simon@josefsson.org>
31423
31424         * gnulib-tool: Rename generated 'autobuild' script to
31425         'do-autobuild' in --create-megatestdir output.
31426
31427         * doc/gnulib.texi (Build robot for gnulib): Fix.
31428
31429 2007-04-12  Simon Josefsson  <simon@josefsson.org>
31430
31431         * modules/sysexits (Depends-on): Add absolute-header.
31432
31433 2007-04-12  Eric Blake  <ebb9@byu.net>
31434
31435         No need to preserve errno on success.
31436         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
31437         Reported by Bruno Haible.
31438
31439 2007-04-12  Simon Josefsson  <simon@josefsson.org>
31440
31441         * MODULES.html.sh (Support for maintaining and releasing
31442         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
31443
31444 2007-04-12  Simon Josefsson  <simon@josefsson.org>
31445
31446         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
31447
31448 2007-04-12  Simon Josefsson  <simon@josefsson.org>
31449
31450         * modules/autobuild: New module.
31451
31452         * m4/autobuild.m4: New file.
31453
31454 2007-04-11  Bruno Haible  <bruno@clisp.org>
31455
31456         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
31457         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
31458         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
31459         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
31460         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
31461         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31462         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31463         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
31464         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31465         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31466         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
31467         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31468         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31469         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
31470         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31471         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31472         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
31473         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31474         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31475         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
31476         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31477         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31478         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
31479         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31480         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31481         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
31482         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
31483         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
31484         Reported by Eric Blake.
31485
31486 2007-04-11  Bruno Haible  <bruno@clisp.org>
31487
31488         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
31489
31490 2007-04-10  Bruno Haible  <bruno@clisp.org>
31491
31492         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
31493         for NaN and Infinity. Needed on FreeBSD 6.1.
31494         * tests/test-vasnprintf-posix.c (test_function): Undo last change
31495         regarding results for "%010a" of Infinity and NaN.
31496         * tests/test-vasprintf-posix.c (test_function): Likewise.
31497         * tests/test-snprintf-posix.h (test_function): Likewise.
31498         * tests/test-sprintf-posix.h (test_function): Likewise.
31499         * tests/test-fprintf-posix.h (test_function): Likewise.
31500         * tests/test-printf-posix.h (test_function): Likewise.
31501         * tests/test-fprintf-posix.out: Likewise.
31502
31503 2007-04-10  Bruno Haible  <bruno@clisp.org>
31504
31505         * modules/locale-tests: New file.
31506         * tests/test-locale.c: New file.
31507
31508         * modules/locale: New file.
31509         * lib/locale_.h: New file.
31510         * m4/locale_h.m4: New file.
31511
31512 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
31513             Bruno Haible  <bruno@clisp.org>
31514
31515         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
31516         be determined, test for availability of the copysignf, copysign,
31517         copysignl functions.
31518         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
31519         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
31520         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
31521
31522 2007-04-09  Eric Blake  <ebb9@byu.net>
31523
31524         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
31525         * modules/stdio (Makefile.am): Support fflush.
31526         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
31527         * modules/fflush: New file.
31528         * lib/fflush.c: Likewise.
31529         * m4/fflush.m4: Likewise.
31530         * modules/fflush-tests: New test.
31531         * tests/test-fflush.c: Likewise.
31532         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
31533
31534 2007-04-06  Bruno Haible  <bruno@clisp.org>
31535
31536         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
31537         (VASNPRINTF): Use signbit for faster determination whether to print a
31538         minus sign.
31539         * modules/vasnprintf (Files): Remove lib/float+.h.
31540         * modules/fprintf-posix (Depends-on): Add signbit.
31541         * modules/snprintf-posix (Depends-on): Likewise.
31542         * modules/sprintf-posix (Depends-on): Likewise.
31543         * modules/vasnprintf-posix (Depends-on): Likewise.
31544         * modules/vasprintf-posix (Depends-on): Likewise.
31545         * modules/vfprintf-posix (Depends-on): Likewise.
31546         * modules/vsnprintf-posix (Depends-on): Likewise.
31547         * modules/vsprintf-posix (Depends-on): Likewise.
31548
31549 2007-04-06  Bruno Haible  <bruno@clisp.org>
31550
31551         * tests/test-frexp.c (main): Test also the sign bit of zero results.
31552         * tests/test-frexpl.c (main): Likewise.
31553         * tests/test-ldexpl.c (main): Likewise.
31554         * modules/frexp-tests (Depends-on): Add signbit.
31555         * modules/frexpl-tests (Depdends-on): Likewise.
31556         * modules/ldexpl-tests (Depdends-on): Likewise.
31557
31558 2007-04-06  Bruno Haible  <bruno@clisp.org>
31559
31560         * modules/signbit-tests: New file.
31561         * tests/test-signbit.c: New file.
31562
31563         * modules/signbit: New file.
31564         * lib/signbitf.c: New file.
31565         * lib/signbitd.c: New file.
31566         * lib/signbitl.c: New file.
31567         * m4/signbit.m4: New file.
31568         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
31569         (signbit): New macro.
31570         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
31571         REPLACE_SIGNBIT.
31572         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
31573         REPLACE_FREXPL into math.h.
31574
31575 2007-04-06  Bruno Haible  <bruno@clisp.org>
31576
31577         * modules/isnanf-nolibm-tests: New file.
31578         * tests/test-isnanf.c: New file.
31579
31580         * modules/isnanf-nolibm: New file.
31581         * lib/isnanf.h: New file.
31582         * lib/isnanf.c: New file.
31583         * lib/isnan.c: Consider the USE_FLOAT macro.
31584         * m4/isnanf.m4: New file.
31585
31586 2007-04-06  Bruno Haible  <bruno@clisp.org>
31587
31588         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
31589         (Link): New section.
31590
31591         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
31592
31593 2007-04-06  Bruno Haible  <bruno@clisp.org>
31594
31595         Assume the 'long double' type.
31596         * m4/longdouble.m4: Remove file.
31597         * config/srclist.txt: Don't mention longdouble.m4.
31598         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
31599         * lib/float+.h: Likewise.
31600         * lib/frexp.c: Likewise.
31601         * lib/printf-args.h: Likewise.
31602         * lib/printf-args.c: Likewise.
31603         * lib/printf-frexp.c: Likewise.
31604         * lib/printf-parse.c: Likewise.
31605         * lib/vasnprintf.c: Likewise.
31606         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
31607         * m4/intl.m4: Likewise.
31608         * m4/isnanl.m4: Likewise.
31609         * m4/printf.m4: Likewise.
31610         * m4/printf-frexpl.m4: Likewise.
31611         * m4/vasnprintf.m4: Likewise.
31612         * modules/allocsa (Files): Remove m4/longdouble.m4.
31613         * modules/gettext (Files): Likewise.
31614         * modules/relocatable-prog-wrapper (Files): Likewise.
31615         * modules/vasnprintf (Files): Likewise.
31616         * modules/isnanl (Files): Likewise.
31617         (Include): Simplify.
31618         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
31619         (Include): Simplify.
31620         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
31621         (Include): Simplify.
31622         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
31623         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31624         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
31625         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31626         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
31627         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31628         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
31629         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31630         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
31631         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31632         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
31633         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
31634         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
31635         * tests/test-isnanl.c: Likewise.
31636         * tests/test-snprintf-posix.h: Likewise.
31637         * tests/test-sprintf-posix.h: Likewise.
31638         * tests/test-vasnprintf-posix.c: Likewise.
31639         * tests/test-vasnprintf-posix2.c: Likewise.
31640         * tests/test-vasprintf-posix.c: Likewise.
31641
31642 2007-04-06  Bruno Haible  <bruno@clisp.org>
31643
31644         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
31645         * lib/math_.h [__DECC]: Include the overridden include file through
31646         #include_next, outside the double-inclusion guard.
31647         * lib/stdio_.h [__DECC]: Likewise.
31648         * lib/stdlib_.h [__DECC]: Likewise.
31649         * lib/string_.h [__DECC]: Likewise.
31650         * lib/time_.h [__DECC]: Likewise.
31651         * lib/wchar_.h [__DECC]: Likewise.
31652         * lib/wctype_.h [__DECC]: Likewise.
31653         * lib/inttypes_.h [__DECC]: Likewise.
31654         Reported by Albert Chin <china@thewrittenword.com> in
31655         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
31656
31657 2007-04-04  Eric Blake  <ebb9@byu.net>
31658
31659         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
31660         1.5.x.
31661
31662 2007-04-04  Bruno Haible  <bruno@clisp.org>
31663
31664         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
31665         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
31666
31667 2007-04-04  Bruno Haible  <bruno@clisp.org>
31668
31669         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
31670         results for "%010a" of Infinity and NaN.
31671         * tests/test-vasprintf-posix.c (test_function): Likewise.
31672         * tests/test-snprintf-posix.h (test_function): Likewise.
31673         * tests/test-sprintf-posix.h (test_function): Likewise.
31674         * tests/test-fprintf-posix.h (test_function): Remove these tests.
31675         * tests/test-printf-posix.h (test_function): Likewise.
31676         * tests/test-fprintf-posix.out: Update.
31677         Needed for FreeBSD 6.1.
31678
31679 2007-04-04  Bruno Haible  <bruno@clisp.org>
31680
31681         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
31682         directly used by the gnulib modules nor by gnulib-tool.
31683
31684 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
31685
31686         * DEPENDENCIES: Give overall description of version dependency
31687         desirability.  Use more-typical names for apps.
31688         Add shell, coreutils, diffutils, grep, tar, gzip.
31689
31690 2007-04-04  Simon Josefsson  <simon@josefsson.org>
31691
31692         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
31693
31694 2007-04-04  Karl Berry  <karl@gnu.org>
31695
31696         * MODULES.html.sh (func_module): missing '.
31697
31698 2007-04-03  Bruno Haible  <bruno@clisp.org>
31699
31700         * modules/argmatch-tests (Makefile.am): New variable
31701         test_argmatch_LDADD.
31702         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
31703         * modules/array-list-tests (Makefile.am): New variable
31704         test_array_list_LDADD.
31705         * modules/array-oset-tests (Makefile.am): New variable
31706         test_array_oset_LDADD.
31707         * modules/avltree-list-tests (Makefile.am): New variable
31708         test_avltree_list_LDADD.
31709         * modules/avltree-oset-tests (Makefile.am): New variable
31710         test_avltree_oset_LDADD.
31711         * modules/avltreehash-list-tests (Makefile.am): New variable
31712         test_avltreehash_list_LDADD.
31713         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
31714         test_canonicalize_lgpl_LDADD.
31715         * modules/carray-list-tests (Makefile.am): New variable
31716         test_carray_list_LDADD.
31717         * modules/dirname-tests (Makefile.am): New variable
31718         test_dirname_LDADD.
31719         * modules/linked-list-tests (Makefile.am): New variable
31720         test_linked_list_LDADD.
31721         * modules/linkedhash-list-tests (Makefile.am): New variable
31722         test_linkedhash_list_LDADD.
31723         * modules/rbtree-list-tests (Makefile.am): New variable
31724         test_rbtree_list_LDADD.
31725         * modules/rbtree-oset-tests (Makefile.am): New variable
31726         test_rbtree_oset_LDADD.
31727         * modules/rbtreehash-list-tests (Makefile.am): New variable
31728         test_rbtreehash_list_LDADD.
31729         * modules/xvasprintf-tests (Makefile.am): New variable
31730         test_xvasprintf_LDADD.
31731         Reported by Eric Blake.
31732
31733 2007-04-03  Eric Blake  <ebb9@byu.net>
31734
31735         * DEPENDENCIES: Weaken m4 requirements.
31736
31737 2007-04-03  Bruno Haible  <bruno@clisp.org>
31738
31739         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
31740         * modules/isnanl-tests (configure.ac): Likewise.
31741
31742 2007-04-03  Ben Pfaff  <blp@gnu.org>
31743
31744         * modules/iconv_open: Add $(srcdir)/ to source directory
31745         references in Makefile fragments that call gperf, to fix VPATH
31746         builds.
31747
31748 2007-04-03  Bruno Haible  <bruno@clisp.org>
31749
31750         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
31751         * lib/ldexpl.c: Undo last change.
31752
31753 2007-04-03  Bruno Haible  <bruno@clisp.org>
31754
31755         * modules/printf-frexpl (Depends-on): Undo last change.
31756         (Files): Add m4/ldexpl.m4.
31757
31758 2007-04-03  Bruno Haible  <bruno@clisp.org>
31759
31760         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
31761         * modules/isnanl (Link): New section.
31762
31763         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
31764         * modules/frexp (Link): New section.
31765
31766         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
31767         * modules/frexpl (Link): New section.
31768
31769         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
31770         * modules/ldexpl (Link): New section.
31771
31772 2007-04-03  Bruno Haible  <bruno@clisp.org>
31773
31774         * modules/TEMPLATE-EXTENDED: New file.
31775         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
31776
31777 2007-04-03  Bruno Haible  <bruno@clisp.org>
31778
31779         * DEPENDENCIES: New file.
31780         Suggested by Simon Josefsson.
31781
31782 2007-04-03  Bruno Haible  <bruno@clisp.org>
31783
31784         * doc/gnulib.texi: Escape @.
31785
31786 2007-04-03  James Youngman  <jay@gnu.org>
31787         and Paul Eggert  <eggert@cs.ucla.edu>
31788
31789         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
31790         birthtime on all systems that have birthtime, not just those which
31791         use st_birthtimensec rather than st_birthtim.  Putting zero in
31792         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
31793         that the birth time is not available for files on an NFS mount.
31794
31795 2007-04-03  Simon Josefsson  <simon@josefsson.org>
31796
31797         * modules/memxor: Move back from crypto/, suggested by Bruno.
31798         * modules/crypto/hmac-sha1: Fix memxor dependency.
31799
31800         * modules/crypto/gc: Moved from ../.
31801
31802 2007-04-02  Eric Blake  <ebb9@byu.net>
31803
31804         * lib/ldexpl.c (includes): Avoid libm.
31805
31806         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
31807
31808 2007-04-02  Bruno Haible  <bruno@clisp.org>
31809
31810         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
31811         on IRIX.
31812
31813 2007-04-02  Bruno Haible  <bruno@clisp.org>
31814
31815         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
31816         x86 or x86_64 platforms running MacOS X.
31817         Reported by Ryan Schmidt <@ryandesign.com>.
31818
31819 2007-04-02  Bruno Haible  <bruno@clisp.org>
31820
31821         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
31822         i386.
31823
31824 2007-04-01  Simon Josefsson  <simon@josefsson.org>
31825
31826         * modules/crypto/arcfour: Moved from ../.
31827         * modules/crypto/arcfour-tests: Moved from ../.
31828         * modules/crypto/arctwo: Moved from ../.
31829         * modules/crypto/arctwo-tests: Moved from ../.
31830         * modules/crypto/des: Moved from ../.
31831         * modules/crypto/des-tests: Moved from ../.
31832         * modules/crypto/gc-arcfour: Moved from ../.
31833         * modules/crypto/gc-arcfour-tests: Moved from ../.
31834         * modules/crypto/gc-arctwo: Moved from ../.
31835         * modules/crypto/gc-arctwo-tests: Moved from ../.
31836         * modules/crypto/gc-des: Moved from ../.
31837         * modules/crypto/gc-des-tests: Moved from ../.
31838         * modules/crypto/gc-hmac-md5: Moved from ../.
31839         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
31840         * modules/crypto/gc-hmac-sha1: Moved from ../.
31841         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
31842         * modules/crypto/gc-md2: Moved from ../.
31843         * modules/crypto/gc-md2-tests: Moved from ../.
31844         * modules/crypto/gc-md4: Moved from ../.
31845         * modules/crypto/gc-md4-tests: Moved from ../.
31846         * modules/crypto/gc-md5: Moved from ../.
31847         * modules/crypto/gc-md5-tests: Moved from ../.
31848         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
31849         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
31850         * modules/crypto/gc-random: Moved from ../.
31851         * modules/crypto/gc-rijndael: Moved from ../.
31852         * modules/crypto/gc-rijndael-tests: Moved from ../.
31853         * modules/crypto/gc-sha1: Moved from ../.
31854         * modules/crypto/gc-sha1-tests: Moved from ../.
31855         * modules/crypto/gc-tests: Moved from ../.
31856         * modules/crypto/hmac-md5: Moved from ../.
31857         * modules/crypto/hmac-md5-tests: Moved from ../.
31858         * modules/crypto/hmac-sha1: Moved from ../.
31859         * modules/crypto/hmac-sha1-tests: Moved from ../.
31860         * modules/crypto/md2: Moved from ../.
31861         * modules/crypto/md2-tests: Moved from ../.
31862         * modules/crypto/md4: Moved from ../.
31863         * modules/crypto/md4-tests: Moved from ../.
31864         * modules/crypto/md5: Moved from ../.
31865         * modules/crypto/md5-tests: Moved from ../.
31866         * modules/crypto/memxor: Moved from ../.
31867         * modules/crypto/rijndael: Moved from ../.
31868         * modules/crypto/rijndael-tests: Moved from ../.
31869         * modules/crypto/sha1: Moved from ../.
31870
31871 2007-03-30  James Youngman  <jay@gnu.org>
31872
31873         * tests/test-stat-time.c (prepare_test): use chmod() rather than
31874         rename() to change the ctime of a file (because ctime is unaffected
31875         by rename on jfs2 on AIX 5.1).
31876         (main): Start by doing cleanup, in case a previous run failed leaving
31877         test files behind.
31878
31879 2007-03-31  Bruno Haible  <bruno@clisp.org>
31880
31881         Support old proprietary implementations of iconv.
31882         * modules/iconv_open: New file.
31883         * lib/iconv_.h: New file.
31884         * m4/iconv_h.m4: New file.
31885         * lib/iconv_open.c: New file.
31886         * lib/iconv_open-aix.gperf: New file.
31887         * lib/iconv_open-hpux.gperf: New file.
31888         * lib/iconv_open-irix.gperf: New file.
31889         * lib/iconv_open-osf.gperf: New file.
31890         * m4/iconv_open.m4: New file.
31891         * modules/linebreak (Depends-on): Add iconv_open.
31892         * modules/striconv (Depends-on): Likewise.
31893         * modules/striconveh (Depends-on): Likewise.
31894         * modules/unicodeio (Depends-on): Likewise.
31895         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
31896         (iconv_t)(-1).
31897         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
31898         conversion if cd is (iconv_t)(-1).
31899         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
31900         is not possible.
31901
31902 2007-03-31  Bruno Haible  <bruno@clisp.org>
31903
31904         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
31905         work on Solaris either. Protect also second use of "autodetect_jp".
31906
31907 2007-03-31  Bruno Haible  <bruno@clisp.org>
31908
31909         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
31910         the function is not present.
31911
31912 2007-03-31  Bruno Haible  <bruno@clisp.org>
31913
31914         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
31915         the function is not present.
31916
31917 2007-03-31  Bruno Haible  <bruno@clisp.org>
31918
31919         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
31920         a bug in HP-UX iconv_open().
31921
31922 2007-03-31  Bruno Haible  <bruno@clisp.org>
31923
31924         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
31925         (Mathematics <math.h>): New section, add fpieee.
31926         (Input/output <stdio.h>): Add fseterr.
31927         (Mathematics <math.h>): New section, add printf-frexp.
31928         (Container data structures): Add sublist.
31929         (Core language properties): Add fpucw, inline.
31930         (Functions for greatest-width integer types <inttypes.h>): Add
31931         imaxabs, imaxdiv, inttypes.
31932         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
31933         isnanl-nolibm, ldexp.
31934         (Mathematics <math.h>): New section, add printf-frexpl.
31935         (Support for systems lacking POSIX:2001): Add fprintf-posix,
31936         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
31937         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
31938         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
31939         (Unicode string functions): Add unistr/u*-mbtoucr.
31940         (Java): Add javacomp-script, javaexec-script.
31941         (C#): Add csharpcomp-script, csharpexec-script.
31942         (Support for building libraries and executables): Add havelib,
31943         relocatable-*.
31944         (Support for maintaining and releasing projects): Renamed from
31945         'Support for maintaining and release projects'. Add announce-gen.
31946
31947 2007-03-31  Bruno Haible  <bruno@clisp.org>
31948
31949         * README: Talk primarily about git.
31950         (git and CVS): Renamed from CVS.
31951         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
31952         gnulib is available through git.
31953         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
31954
31955 2007-03-30  Bruno Haible  <bruno@clisp.org>
31956
31957         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
31958         * lib/poll_.h: Likewise.
31959         * lib/stat_.h: Likewise.
31960         * lib/sys_time_.h: Likewise.
31961         * lib/sysexit_.h: Likewise.
31962         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
31963         * lib/stdbool_.h: Likewise.
31964         * lib/byteswap_.h: Add double-inclusion guard.
31965
31966 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
31967
31968         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
31969
31970 2007-03-30  Karl Berry  <karl@gnu.org>
31971
31972         * config/srclist-update: double space after USA in the license
31973         substitution, since that's how it's usually (?) written.
31974
31975 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
31976
31977         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
31978         reported by Bruno Haible.
31979
31980 2007-03-29  Bruno Haible  <bruno@clisp.org>
31981
31982         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
31983         a bug in AIX iconv().
31984
31985 2007-03-29  Bruno Haible  <bruno@clisp.org>
31986
31987         * modules/ldexpl-tests: New file.
31988         * tests/test-ldexpl.c: New file.
31989
31990 2007-03-29  Bruno Haible  <bruno@clisp.org>
31991
31992         * lib/ldexpl.c: Include fpucw.h.
31993         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
31994         multiplication.
31995         * modules/ldexpl (Depends-on): Add fpucw.
31996
31997 2007-03-29  Bruno Haible  <bruno@clisp.org>
31998
31999         * modules/ldexpl: New file.
32000         * m4/ldexpl.m4: New file.
32001         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
32002         set.
32003         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
32004         REPLACE_LDEXPL.
32005         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
32006         REPLACE_LDEXPL.
32007         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
32008         gl_FUNC_LDEXPL_WORKS.
32009         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
32010         * modules/mathl (Files): Remove lib/ldexpl.c.
32011         (Depends-on): Add ldexpl.
32012
32013 2007-03-29  Bruno Haible  <bruno@clisp.org>
32014
32015         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
32016
32017 2007-03-29  Bruno Haible  <bruno@clisp.org>
32018
32019         * tests/test-striconveh.c (main): Don't assume that a direct conversion
32020         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
32021         and possibly also HP-UX.
32022         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
32023         work on AIX, IRIX, HP-UX, OSF/1.
32024         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
32025         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
32026         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
32027         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
32028         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
32029         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
32030
32031 2007-03-29  Bruno Haible  <bruno@clisp.org>
32032
32033         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
32034
32035 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
32036
32037         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
32038         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
32039
32040 2007-03-29  Eric Blake  <ebb9@byu.net>
32041
32042         * lib/acl-internal.h: Remove redundant include.
32043         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
32044         Cygwin when a file is locked.
32045
32046 2007-03-29  Bruno Haible  <bruno@clisp.org>
32047
32048         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
32049         file.
32050         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
32051
32052 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
32053
32054         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
32055         try to remove a parent directory if the child couldn't be removed
32056         (except for the first rmdir, which could fail because the child
32057         doesn't exist).  Problem reported by Jeff Blaine in
32058         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
32059
32060 2007-03-28  Bruno Haible  <bruno@clisp.org>
32061
32062         * lib/striconveh.c (utf8conv_carefully): New function.
32063         (mem_cd_iconveh_internal): Invoke it.
32064
32065 2007-03-28  Bruno Haible  <bruno@clisp.org>
32066
32067         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
32068         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
32069         input.
32070         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
32071         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
32072         unistr/u8-uctomb.
32073
32074 2007-03-28  Bruno Haible  <bruno@clisp.org>
32075
32076         * modules/unistr/u8-mbtoucr: New file.
32077         * lib/unistr/u8-mbtoucr.c: New file.
32078         * modules/unistr/u16-mbtoucr: New file.
32079         * lib/unistr/u16-mbtoucr.c: New file.
32080         * modules/unistr/u16-mbtoucr: New file.
32081         * lib/unistr/u16-mbtoucr.c: New file.
32082         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
32083
32084 2007-03-27  Simon Josefsson  <simon@josefsson.org>
32085             Bruno Haible  <bruno@clisp.org>
32086
32087         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
32088         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
32089         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
32090
32091         * m4/stdio_h.m4: Add stubs for vasprintf too.
32092
32093         * modules/stdio: Support vasprintf in sed command.
32094
32095         * modules/vasprintf: Depend on stdio for prototypes.  Remove
32096         vasprintf.h.  Add stdio module indicator.
32097
32098         * lib/stdio_.h: Declare asprintf and vasprintf, based on
32099         vasprintf.h.
32100
32101         * lib/vasprintf.h: File removed.
32102
32103         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
32104         * lib/vasprintf.c: Ditto.
32105         * lib/xvasprintf.c: Ditto.
32106         * tests/test-vasprintf-posix.c: Ditto.
32107         * tests/test-vasprintf.c: Ditto.
32108
32109 2007-03-27  Bruno Haible  <bruno@clisp.org>
32110
32111         Make vasnprintf multithread-safe.
32112         * lib/vasnprintf.c (decimal_point_char): New function.
32113         (VASNPRINTF): Use it.
32114         Suggested by Simon Josefsson.
32115
32116 2007-03-27  Eric Blake  <ebb9@byu.net>
32117
32118         Support sub-second birthtime on cygwin.
32119         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
32120         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
32121         (get_stat_birthtime): Also work with st_birthtim.
32122
32123 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
32124
32125         * lib/stat-time.h (USE_BIRTHTIME): Remove.
32126         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
32127         (get_stat_birthtime_ns): Do not try to use "spare" fields.
32128         (get_stat_birthtime_ns): Simplify compile-time tests.
32129         (get_stat_birthtime): Change the API to look like
32130         get_stat_mtime etc., except return a negative tv_nsec on error.
32131         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
32132         Don't check for "spare" fields.
32133         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
32134         or for struct stat.st_birthtime, as these tests aren't used.
32135         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
32136
32137 2007-03-27  Bruno Haible  <bruno@clisp.org>
32138
32139         * lib/stat-time.h: Include <sys/stat.h>.
32140
32141 2007-03-27  James Youngman  <jay@gnu.org>
32142
32143         * lib/stat-time.h (get_stat_birthtime): New function for
32144           retrieving st_birthtime as provided by UFS2 (hence *BSD).
32145         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
32146           and its variants.
32147         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
32148         * modules/stat-time-test: New file.
32149         * tests/test-stat-time.c: New test, devised by Bruno Haible.
32150
32151 2007-03-26  Bruno Haible  <bruno@clisp.org>
32152
32153         Better support of signalling NaNs.
32154         * lib/atanl.c: Include isnanl.h.
32155         (atanl): Perform test for NaN at the beginning of the function and
32156         through a call to isnanl.
32157         * lib/cosl.c: Include isnanl.h.
32158         (cosl): Perform test for NaN at the beginning of the function and
32159         through a call to isnanl.
32160         * lib/ldexpl.c: Include isnanl.h.
32161         (ldexpl): Perform test for NaN through a call to isnanl.
32162         * lib/logl.c: Include isnanl.h.
32163         (logl): Perform test for NaN at the beginning of the function and
32164         through a call to isnanl.
32165         * lib/sinl.c: Include isnanl.h.
32166         (sinl): Perform test for NaN at the beginning of the function and
32167         through a call to isnanl.
32168         * lib/sqrtl.c: Include isnanl.h.
32169         (sqrtl): Perform test for NaN at the beginning of the function and
32170         through a call to isnanl.
32171         * lib/tanl.c: Include isnanl.h.
32172         (tanl): Perform test for NaN at the beginning of the function and
32173         through a call to isnanl.
32174         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
32175         * modules/mathl (Depends-on): Add isnanl.
32176
32177 2007-03-26  Eric Blake  <ebb9@byu.net>
32178
32179         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
32180         regression in logic sense of previous patch.
32181
32182 2007-03-26  Bruno Haible  <bruno@clisp.org>
32183
32184         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
32185         unportable shell command "if ! ...".
32186         Reported by Ralf Wildenhues.
32187
32188 2007-03-25  Bruno Haible  <bruno@clisp.org>
32189
32190         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
32191         <sysexits.h> file, and only add EX_CONFIG.
32192         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
32193         absolute file name and whether it is sufficient. Substitute also
32194         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
32195         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
32196         ABSOLUTE_SYSEXITS_H into sysexits.h.
32197
32198 2007-03-25  Bruno Haible  <bruno@clisp.org>
32199
32200         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
32201         hints is NULL.
32202
32203 2007-03-25  Bruno Haible  <bruno@clisp.org>
32204
32205         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
32206         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
32207
32208 2007-03-25  Bruno Haible  <bruno@clisp.org>
32209
32210         * lib/vasnprintf.c: Include langinfo.h.
32211         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
32212         multithread-safe.
32213         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
32214         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
32215         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
32216         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
32217         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
32218         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
32219         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
32220         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
32221         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
32222         Reported by Simon Josefsson.
32223
32224 2007-03-25  Bruno Haible  <bruno@clisp.org>
32225
32226         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
32227         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
32228         * modules/vasnprintf (Depends-on): Add stdint.
32229
32230 2007-03-25  Bruno Haible  <bruno@clisp.org>
32231
32232         * modules/fpieee: New file.
32233         * m4/fpieee.m4: New file.
32234         * modules/isnan-nolibm (Depends-on): Add fpieee.
32235         * modules/isnanl-nolibm (Depends-on): Add fpieee.
32236         * modules/isnanl (Depends-on): Add fpieee.
32237
32238 2007-03-25  Bruno Haible  <bruno@clisp.org>
32239
32240         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
32241
32242 2007-03-25  Bruno Haible  <bruno@clisp.org>
32243
32244         Avoid test failures on IRIX 6.5.
32245         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
32246         (main): Use it.
32247         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
32248         macros.
32249         (main): Use them.
32250
32251 2007-03-25  Bruno Haible  <bruno@clisp.org>
32252
32253         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
32254         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
32255         exists but doesn't work.
32256         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
32257         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
32258         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
32259         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
32260
32261 2007-03-25  Bruno Haible  <bruno@clisp.org>
32262
32263         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
32264         returns inf. Needed on IRIX 6.5.
32265
32266 2007-03-25  Bruno Haible  <bruno@clisp.org>
32267
32268         * tests/test-frexpl.c: Include isnanl-nolibm.h.
32269         (main): Use isnanl instead of x != x idiom.
32270         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
32271
32272         * tests/test-frexp.c: Include isnan.h.
32273         (main): Use isnan instead of x != x idiom.
32274         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
32275
32276 2007-03-25  Bruno Haible  <bruno@clisp.org>
32277
32278         * tests/test-frexp.c (NaN): New function/macro.
32279         (main): Use it instead of 0.0 / 0.0.
32280         * tests/test-isnan.c (NaN): New function/macro.
32281         (main): Use it instead of 0.0 / 0.0.
32282         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
32283         (test_function): Use it instead of 0.0 / 0.0.
32284         * tests/test-vasprintf-posix.c (NaN): New function/macro.
32285         (test_function): Use it instead of 0.0 / 0.0.
32286         * tests/test-snprintf-posix.h (NaN): New function/macro.
32287         (test_function): Use it instead of 0.0 / 0.0.
32288         * tests/test-sprintf-posix.h (NaN): New function/macro.
32289         (test_function): Use it instead of 0.0 / 0.0.
32290         * tests/test-fprintf-posix.h (NaN): New function/macro.
32291         (test_function): Use it instead of 0.0 / 0.0.
32292         * tests/test-printf-posix.h (NaN): New function/macro.
32293         (test_function): Use it instead of 0.0 / 0.0.
32294
32295         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
32296
32297 2007-03-25  Bruno Haible  <bruno@clisp.org>
32298
32299         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
32300
32301 2007-03-25  Bruno Haible  <bruno@clisp.org>
32302
32303         * lib/regexec.c (merge_state_with_log): Make static.
32304
32305 2007-03-25  Bruno Haible  <bruno@clisp.org>
32306
32307         * lib/trigl.c (kernel_rem_pio2): Make static.
32308
32309 2007-03-25  Bruno Haible  <bruno@clisp.org>
32310
32311         * lib/sincosl.c (sincosl_table): Make static.
32312
32313 2007-03-25  Bruno Haible  <bruno@clisp.org>
32314
32315         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
32316         if the compiler does not support C99.
32317
32318 2007-03-25  Bruno Haible  <bruno@clisp.org>
32319
32320         * modules/time (Makefile.am): Ensure all rule action lines start with a
32321         tab.
32322
32323 2007-03-24  Bruno Haible  <bruno@clisp.org>
32324
32325         * modules/tsearch-tests: New file.
32326         * tests/test-tsearch.sh: New file.
32327         * tests/test-tsearch.c: New file, mostly copied from glibc.
32328
32329         * modules/search-tests: New file.
32330         * tests/test-search.c: New file.
32331
32332         * modules/search: New file.
32333         * lib/search_.h: New file, incorporating lib/tsearch.h.
32334         * m4/search_h.m4: New file.
32335         * lib/tsearch.h: Remove file.
32336         * lib/tsearch.c: Include search.h instead of tsearch.h.
32337         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
32338         HAVE_TSEARCH.
32339         * modules/tsearch (Files): Remove lib/tsearch.h.
32340         (Depends-on): Add search.
32341         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
32342         (Include): Change tsearch.h into search.h.
32343
32344 2007-03-24  Bruno Haible  <bruno@clisp.org>
32345
32346         * modules/fpucw: New file.
32347         * lib/fpucw.h: New file.
32348         * lib/frexp.c: Include fpucw.h.
32349         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
32350         (FUNC): Use them.
32351         * lib/printf-frexp.c: Include fpucw.h.
32352         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
32353         (FUNC): Use them.
32354         * lib/vasnprintf.c: Include fpucw.h.
32355         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
32356         'long double' calculations.
32357         * tests/test-frexpl.c: Include fpucw.h.
32358         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
32359         * tests/test-printf-frexpl.c: Include fpucw.h.
32360         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
32361         * modules/frexpl (Depends-on): Add fpucw.
32362         * modules/printf-frexpl (Depends-on): Likewise.
32363         * modules/fprintf-posix (Depends-on): Likewise.
32364         * modules/snprintf-posix (Depends-on): Likewise.
32365         * modules/sprintf-posix (Depends-on): Likewise.
32366         * modules/vasnprintf-posix (Depends-on): Likewise.
32367         * modules/vasprintf-posix (Depends-on): Likewise.
32368         * modules/vfprintf-posix (Depends-on): Likewise.
32369         * modules/vsnprintf-posix (Depends-on): Likewise.
32370         * modules/vsprintf-posix (Depends-on): Likewise.
32371         * modules/frexpl-tests (Depends-on): Likewise.
32372         * modules/printf-frexpl-tests (Depends-on): Likewise.
32373
32374 2007-03-24  Bruno Haible  <bruno@clisp.org>
32375
32376         * lib/float+.h: New file.
32377         * lib/isnan.c: Include float+.h.
32378         (SIZE): New macro.
32379         (FUNC): Compare only SIZE bytes of the value.
32380         * lib/vasnprintf.c: Include float+.h.
32381         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
32382         SIZEOF_LDBL or SIZEOF_DBL bytes.
32383         * modules/isnan-nolibm (Files): Add lib/float+.h.
32384         * modules/isnanl-nolibm (Files): Add lib/float+.h.
32385         * modules/isnanl (Files): Add lib/float+.h.
32386         * modules/vasnprintf (Files): Add lib/float+.h.
32387
32388 2007-03-24  Bruno Haible  <bruno@clisp.org>
32389
32390         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
32391         include isnanl-nolibm.h.
32392
32393 2007-03-24  Bruno Haible  <bruno@clisp.org>
32394
32395         * tests/test-read-file.c (main): Don't produce spurious output for
32396         expected situations. Make the test fail if it encountered unexpected
32397         results.
32398
32399 2007-03-24  Bruno Haible  <bruno@clisp.org>
32400
32401         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
32402         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
32403
32404 2007-03-24  Bruno Haible  <bruno@clisp.org>
32405
32406         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
32407
32408 2007-03-24  Bruno Haible  <bruno@clisp.org>
32409
32410         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
32411         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
32412
32413         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
32414         * modules/utf8-ucs4: Turn into a symbolic link to module
32415         unistr/u8-mbtouc.
32416
32417         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
32418         utf8-ucs4-unsafe.
32419         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
32420         unistr/u8-mbtouc-unsafe.
32421
32422         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
32423         * modules/utf16-ucs4: Turn into a symbolic link to module
32424         unistr/u16-mbtouc.
32425
32426         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
32427         utf16-ucs4-unsafe.
32428         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
32429         unistr/u16-mbtouc-unsafe.
32430
32431         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
32432         * modules/ucs4-utf8: Turn into a symbolic link to module
32433         unistr/u8-ubtomb.
32434
32435         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
32436         * modules/ucs4-utf16: Turn into a symbolic link to module
32437         unistr/u16-ubtomb.
32438
32439 2007-03-24  Bruno Haible  <bruno@clisp.org>
32440
32441         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
32442         Enable the function only if HAVE_INLINE.
32443         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
32444         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
32445         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
32446         Enable the function only if HAVE_INLINE.
32447         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
32448         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
32449         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
32450         Enable the function only if HAVE_INLINE.
32451         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
32452         Enable the function only if HAVE_INLINE.
32453         * modules/utf8-ucs4: Update.
32454         * modules/utf8-ucs4-unsafe: Update.
32455         * modules/utf16-ucs4: Update.
32456         * modules/utf16-ucs4-unsafe: Update.
32457         * modules/ucs4-utf8: Update.
32458         * modules/ucs4-utf16: Update.
32459
32460 2007-03-24  Bruno Haible  <bruno@clisp.org>
32461
32462         * lib/utf8-ucs4.h: Remove file.
32463         * lib/utf8-ucs4-unsafe.h: Remove file.
32464         * lib/utf16-ucs4.h: Remove file.
32465         * lib/utf16-ucs4-unsafe.h: Remove file.
32466         * lib/ucs4-utf8.h: Remove file.
32467         * lib/ucs4-utf16.h: Remove file.
32468         * lib/unistr.h: Include their previous contents.
32469         * m4/utf-ucs4.m4: Remove file.
32470         * m4/ucs4-utf.m4: Remove file.
32471         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
32472         (Depends-on): Add unistr/base.
32473         (configure.ac): Remove gl_UTF_UCS4.
32474         (Makefile.am): Update.
32475         (Include): Change to unistr.h.
32476         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
32477         (Depends-on): Add unistr/base.
32478         (configure.ac): Remove gl_UTF_UCS4.
32479         (Makefile.am): Update.
32480         (Include): Change to unistr.h.
32481         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
32482         (Depends-on): Add unistr/base.
32483         (configure.ac): Remove gl_UTF_UCS4.
32484         (Makefile.am): Update.
32485         (Include): Change to unistr.h.
32486         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
32487         (Depends-on): Add unistr/base.
32488         (configure.ac): Remove gl_UTF_UCS4.
32489         (Makefile.am): Update.
32490         (Include): Change to unistr.h.
32491         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
32492         (Depends-on): Add unistr/base.
32493         (configure.ac): Remove gl_UCS4_UTF.
32494         (Makefile.am): Update.
32495         (Include): Change to unistr.h.
32496         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
32497         (Depends-on): Add unistr/base.
32498         (configure.ac): Remove gl_UCS4_UTF.
32499         (Makefile.am): Update.
32500         (Include): Change to unistr.h.
32501         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
32502         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
32503         utf8-ucs4-unsafe.h.
32504         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
32505         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
32506         utf16-ucs4-unsafe.h.
32507         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
32508         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
32509         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
32510         * lib/unistr/u8-strchr.c: Likewise.
32511         * lib/unistr/u8-strrchr.c: Likewise.
32512         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
32513         * lib/unistr/u16-strchr.c: Likewise.
32514         * lib/unistr/u16-strrchr.c: Likewise.
32515         * lib/striconveh.c: Update.
32516         * lib/linebreak.c: Update.
32517
32518 2007-03-24  Bruno Haible  <bruno@clisp.org>
32519
32520         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
32521         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
32522
32523 2007-03-22  Bruno Haible  <bruno@clisp.org>
32524
32525         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
32526
32527 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
32528
32529         * MODULES.html.sh (File system functions): New module write-any-file.
32530         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
32531         * m4/write-any-file.m4: New files.
32532
32533 2007-03-23  Eric Blake  <ebb9@byu.net>
32534
32535         * gnulib-tool: Rearrange space-tab sequences, since some editors
32536         like to eat them.
32537
32538 2007-03-23  Eric Blake  <ebb9@byu.net>
32539
32540         * lib/version-etc.c (version_etc_va): Update license wording to
32541         be more concise.  Recommended by Richard Stallman.
32542
32543 2007-03-22  Bruno Haible  <bruno@clisp.org>
32544
32545         * lib/poll.c (MSG_PEEK): New fallback definition.
32546
32547 2007-03-22  Bruno Haible  <bruno@clisp.org>
32548
32549         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
32550         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
32551         (main): Update.
32552         Fixes a compilation error on BeOS.
32553
32554 2007-03-22  Bruno Haible  <bruno@clisp.org>
32555
32556         * modules/frexpl-tests: New file.
32557         * tests/test-frexpl.c: New file.
32558
32559         * modules/frexpl: New file.
32560         * m4/frexpl.m4: New file.
32561         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
32562         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
32563         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
32564         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
32565         (Depends-on): Add frexpl. Remove isnanl-nolibm.
32566         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
32567
32568 2007-03-22  Bruno Haible  <bruno@clisp.org>
32569
32570         * lib/frexpl.c: Share code with lib/frexp.c.
32571         * modules/mathl (Files): Add lib/frexp.c.
32572         (Depends-on): Add isnanl-nolibm.
32573
32574 2007-03-22  Bruno Haible  <bruno@clisp.org>
32575
32576         * modules/printf-frexp (Files): Add m4/frexp.m4.
32577         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
32578         only if the found frexp function actually works.
32579
32580 2007-03-22  Bruno Haible  <bruno@clisp.org>
32581
32582         * lib/frexp.c: Remove older implementation that uses divisions.
32583
32584 2007-03-21  Bruno Haible  <bruno@clisp.org>
32585
32586         * modules/frexp-tests: New file.
32587         * tests/test-frexp.c: New file.
32588
32589         * modules/frexp: New file.
32590         * lib/frexp.c: New file.
32591         * m4/frexp.m4: New file.
32592         * lib/math_.h (frexp): New declaration.
32593         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
32594         REPLACE_FREXP.
32595         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
32596
32597 2007-03-21  Bruno Haible  <bruno@clisp.org>
32598
32599         * modules/isnanl-tests: New file.
32600         * tests/test-isnanl.c: New file.
32601
32602         * modules/isnanl: New file.
32603         * lib/isnanl.h: New file.
32604         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
32605         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
32606         gl_FUNC_ISNANL_WORKS.
32607         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
32608         New macros.
32609
32610 2007-03-21  Bruno Haible  <bruno@clisp.org>
32611
32612         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
32613         lib/isnanl.h.
32614         (Include): Update.
32615         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
32616         * lib/vasnprintf.c: Update.
32617         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
32618         tests/test-isnanl.h, remove tests/test-isnanl.c.
32619         (Makefile.am): Update.
32620         * tests/test-isnanl-nolibm.c: New file.
32621         * tests/test-isnanl.h: New file.
32622         * tests/test-isnanl.c: Remove file.
32623
32624 2007-03-21  Jim Meyering  <jim@meyering.net>
32625
32626         When trying to open ".", treat ESTALE like EACCES.
32627         * lib/savewd.c (savewd_save): Resort to forking not just upon
32628         failure with EACCES, but also when errno is ESTALE.
32629
32630 2007-03-20  Bruno Haible  <bruno@clisp.org>
32631
32632         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
32633         Needed on AIX 5.1. Reported by Matthew Woehlke.
32634
32635 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
32636
32637         Suggestions by Bruno Haible:
32638         * lib/acl-internal.h: Include "gettext.h" rather than rolling
32639         our own.
32640         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
32641         * modules/acl (Depends-on): Add gettext.
32642
32643 2007-03-19  Bruno Haible  <bruno@clisp.org>
32644
32645         * modules/iconvme: Remove file.
32646         * lib/iconvme.h: Remove file.
32647         * lib/iconvme.c: Remove file.
32648         * m4/iconvme.m4: Remove file.
32649
32650 2007-03-19  Bruno Haible  <bruno@clisp.org>
32651
32652         * doc/relocatable-maint.texi: Break long shell script line.
32653         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
32654
32655 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
32656
32657         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
32658         handle file_has_acl.
32659         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
32660         * lib/acl.c: Move header inclusions and related macro defns into
32661         lib/acl-internal.h.
32662         (S_ISLNK): Remove defn, since that's now done for us.
32663         (file_has_acl): Move to lib/file-has-acl.c.
32664         Call acl_trivial if available.  This is the crucial part of the fix.
32665         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
32666         shared within the library.  Rewrite a bit, partly to make it compatible
32667         with the GNU coding style.
32668         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
32669         Remove unnecessary double-quotes.
32670         Don't test for acl_to_text; the build will catch that.
32671         Replace acl_entries if it doesn't exist and it is needed.
32672         Check for -lsec and acl_trivial (as used on Solaris 10).
32673         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
32674         lib/file-has-acl.c.
32675         (Depends-on): Add sys_stat, for S_ISLNK.
32676
32677 2007-03-19  Ben Pfaff  <blp@gnu.org>
32678
32679         * doc/gnulib.texi: Fix typos.
32680         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
32681
32682 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
32683
32684         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
32685         If size is zero here, buf must be zero.
32686
32687 2007-03-19  Simon Josefsson  <simon@josefsson.org>
32688
32689         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
32690         <bruno@clisp.org>.
32691
32692 2007-03-18  Bruno Haible  <bruno@clisp.org>
32693
32694         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
32695         Suggested by Eric Blake.
32696
32697 2007-03-18  Ben Pfaff  <blp@gnu.org>
32698
32699         * doc/relocatable.texi: Recommend using as prefix a directory
32700         that does not exist and will never be created.  Based on
32701         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
32702         and others.
32703
32704 2007-03-17  Bruno Haible  <bruno@clisp.org>
32705
32706         * lib/fchownat.c: Include lchown.h.
32707
32708 2007-03-17  Bruno Haible  <bruno@clisp.org>
32709
32710         Fix endless loop when the given allocated size was > INT_MAX.
32711         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
32712         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
32713         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
32714         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
32715         * lib/sprintf.c (sprintf): Likewise.
32716
32717 2007-03-17  Bruno Haible  <bruno@clisp.org>
32718
32719         * tests/test-argp-2.sh (func_compare): Output a context diff.
32720
32721 2007-03-17  Bruno Haible  <bruno@clisp.org>
32722
32723         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
32724         locale's decimal-point character.
32725
32726 2007-03-17  Bruno Haible  <bruno@clisp.org>
32727
32728         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
32729         before comparing it. Needed because on some platforms (e.g. x86) a
32730         'long double' occupies less bytes than sizeof (long double).
32731
32732 2007-03-17  Bruno Haible  <bruno@clisp.org>
32733
32734         * tests/test-crc.c (main): Make printf statements 64-bit clean.
32735         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
32736         * tests/test-getaddrinfo.c (simple): Likewise.
32737         * tests/test-read-file.c (main): Likewise.
32738
32739 2007-03-17  Bruno Haible  <bruno@clisp.org>
32740
32741         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
32742
32743 2007-03-17  Bruno Haible  <bruno@clisp.org>
32744
32745         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
32746         unused variable.
32747
32748 2007-03-17  Bruno Haible  <bruno@clisp.org>
32749
32750         * tests/test-c-strcasecmp.c: Include c-strcase.h.
32751         * tests/test-c-strncasecmp.c: Likewise.
32752
32753 2007-03-17  Bruno Haible  <bruno@clisp.org>
32754
32755         * modules/stdlib (Depends-on): Add unistd.
32756         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
32757         Needed for MacOS X 10.3.
32758
32759 2007-03-17  Bruno Haible  <bruno@clisp.org>
32760
32761         * lib/unistr/u-strdup.h: Include <stdlib.h>.
32762
32763 2007-03-17  Bruno Haible  <bruno@clisp.org>
32764
32765         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
32766
32767 2007-03-17  Bruno Haible  <bruno@clisp.org>
32768
32769         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
32770         to reflect files copied from gnulib (with or without modifications).
32771         Suggested by Jim Meyering.
32772
32773 2007-03-17  Eric Blake  <ebb9@byu.net>
32774
32775         * NEWS: Document stdlib change from 2007-02-18.
32776
32777 2007-03-17  Jim Meyering  <jim@meyering.net>
32778
32779         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
32780         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
32781         someone uses a name containing shell meta-characters.
32782         Reported by Alfred M. Szmidt.
32783
32784         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
32785
32786 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
32787
32788         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
32789         and copy gettext configuration files only if configure.ac contains
32790         a use of AM_GNU_GETTEXT_VERSION.
32791
32792 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
32793
32794         * build-aux/bootstrap (gnulib_name): New variable.
32795         (gnulib_tool_options): Use it.
32796
32797 2007-03-13  Simon Josefsson  <simon@josefsson.org>
32798
32799         * tests/test-des.c: Use new namespace.
32800
32801 2007-03-15  Bruno Haible  <bruno@clisp.org>
32802
32803         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
32804         Reported by James Youngman <jay@gnu.org>.
32805
32806 2007-03-15  Bruno Haible  <bruno@clisp.org>
32807
32808         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
32809         declared prototype. Needed with cc on OSF/1 5.1.
32810
32811 2007-03-15  Bruno Haible  <bruno@clisp.org>
32812
32813         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
32814         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
32815         (struct gl_list_implementation): Add dispose_fn argument to the
32816         'create_empty', 'create' methods.
32817         (struct gl_list_impl_base): Add field 'dispose_fn'.
32818         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
32819         argument.
32820         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
32821         dispose_fn argument.
32822         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
32823         dispose_fn on the dropped values.
32824         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
32825         dispose_fn argument.
32826         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
32827         dropped values.
32828         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
32829         (gl_tree_remove_node): Call dispose_fn on the dropped value.
32830         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
32831         (gl_tree_remove_node): Call dispose_fn on the dropped value.
32832         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
32833         argument.
32834         (gl_tree_list_free): Call dispose_fn on the dropped values.
32835         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
32836         the dropped values.
32837         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
32838         Add dispose_fn argument.
32839         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
32840         Call dispose_fn on the dropped values.
32841         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
32842         Add dispose_fn argument.
32843         (gl_sublist_create): Initialize the 'dispose_fn' field.
32844         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
32845         * tests/test-array_list.c (main): Update.
32846         * tests/test-carray_list.c (main): Update.
32847         * tests/test-avltree_list.c (main): Update.
32848         * tests/test-rbtree_list.c (main): Update.
32849         * tests/test-avltreehash_list.c (main): Update.
32850         * tests/test-rbtreehash_list.c (main): Update.
32851         * tests/test-linked_list.c (main): Update.
32852         * tests/test-linkedhash_list.c (main): Update.
32853         * tests/test-array_oset.c (main): Update.
32854
32855 2007-03-15  Bruno Haible  <bruno@clisp.org>
32856
32857         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
32858         (gl_oset_create_empty): Add dispose_fn argument.
32859         (struct gl_oset_implementation): Add dispose_fn argument to
32860         'create_empty' method.
32861         (struct gl_oset_impl_base): Add dispose_fn field.
32862         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
32863         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
32864         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
32865         values.
32866         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
32867         (gl_tree_oset_free): Call dispose_fn on the dropped values.
32868         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
32869         dropped value.
32870         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
32871         dropped value.
32872         * tests/test-array_oset.c (main): Update.
32873         * tests/test-avltree_oset.c (main): Update.
32874         * tests/test-rbtree_oset.c (main): Update.
32875         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
32876
32877 2007-03-13  Bruno Haible  <bruno@clisp.org>
32878
32879         * tests/test-stdbool.c (i): Update after last patch.
32880
32881 2007-03-12  Bruno Haible  <bruno@clisp.org>
32882
32883         * lib/quotearg.c: Include <wctype.h> early, before the definition of
32884         the iswprint macro. Needed on Solaris 2.5.1.
32885
32886 2007-03-12  Bruno Haible  <bruno@clisp.org>
32887
32888         * tests/test-printf-frexp.c (main): Declare x as volatile.
32889
32890 2007-03-12  Simon Josefsson  <simon@josefsson.org>
32891
32892         * doc/gnulib.texi (Build robot for gnulib): New section.
32893
32894 2007-03-12  Jim Meyering  <jim@meyering.net>
32895
32896         * build-aux/bootstrap: New file.
32897         * build-aux/bootstrap.conf: New file, from coreutils.
32898
32899 2007-03-11  Bruno Haible  <bruno@clisp.org>
32900
32901         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
32902
32903 2007-03-12  Simon Josefsson  <simon@josefsson.org>
32904
32905         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
32906         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
32907         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
32908
32909 2007-03-11  Bruno Haible  <bruno@clisp.org>
32910
32911         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
32912         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
32913
32914 2007-03-11  Bruno Haible  <bruno@clisp.org>
32915
32916         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
32917         formula. Needed for SunPRO C 5.0.
32918
32919 2007-03-11  Bruno Haible  <bruno@clisp.org>
32920
32921         * modules/long-options (Depends-on): Add getopt.
32922
32923 2007-03-11  Bruno Haible  <bruno@clisp.org>
32924
32925         * modules/modechange (Depends-on): Add stdbool.
32926
32927 2007-03-11  Bruno Haible  <bruno@clisp.org>
32928
32929         * modules/i-ring (Depends-on): Add stdbool.
32930
32931 2007-03-11  Bruno Haible  <bruno@clisp.org>
32932
32933         * modules/gc-des (Depends-on): Add stdbool.
32934
32935 2007-03-11  Bruno Haible  <bruno@clisp.org>
32936
32937         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
32938
32939 2007-03-11  Bruno Haible  <bruno@clisp.org>
32940
32941         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
32942
32943 2007-03-11  Bruno Haible  <bruno@clisp.org>
32944
32945         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
32946
32947 2007-03-11  Bruno Haible  <bruno@clisp.org>
32948
32949         * lib/vasnprintf.c (sprintf): Undefine.
32950
32951 2007-03-11  Bruno Haible  <bruno@clisp.org>
32952
32953         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
32954         initializers in SunPRO C and Compaq C compilers.
32955
32956 2007-03-11  Bruno Haible  <bruno@clisp.org>
32957
32958         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
32959         decrementing code ANSI C compliant.
32960
32961 2007-03-11  Bruno Haible  <bruno@clisp.org>
32962
32963         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
32964         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
32965
32966 2007-03-11  Bruno Haible  <bruno@clisp.org>
32967
32968         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
32969         <stdbool.h> substitute doesn't pass.
32970
32971 2007-03-11  Bruno Haible  <bruno@clisp.org>
32972
32973         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
32974
32975 2007-03-11  Bruno Haible  <bruno@clisp.org>
32976
32977         * gnulib-tool (func_create_megatestdir): Create also an autobuild
32978         script, for submission to autobuild.josefsson.org.
32979
32980 2007-03-10  Bruno Haible  <bruno@clisp.org>
32981
32982         * modules/canonicalize-lgpl-tests: New file.
32983         * tests/test-canonicalize-lgpl.sh: New file.
32984         * tests/test-canonicalize-lgpl.c: New file.
32985
32986         * modules/c-strcase-tests: New file.
32987         * tests/test-c-strcase.sh: New file.
32988         * tests/test-c-strcasecmp.c: New file.
32989         * tests/test-c-strncasecmp.c: New file.
32990
32991         * modules/atexit-tests: New file.
32992         * tests/test-atexit.sh: New file.
32993         * tests/test-atexit.c: New file.
32994
32995 2007-03-10  Bruno Haible  <bruno@clisp.org>
32996
32997         * tests/test-binary-io.sh: Use temporary filenames that are not so
32998         likely to clash with those of other tests (in a parallel make).
32999         * tests/test-binary-io.c: Likewise.
33000
33001 2007-03-10  Bruno Haible  <bruno@clisp.org>
33002
33003         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
33004         fallback; use #error instead.
33005         Suggested by Simon Josefsson.
33006
33007 2007-03-10  Bruno Haible  <bruno@clisp.org>
33008
33009         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
33010         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
33011         first and the last.
33012
33013 2007-03-10  Bruno Haible  <bruno@clisp.org>
33014
33015         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
33016
33017 2007-03-10  Bruno Haible  <bruno@clisp.org>
33018
33019         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
33020         "make distcheck".
33021         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
33022         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
33023         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
33024
33025 2007-03-10  Bruno Haible  <bruno@clisp.org>
33026
33027         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
33028         variable.
33029         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
33030         variable.
33031
33032 2007-03-09  Eric Blake  <ebb9@byu.net>
33033         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
33034
33035         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
33036         types are not being provided by gnulib.
33037         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
33038         types are supported.
33039
33040 2007-03-10  Bruno Haible  <bruno@clisp.org>
33041
33042         * lib/stdio_.h (__attribute__): New macro.
33043         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
33044         vsprintf): Specify __attribute__ __format__ for GCC.
33045         Suggested by Eric Blake.
33046
33047 2007-03-09  Bruno Haible  <bruno@clisp.org>
33048
33049         * modules/printf-posix-tests: New file.
33050         * tests/test-printf-posix.sh: New file.
33051         * tests/test-printf-posix.c: New file.
33052
33053         * modules/printf-posix: New file.
33054         * lib/printf.c: New file.
33055         * m4/printf-posix-rpl.m4: New file.
33056         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
33057         REPLACE_PRINTF.
33058         * lib/stdio_.h (printf): New declaration.
33059         (format, __format__, ____printf____, ____scanf____, ____strftime____,
33060         ____strfmon____): New macros.
33061         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
33062         REPLACE_PRINTF.
33063
33064 2007-03-09  Bruno Haible  <bruno@clisp.org>
33065
33066         * tests/test-vasnprintf-posix2.sh: New file.
33067         * tests/test-vasnprintf-posix2.c: New file.
33068         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
33069         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
33070         (Makefile.am): Activate test-vasnprintf-posix2.sh.
33071
33072         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
33073         a locale dependent decimal point, rather than always '.'.
33074
33075 2007-03-09  Eric Blake  <ebb9@byu.net>
33076
33077         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
33078         spite of platforms like Tandem/NSK that define it to -1.
33079
33080 2007-03-08  Bruno Haible  <bruno@clisp.org>
33081
33082         * modules/vprintf-posix-tests: New file.
33083         * tests/test-vprintf-posix.sh: New file.
33084         * tests/test-vprintf-posix.c: New file.
33085         * tests/test-printf-posix.h: New file.
33086
33087         * modules/vprintf-posix: New file.
33088         * lib/vprintf.c: New file.
33089         * m4/vprintf-posix.m4: New file.
33090         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
33091         REPLACE_VPRINTF.
33092         * lib/stdio_.h (vprintf): New declaration.
33093         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
33094         REPLACE_VPRINTF.
33095
33096 2007-03-08  Bruno Haible  <bruno@clisp.org>
33097
33098         * modules/fprintf-posix-tests: New file.
33099         * tests/test-fprintf-posix.sh: New file.
33100         * tests/test-fprintf-posix.c: New file.
33101
33102         * modules/fprintf-posix: New file.
33103         * lib/fprintf.c: New file.
33104         * m4/fprintf-posix.m4: New file.
33105         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
33106         REPLACE_FPRINTF.
33107         * lib/stdio_.h (fprintf): New declaration.
33108         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
33109         REPLACE_FPRINTF.
33110
33111 2007-03-08  Bruno Haible  <bruno@clisp.org>
33112
33113         * modules/vfprintf-posix-tests: New file.
33114         * tests/test-vfprintf-posix.sh: New file.
33115         * tests/test-vfprintf-posix.c: New file.
33116         * tests/test-fprintf-posix.h: New file.
33117         * tests/test-fprintf-posix.out: New file.
33118
33119         * modules/vfprintf-posix: New file.
33120         * lib/vfprintf.c: New file.
33121         * m4/vfprintf-posix.m4: New file.
33122         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
33123         REPLACE_VFPRINTF.
33124         * lib/stdio_.h (vfprintf): New declaration.
33125         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
33126         REPLACE_VFPRINTF.
33127
33128 2007-03-08  Bruno Haible  <bruno@clisp.org>
33129
33130         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
33131
33132 2007-03-08  Bruno Haible  <bruno@clisp.org>
33133
33134         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
33135         instead of 'expr' invocations.
33136         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
33137         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
33138         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
33139         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
33140         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
33141         Suggested by Paul Eggert.
33142
33143 2007-03-08  Bruno Haible  <bruno@clisp.org>
33144
33145         * modules/fseterr-tests: New file.
33146         * tests/test-fseterr.c: New file.
33147
33148         * modules/fseterr: New file.
33149         * lib/fseterr.h: New file.
33150         * lib/fseterr.c: New file.
33151
33152 2007-03-08  Bruno Haible  <bruno@clisp.org>
33153
33154         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
33155         * lib/getopt_.h: Likewise.
33156         * lib/mbswidth.h: Likewise.
33157         * lib/setenv.h: Likewise.
33158         * lib/vasnprintf.h: Likewise.
33159         * lib/vasprintf.h: Likewise.
33160         * lib/verror.h: Likewise.
33161         * lib/xsetenv.h: Likewise.
33162         * lib/xvasprintf.h: Likewise.
33163
33164 2007-03-08  Jim Meyering  <jim@meyering.net>
33165
33166         * users.txt: Add parted.
33167
33168         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
33169
33170 2007-03-07  Bruno Haible  <bruno@clisp.org>
33171
33172         * m4/printf.m4: Make the shell script snippets copy&pastable.
33173
33174 2007-03-02  Bruno Haible  <bruno@clisp.org>
33175
33176         * lib/netinet_in_.h: New file.
33177         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
33178         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
33179         * modules/netinet_in (Files): Add lib/netinet_in_.h.
33180         (Depends-on): Add absolute-header.
33181         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
33182         into netinet/in.h.
33183
33184 2007-03-03  Bruno Haible  <bruno@clisp.org>
33185
33186         * lib/sys_select_.h: New file.
33187         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
33188         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
33189         * modules/sys_select (Files): Add lib/sys_select_.h.
33190         (Depends-on): Add absolute-header.
33191         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
33192         into sys/select.h.
33193
33194 2007-03-02  Bruno Haible  <bruno@clisp.org>
33195
33196         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
33197         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
33198         values.
33199         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
33200         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
33201         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
33202         * modules/sys_socket (Depends-on): Add absolute-header.
33203         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
33204         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
33205         (Include): Remove requirement of inclusion of <sys/types.h>.
33206
33207 2007-03-02  Bruno Haible  <bruno@clisp.org>
33208
33209         * lib/byteswap_.h (bswap_32): Fix formula.
33210
33211 2007-03-06  Bruno Haible  <bruno@clisp.org>
33212
33213         * modules/sprintf-posix-tests: New file.
33214         * tests/test-sprintf-posix.c: New file.
33215
33216         * modules/sprintf-posix: New file.
33217         * lib/sprintf.c: New file.
33218         * m4/sprintf-posix.m4: New file.
33219         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
33220         REPLACE_SPRINTF.
33221         * lib/stdio_.h (sprintf): New declaration.
33222         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
33223         REPLACE_SPRINTF.
33224
33225 2007-03-06  Bruno Haible  <bruno@clisp.org>
33226
33227         * modules/vsprintf-posix-tests: New file.
33228         * tests/test-vsprintf-posix.c: New file.
33229         * tests/test-sprintf-posix.h: New file.
33230
33231         * modules/vsprintf-posix: New file.
33232         * lib/vsprintf.c: New file.
33233         * m4/vsprintf-posix.m4: New file.
33234         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
33235         REPLACE_VSPRINTF.
33236         * lib/stdio_.h (vsprintf): New declaration.
33237         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
33238         REPLACE_VSPRINTF.
33239
33240 2007-03-06  Bruno Haible  <bruno@clisp.org>
33241
33242         * modules/vsnprintf (Depend-on): Remove minmax.
33243
33244 2007-03-06  Bruno Haible  <bruno@clisp.org>
33245
33246         * modules/snprintf-posix-tests: New file.
33247         * tests/test-snprintf-posix.c: New file.
33248
33249         * modules/snprintf-posix: New file.
33250         * m4/snprintf-posix.m4: New file.
33251         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
33252         gl_FUNC_SNPRINTF.
33253         (gl_FUNC_SNPRINTF): Invoke it.
33254         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
33255         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
33256         is set.
33257         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
33258
33259 2007-03-06  Bruno Haible  <bruno@clisp.org>
33260
33261         * modules/vsnprintf-posix-tests: New file.
33262         * tests/test-vsnprintf-posix.c: New file.
33263         * tests/test-snprintf-posix.h: New file.
33264
33265         * modules/vsnprintf-posix: New file.
33266         * m4/vsnprintf-posix.m4: New file.
33267         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
33268         gl_FUNC_VSNPRINTF.
33269         (gl_FUNC_VSNPRINTF): Invoke it.
33270         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
33271         * lib/stdio_.h (vsnprintf): Define as a replacement if
33272         REPLACE_VSNPRINTF is set.
33273         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
33274
33275 2007-03-06  Bruno Haible  <bruno@clisp.org>
33276
33277         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
33278         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
33279
33280 2007-03-06  Bruno Haible  <bruno@clisp.org>
33281
33282         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
33283         (asinl): Declare also if HAVE_DECL_ASINL is set.
33284         (atanl): Declare also if HAVE_DECL_ATANL is set.
33285         (ceill): Declare also if HAVE_DECL_CEILL is set.
33286         (cosl): Declare also if HAVE_DECL_COSL is set.
33287         (expl): Declare also if HAVE_DECL_EXPL is set.
33288         (floorl): Declare also if HAVE_DECL_FLOORL is set.
33289         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
33290         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
33291         (logl): Declare also if HAVE_DECL_LOGL is set.
33292         (sinl): Declare also if HAVE_DECL_SINL is set.
33293         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
33294         (tanl): Declare also if HAVE_DECL_TANL is set.
33295         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
33296         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
33297         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
33298         declaration of frexpl, ldexpl.
33299         * modules/printf-frexpl (Depends-on): Add math.
33300         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
33301
33302 2007-03-05  Bruno Haible  <bruno@clisp.org>
33303
33304         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
33305         frexpl and ldexpl are declared.
33306         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
33307
33308 2007-03-05  Bruno Haible  <bruno@clisp.org>
33309
33310         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
33311         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
33312
33313 2007-03-05  Bruno Haible  <bruno@clisp.org>
33314
33315         * lib/stdio_.h: Include <stddef.h>.
33316
33317 2007-03-05  Bruno Haible  <bruno@clisp.org>
33318
33319         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
33320
33321 2007-03-05  Bruno Haible  <bruno@clisp.org>
33322
33323         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
33324         NetBSD 4, from Ralf Wildenhues.
33325
33326 2007-03-04  Bruno Haible  <bruno@clisp.org>
33327
33328         * lib/vasprintf.h: Update #if logic for the case when the functions
33329         exist but are overridden.
33330
33331 2007-03-04  Bruno Haible  <bruno@clisp.org>
33332
33333         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
33334         implementations: glibc-2.4 and MacOS X 10.3.
33335         * tests/test-vasnprintf-posix.c (test_function): Test also the case
33336         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
33337         * tests/test-vasprintf-posix.c (test_function): Likewise.
33338
33339 2007-03-04  Bruno Haible  <bruno@clisp.org>
33340
33341         * modules/vasprintf-posix-tests: New file.
33342         * tests/test-vasprintf-posix.c: New file.
33343
33344         * modules/vasprintf-posix: New file.
33345         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
33346         defined.
33347         * m4/vasprintf-posix.m4: New file.
33348         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
33349         gl_FUNC_VASPRINTF.
33350         (gl_FUNC_VASPRINTF): Invoke it.
33351         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
33352         here.
33353         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
33354
33355 2007-03-04  Bruno Haible  <bruno@clisp.org>
33356
33357         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
33358         REPLACE_GETTIMEOFDAY.
33359         * modules/sys_time (Makefile.am): Likewise.
33360         * m4/sys_time_h.m4: Likewise.
33361         * m4/gettimeofday.m4: Likewise.
33362
33363 2007-03-04  Bruno Haible  <bruno@clisp.org>
33364
33365         * modules/vasnprintf-posix-tests: New file.
33366         * tests/test-vasnprintf-posix.c: New file.
33367
33368         * modules/vasnprintf-posix: New file.
33369         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
33370         printf-frexpl.h.
33371         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
33372         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
33373         REPLACE_VASNPRINTF is defined.
33374         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
33375         gl_FUNC_VASNPRINTF.
33376         (gl_FUNC_VASNPRINTF): Invoke it.
33377         * m4/vasnprintf-posix.m4: New file.
33378         * m4/printf.m4: New file.
33379
33380 2007-03-04  Bruno Haible  <bruno@clisp.org>
33381
33382         Compile progreloc.c only if --enable-relocatable is specified.
33383         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
33384         if --enable-relocatable was specified.
33385         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
33386         lib_SOURCES.
33387
33388 2007-03-04  Jim Meyering  <jim@meyering.net>
33389
33390         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
33391         Use it consistently, rather than enumerating errno constants.
33392
33393 2007-03-04  Bruno Haible  <bruno@clisp.org>
33394
33395         * modules/xvasprintf-tests: New file.
33396         * tests/test-xvasprintf.c: New file.
33397
33398         * modules/vasprintf-tests: New file.
33399         * tests/test-vasprintf.c: New file.
33400
33401         * modules/vasnprintf-tests: New file.
33402         * tests/test-vasnprintf.c: New file.
33403
33404         * modules/vsnprintf-tests: New file.
33405         * tests/test-vsnprintf.c: New file.
33406
33407         * modules/snprintf-tests: New file.
33408         * tests/test-snprintf.c: New file.
33409
33410 2007-03-04  Bruno Haible  <bruno@clisp.org>
33411
33412         Compile relocatable.c only if --enable-relocatable is specified.
33413         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
33414         gl_RELOCATABLE_LIBRARY.
33415         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
33416         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
33417         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
33418         gl_RELOCATABLE_LIBRARY.
33419         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
33420         (Makefile.am): Remove lib_SOURCES.
33421         * modules/relocatable-lib-lgpl (configure.ac): Invoke
33422         gl_RELOCATABLE_LIBRARY.
33423         (Makefile.am): Remove lib_SOURCES.
33424         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
33425         always.
33426         * modules/relocatable-prog-wrapper (configure.ac): Invoke
33427         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
33428
33429 2007-03-04  Bruno Haible  <bruno@clisp.org>
33430
33431         * modules/argmatch-tests: New file.
33432         * tests/test-argmatch.c: New file.
33433
33434         * tests/test-allocsa.c (main): Halve the number of loop runs.
33435
33436         * modules/alloca-opt-tests: New file.
33437         * tests/test-alloca-opt.c: New file.
33438
33439 2007-03-04  Jim Meyering  <jim@meyering.net>
33440
33441         Work around difference between Linux ACLs and Solaris 10 ZFS.
33442         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
33443         for EINVAL.
33444
33445 2007-03-03  Bruno Haible  <bruno@clisp.org>
33446
33447         * modules/relocatable-prog (Depends-on): Add back progreloc's
33448         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
33449
33450 2007-03-03  Bruno Haible  <bruno@clisp.org>
33451
33452         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
33453         * modules/relocatable-lib: New file.
33454
33455 2007-03-03  Bruno Haible  <bruno@clisp.org>
33456
33457         * modules/relocatable-prog: Renamed from modules/relocatable.
33458         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
33459
33460 2007-03-03  Bruno Haible  <bruno@clisp.org>
33461
33462         * modules/relocatable-script (Files): Add doc/relocatable.texi,
33463         m4/relocatable-lib.m4.
33464         (Depends-on): Remove 'relocatable'.
33465         (configure.ac): Add gl_RELOCATABLE_NOP.
33466
33467 2007-03-03  Bruno Haible  <bruno@clisp.org>
33468
33469         * modules/relocatable-prog-wrapper: New file.
33470         * modules/relocatable (Depends-on): Add it. Remove all other
33471         dependencies except progname.
33472         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
33473
33474         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
33475         (gl_FUNC_STRERROR): Nop.
33476         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
33477
33478         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
33479         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
33480
33481         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
33482         (gl_FUNC_READLINK): Update.
33483
33484         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
33485
33486 2007-03-03  Bruno Haible  <bruno@clisp.org>
33487
33488         * lib/xreadlink.c: Include <unistd.h> unconditionally.
33489         * modules/xreadlink (Depends-on): Add unistd.
33490         * modules/xreadlink-with-size (Depends-on): Likewise.
33491
33492 2007-03-03  Bruno Haible  <bruno@clisp.org>
33493
33494         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
33495         extracted from gt_FUNC_SETENV.
33496         (gt_FUNC_SETENV): Remove macro.
33497         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
33498         remove gt_FUNC_SETENV.
33499
33500 2007-03-03  Bruno Haible  <bruno@clisp.org>
33501
33502         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
33503         ENABLE_RELOCATABLE here.
33504         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
33505
33506 2007-03-03  Bruno Haible  <bruno@clisp.org>
33507
33508         * modules/rbtreehash-list-tests (Depends-on): Add progname.
33509         * tests/test-rbtreehash_list.c: Include progname.h.
33510         (main): Call set_program_name.
33511
33512         * modules/rbtree-oset-tests (Depends-on): Add progname.
33513         * tests/test-rbtree_oset.c: Include progname.h.
33514         (main): Call set_program_name.
33515
33516         * modules/rbtree-list-tests (Depends-on): Add progname.
33517         * tests/test-rbtree_list.c: Include progname.h.
33518         (main): Call set_program_name.
33519
33520         * modules/linked-list-tests (Depends-on): Add progname.
33521         * tests/test-linked_list.c: Include progname.h.
33522         (main): Call set_program_name.
33523
33524 2007-03-03  Bruno Haible  <bruno@clisp.org>
33525
33526         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
33527         All uses of __restrict changed to _Restrict_.
33528         * lib/glob_.h (__restrict): Remove macro.
33529
33530 2007-03-02  Bruno Haible  <bruno@clisp.org>
33531
33532         * modules/gettext (configure.ac): Require gettext infrastructure
33533         from version 0.16.1.
33534
33535 2007-03-02  Bruno Haible  <bruno@clisp.org>
33536
33537         * modules/linkedhash-list-tests (Depends-on): Add progname.
33538         * tests/test-linkedhash_list.c: Include progname.h.
33539         (main): Call set_program_name.
33540
33541         * modules/carray-list-tests (Depends-on): Add progname.
33542         * tests/test-carray_list.c: Include progname.h.
33543         (main): Call set_program_name.
33544
33545         * modules/avltreehash-list-tests (Depends-on): Add progname.
33546         * tests/test-avltreehash_list.c: Include progname.h.
33547         (main): Call set_program_name.
33548
33549         * modules/avltree-oset-tests (Depends-on): Add progname.
33550         * tests/test-avltree_oset.c: Include progname.h.
33551         (main): Call set_program_name.
33552
33553         * modules/avltree-list-tests (Depends-on): Add progname.
33554         * tests/test-avltree_list.c: Include progname.h.
33555         (main): Call set_program_name.
33556
33557         * modules/array-oset-tests (Depends-on): Add progname.
33558         * tests/test-array_oset.c: Include progname.h.
33559         (main): Call set_program_name.
33560
33561         * modules/array-list-tests (Depends-on): Add progname.
33562         * tests/test-array_list.c: Include progname.h.
33563         (main): Call set_program_name.
33564
33565         * modules/argp-tests (Depends-on): Add progname.
33566         * tests/test-argp.c: Include argp.h first. Include progname.h.
33567         (main): Call set_program_name.
33568
33569 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
33570
33571         * doc/gnulib-tool.texi (Initial import): Reword description of
33572         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
33573         limited effect even if defined after the first system include.
33574
33575 2007-03-01  Bruno Haible  <bruno@clisp.org>
33576
33577         * build-aux/config.libpath: Update to libtool-1.5.22.
33578         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
33579
33580 2007-03-01  Bruno Haible  <bruno@clisp.org>
33581
33582         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
33583         foo_CFLAGS.
33584         Reported by Ralf Wildenhues.
33585
33586 2007-03-01  Bruno Haible  <bruno@clisp.org>
33587
33588         * build-aux/install-reloc: Remove object files left over by some
33589         compilers.
33590         Reported by Ralf Wildenhues.
33591
33592 2007-03-01  Bruno Haible  <bruno@clisp.org>
33593
33594         * build-aux/install-reloc: Break long lines.
33595
33596 2007-03-01  Bruno Haible  <bruno@clisp.org>
33597
33598         * doc/relocatable.texi: Document that it may not work on OpenBSD.
33599         Reported by Ralf Wildenhues.
33600
33601 2007-03-01  Bruno Haible  <bruno@clisp.org>
33602
33603         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
33604         include ordering constraints.
33605
33606 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
33607
33608         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
33609         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
33610         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
33611         as another example.
33612         * lib/time_.h: Fix misspelling.
33613         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33614         Require gl_HEADER_TIME_H_DEFAULTS.
33615         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
33616         * m4/time_r.m4 (gl_TIME_R): Likewise.
33617         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
33618
33619 2007-03-01  Bruno Haible  <bruno@clisp.org>
33620
33621         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
33622         * m4/utimens.m4 (gl_UTIMENS): Likewise.
33623
33624 2007-03-01  Jim Meyering  <jim@meyering.net>
33625
33626         * modules/xreadlink (Maintainer): Add my name.
33627         * modules/xreadlink-with-size (Depends-on): Alphabetize.
33628
33629 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
33630             Bruno Haible  <bruno@clisp.org>
33631
33632         * build-aux/install-reloc: Compile also c-ctype.c.
33633         * build-aux/relocatable.sh.in: New file.
33634         * doc/relocatable.texi: New file.
33635         * doc/relocatable-maint.texi: New file.
33636         * doc/gnulib.texi: Include relocatable-maint.texi.
33637         * lib/progreloc.c: Include unistd.h unconditionally.
33638         * lib/relocwrapper.c: Include unistd.h unconditionally.
33639         Include c-ctype.h.
33640         (add_dotbin): Use c_tolower.
33641         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
33642         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
33643         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
33644         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
33645         to m4/relocatable-lib.m4.
33646         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
33647         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
33648         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
33649         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
33650         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
33651         * modules/relocatable: New file.
33652         * modules/relocatable-lib: New file.
33653         * modules/relocatable-script: New file.
33654
33655 2007-02-28  Bruno Haible  <bruno@clisp.org>
33656
33657         Import --enable-relocatable infrastructure.
33658         * build-aux/config.libpath: New file, from GNU gettext.
33659         * build-aux/install-reloc: New file, from GNU gettext.
33660         * build-aux/reloc-ldflags: New file, from GNU gettext.
33661         * lib/relocatable.h: New file, from GNU gettext.
33662         * lib/relocatable.c: New file, from GNU gettext.
33663         * lib/relocwrapper.c: New file, from GNU gettext.
33664         * m4/relocatable.m4: New file, from GNU gettext.
33665
33666 2007-02-28  Bruno Haible  <bruno@clisp.org>
33667
33668         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
33669
33670         * modules/xreadlink: New file, from GNU gettext with modifications.
33671         * lib/xreadlink.c: New file, from GNU gettext.
33672         * lib/xreadlink.h: Add comments.
33673         (xreadlink): New declaration.
33674
33675         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
33676         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
33677         lib/xreadlink-with-size.c.
33678         (configure.ac): Remove gl_XREADLINK invocation.
33679         (Makefile.am): Augment lib_SOURCES.
33680         * m4/xreadlink.m4: Remove file.
33681         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
33682         (xreadlink_with_size): Renamed from xreadink.
33683         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
33684         * modules/canonicalize (Depends-on): Replace xreadlink with
33685         xreadlink-with-size.
33686         * lib/canonicalize.c (canonicalize_filename_mode): Update.
33687
33688 2007-02-25  Jim Meyering  <jim@meyering.net>
33689
33690         * build-aux/announce-gen: When complaining about excess arguments,
33691         list them.
33692
33693 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
33694
33695         * README: Document signed integer overflow situation more
33696         accurately.
33697
33698 2007-02-25  Bruno Haible  <bruno@clisp.org>
33699
33700         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
33701         'a' or 'A' conversion.
33702
33703 2007-02-25  Bruno Haible  <bruno@clisp.org>
33704
33705         * modules/filename: Renamed from modules/pathname.
33706         (Files): Replace lib/pathname.h with lib/filename.h. Replace
33707         lib/concatpath.c with lib/concat-filename.c.
33708         (Makefile.am): Update.
33709         (Include): Replace pathname.h with filename.h.
33710         * lib/filename.h: Renamed from lib/pathname.h.
33711         (concatenated_filename): Renamed from concatenated_pathname.
33712         * lib/concat-filename.c: Renamed from lib/concatpath.c.
33713         (concatenated_filename): Renamed from concatenated_pathname.
33714         * lib/findprog.c: Include filename.h instead of pathname.h.
33715         (find_in_path): Update.
33716         * lib/javacomp.c: Include filename.h instead of pathname.h.
33717         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
33718         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
33719         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
33720         is_oldgcj_14_13_usable, is_javac_usable): Update.
33721         * lib/javaexec.c: Include filename.h instead of pathname.h.
33722         (execute_java_class): Update.
33723         * modules/findprog: Update.
33724         * modules/javacomp: Update.
33725         * modules/javaexec: Update.
33726         * MODULES.html.sh (File system functions): Add 'filename', remove
33727         'pathname'.
33728
33729 2007-02-25  Bruno Haible  <bruno@clisp.org>
33730
33731         * modules/printf-frexpl-tests: New file.
33732         * tests/test-printf-frexpl.c: New file.
33733
33734         * modules/printf-frexpl: New file.
33735         * lib/printf-frexpl.h: New file.
33736         * lib/printf-frexpl.c: New file.
33737         * m4/printf-frexpl.m4: New file.
33738
33739 2007-02-25  Bruno Haible  <bruno@clisp.org>
33740
33741         * modules/printf-frexp-tests: New file.
33742         * tests/test-printf-frexp.c: New file.
33743
33744         * modules/printf-frexp: New file.
33745         * lib/printf-frexp.h: New file.
33746         * lib/printf-frexp.c: New file.
33747         * m4/printf-frexp.m4: New file.
33748
33749 2007-02-25  Bruno Haible  <bruno@clisp.org>
33750
33751         Assume automake >= 1.10 for the tests.
33752         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
33753         * modules/arctwo-tests: Likewise.
33754         * modules/argp-tests: Likewise.
33755         * modules/avltree-list-tests: Likewise.
33756         * modules/avltree-oset-tests: Likewise.
33757         * modules/avltreehash-list-tests: Likewise.
33758         * modules/carray-list-tests: Likewise.
33759         * modules/crc-tests: Likewise.
33760         * modules/des-tests: Likewise.
33761         * modules/gc-arcfour-tests: Likewise.
33762         * modules/gc-arctwo-tests: Likewise.
33763         * modules/gc-des-tests: Likewise.
33764         * modules/gc-hmac-md5-tests: Likewise.
33765         * modules/gc-hmac-sha1-tests: Likewise.
33766         * modules/gc-md2-tests: Likewise.
33767         * modules/gc-md4-tests: Likewise.
33768         * modules/gc-md5-tests: Likewise.
33769         * modules/gc-pbkdf2-sha1-tests: Likewise.
33770         * modules/gc-rijndael-tests: Likewise.
33771         * modules/gc-sha1-tests: Likewise.
33772         * modules/gc-tests: Likewise.
33773         * modules/getaddrinfo-tests: Likewise.
33774         * modules/hmac-md5-tests: Likewise.
33775         * modules/hmac-sha1-tests: Likewise.
33776         * modules/linked-list-tests: Likewise.
33777         * modules/linkedhash-list-tests: Likewise.
33778         * modules/lock-tests: Likewise.
33779         * modules/md2-tests: Likewise.
33780         * modules/md4-tests: Likewise.
33781         * modules/md5-tests: Likewise.
33782         * modules/rbtree-list-tests: Likewise.
33783         * modules/rbtree-oset-tests: Likewise.
33784         * modules/rbtreehash-list-tests: Likewise.
33785         * modules/read-file-tests: Likewise.
33786         * modules/rijndael-tests: Likewise.
33787         * modules/stdint-tests: Likewise.
33788         * modules/tls-tests: Likewise.
33789
33790 2007-02-24  Bruno Haible  <bruno@clisp.org>
33791
33792         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
33793         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
33794         function; instead check whether isnan with a double argument links.
33795         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
33796         function; instead check whether isnan with a 'long double' argument
33797         links.
33798         Reported by Eric Blake <ebb9@byu.net>.
33799
33800 2007-02-24  Bruno Haible  <bruno@clisp.org>
33801
33802         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
33803         defined.
33804         * lib/isnanl.c: Remove all code. Just include isnan.c.
33805         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
33806
33807 2007-02-25  Jim Meyering  <jim@meyering.net>
33808
33809         Avoid conflicting types for 'unsetenv' on FreeBSD.
33810         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
33811         conflicting with FreeBSD's (5.0 and 6.1) function declaration
33812         in stdlib.h.
33813
33814 2007-02-24  Bruno Haible  <bruno@clisp.org>
33815
33816         * modules/isnanl-nolibm-tests: New file.
33817         * tests/test-isnanl.c: New file.
33818
33819         * modules/isnanl-nolibm: New file.
33820         * lib/isnanl.h: New file.
33821         * lib/isnanl.c: New file.
33822         * m4/isnanl.m4: New file.
33823
33824 2007-02-24  Bruno Haible  <bruno@clisp.org>
33825
33826         * modules/isnan-nolibm-tests: New file.
33827         * tests/test-isnan.c: New file.
33828
33829         * modules/isnan-nolibm: New file.
33830         * lib/isnan.h: New file.
33831         * lib/isnan.c: New file.
33832         * m4/isnan.m4: New file.
33833
33834 2007-02-24  Bruno Haible  <bruno@clisp.org>
33835
33836         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
33837         assume that an exponent fits in 20 bits.
33838
33839 2007-02-24  Jim Meyering  <jim@meyering.net>
33840
33841         * m4/regex.m4: Update the description of the configure-time option,
33842         --without-included-regex, to state accurately what the defaults are,
33843         and perhaps to give people an idea why using this option is risky.
33844
33845 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
33846
33847         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
33848         loops on small arguments.  This attempts to avoid the problem
33849         Bruno Haible reported for AIX 4.3.2 in
33850         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
33851
33852 2007-02-23  Bruno Haible  <bruno@clisp.org>
33853
33854         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
33855         Needed for help2man.
33856
33857 2007-02-23  Karl Berry  <karl@gnu.org>
33858
33859         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
33860         exists, foo.h should be cvs-ignored, not committed.
33861
33862 2007-02-23  Eric Blake  <ebb9@byu.net>
33863
33864         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
33865         * lib/stat-time.h (includes): Likewise.
33866         * lib/utimecmp.c (includes): Likewise.
33867         * lib/utimens.h (includes): Likewise.
33868         * lib/getdate.y (includes): Also include "timespec.h" for use
33869         internal to the module.
33870         * modules/utimens (Depends-on): Revert yesterday's patch.
33871         * modules/nanosleep (Depends-on): Add missing dependency.
33872
33873 2007-02-22  Bruno Haible  <bruno@clisp.org>
33874
33875         * lib/glob.c: Don't include getlogin_r.h.
33876
33877 2007-02-22  Jim Meyering  <jim@meyering.net>
33878
33879         * modules/utimens (Depends-on): Add timespec, required for
33880         utimens.h's inclusion of timespec.h.
33881
33882 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
33883
33884         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
33885         long unreadable paths in GNU/Linux.  Problem reported by Andreas
33886         Schwab in
33887         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
33888         I'll try to think of a better way to fix the Solaris problem.
33889
33890         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
33891         like glibc; on Solaris 10, it fails with errno == EINVAL.
33892         POSIX says the behavior is unspecified if the first argument is NULL,
33893         so play it safe and never pass NULL to the system getcwd.
33894
33895 2007-02-21  Jim Meyering  <jim@meyering.net>
33896
33897         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
33898         of gettimeofday.  It would conflict with the one now always
33899         provided via sys_time_.h.  Reported by Matthew Woehlke, as
33900         an IRIX 6.5 build failure.
33901
33902 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
33903
33904         Minor fixups to port to Solaris 10 with Sun C 5.8.
33905         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
33906         * modules/getcwd (Depends-on): Add dirfd.
33907         * lib/putenv.c (putenv): #undef it.
33908         (rpl_putenv): New decl.
33909         (malloc, free): Include <stdlib.h> rather than prototyping separately.
33910
33911 2007-02-20  Bruno Haible  <bruno@clisp.org>
33912
33913         * modules/stdio-tests: New file.
33914         * tests/test-stdio.c: New file.
33915
33916         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
33917         (Depends-on): Add stdio.
33918         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
33919         (Include): Use <stdio.h> instead of vsnprintf.h.
33920         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
33921         HAVE_DECL_VSNPRINTF.
33922         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
33923
33924         * modules/snprintf (Files): Remove lib/snprintf.h.
33925         (Depends-on): Add stdio.
33926         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
33927         (Include): Use <stdio.h> instead of snprintf.h.
33928         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
33929         HAVE_DECL_SNPRINTF.
33930         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
33931         * lib/getaddrinfo.c: Likewise.
33932
33933         * modules/stdio: New file.
33934         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
33935         * lib/snprintf.h: Remove file.
33936         * lib/vsnprintf.h: Remove file.
33937         * lib/.cppi-disable: Remove snprintf.h.
33938         * m4/stdio_h.m4: New file.
33939         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
33940
33941 2007-02-20  Jim Meyering  <jim@meyering.net>
33942
33943         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
33944         used by e.g., mingw.  From Bruno Haible.
33945
33946 2007-02-19  Bruno Haible  <bruno@clisp.org>
33947
33948         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
33949         warnings.
33950         Reported by Ben Pfaff <blp@cs.stanford.edu>.
33951
33952 2007-02-19  Bruno Haible  <bruno@clisp.org>
33953
33954         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
33955         from mingw users.
33956
33957 2007-02-19  Bruno Haible  <bruno@clisp.org>
33958
33959         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
33960         warnings.
33961         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
33962
33963 2007-02-19  Jim Meyering  <jim@meyering.net>
33964
33965         Don't use FD after a successful "fdopendir (fd)".
33966         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
33967         Reset it by calling dirfd on the just-obtained DIR*.
33968
33969         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
33970         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
33971
33972 2007-02-18  Bruno Haible  <bruno@clisp.org>
33973
33974         * lib/readlink.c: Include <unistd.h>.
33975         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
33976         HAVE_READLINK.
33977         * modules/readlink (Depends-on): Add unistd.
33978         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
33979         (Include): Add <unistd.h>.
33980
33981         * lib/getlogin_r.h: Remove file.
33982         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
33983         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
33984         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
33985         HAVE_DECL_GETLOGIN_R.
33986         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
33987         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
33988         (Include): Use <unistd.h> instead of getlogin_r.h.
33989
33990         * lib/getcwd.h: Remove file.
33991         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
33992         * lib/xgetcwd.c: Likewise.
33993         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
33994         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
33995         * modules/getcwd (Files): Remove lib/getcwd.h.
33996         (Depends-on): Add unistd.
33997         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
33998         (Include): Use <unistd.h> instad of getcwd.h.
33999
34000         * lib/ftruncate.c: Include <unistd.h> first.
34001         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
34002         Set HAVE_FTRUNCATE.
34003         * modules/ftruncate (Depends-on): Add unistd.
34004         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
34005
34006         * lib/fchdir.c: Include <unistd.h> first.
34007         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
34008         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
34009         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
34010         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
34011         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
34012
34013         * lib/dup2.c: Include <unistd.h> first.
34014         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
34015         HAVE_DUP2.
34016         * modules/dup2 (Depends-on): Add unistd.
34017         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
34018
34019         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
34020         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
34021         REPLACE_CHOWN. Don't define chown as a macro here.
34022         * modules/chown (Depends-on): Add unistd.
34023         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
34024
34025         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
34026         Add definition for GL_LINK_WARNING.
34027         (chown, dup2): New declarations.
34028         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
34029         link warning.
34030         (ftruncate): New declaration.
34031         (getcwd): New declaration, taken from old getcwd.h.
34032         (getlogin_r): New declaration, taken from old getlogin_r.h.
34033         (readlink): New declaration.
34034         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
34035         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
34036         (gl_PREREQ_UNISTD): Remove macro.
34037         (gl_UNISTD_MODULE_INDICATOR): New macro.
34038         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
34039         many new variables. Don't set UNISTD_H.
34040         * modules/unistd (Description): Change.
34041         (Depends-on): Add link-warning.
34042         (configure.ac): Update.
34043         (Makefile.am): Create unistd.h always. Substitute many new variables
34044         into it.
34045
34046 2007-02-18  Bruno Haible  <bruno@clisp.org>
34047
34048         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
34049         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
34050         HAVE_GETSUBOPT.
34051         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
34052         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
34053         * lib/getsubopt.h: Remove file.
34054         * modules/getsubopt (Files): Remove lib/getsubopt.h.
34055         (Depends-on): Add stdlib.
34056         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
34057         (Includes): Use <stdlib.h> instead of getsubopt.h.
34058         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
34059         Set HAVE_GETSUBOPT.
34060         * lib/getsubopt.c: Don't include getsubopt.h.
34061
34062 2007-02-18  Bruno Haible  <bruno@clisp.org>
34063
34064         * modules/fchdir (Depends-on): Add dup2.
34065
34066 2007-02-18  Bruno Haible  <bruno@clisp.org>
34067
34068         * lib/stdlib_.h: Handle glibc's special invocation convention
34069         specially.
34070
34071 2007-02-18  Bruno Haible  <bruno@clisp.org>
34072
34073         * modules/stdlib-tests: New file.
34074         * tests/test-stdlib.c: New file.
34075
34076         * modules/mkstemp (Files): Remove lib/mkstemp.h.
34077         (Depends-on): Add stdlib.
34078         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
34079         (Includes): Use <stdlib.h> instead of mkstemp.h.
34080         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
34081         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
34082         * lib/mkstemp.c: Don't include mkstemp.h.
34083         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
34084         * lib/stdlib--.h: Don't include mkstemp.h.
34085
34086         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
34087         (Depends-on): Add stdlib.
34088         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
34089         (Includes): Use <stdlib.h> instead of mkdtemp.h.
34090         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
34091         HAVE_MKDTEMP.
34092         * lib/mkdtemp.c: Don't include mkdtemp.h.
34093         * lib/clean-temp.c: Don't include mkdtemp.h.
34094
34095         * modules/exit (Files): Remove lib/exit.h.
34096         (Depends-on): Add stdlib.
34097         (Makefile.am): Remove lib_SOURCES.
34098         (Include): Use <stdlib.h> instead of exit.h.
34099         * lib/argmatch.c: Don't include exit.h.
34100         * lib/execute.c: Likewise.
34101         * lib/pagealign_alloc.c: Likewise.
34102         * lib/pipe.c: Likewise.
34103         * lib/wait-process.c: Likewise.
34104         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
34105         * lib/exitfail.c: Likewise.
34106         * lib/savewd.c: Likewise.
34107         * lib/xsetenv.c: Likewise.
34108
34109         * modules/stdlib: New file.
34110         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
34111         and extra comments about mkstemp().
34112         * lib/exit.h: Remove file.
34113         * lib/mkdtemp.h: Remove file.
34114         * lib/mkstemp.h: Remove file.
34115         * m4/stdlib_h.m4: New file.
34116         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
34117
34118 2007-02-18  Bruno Haible  <bruno@clisp.org>
34119
34120         * modules/math-tests: New file.
34121         * tests/test-math.c: New file.
34122
34123         * modules/math: New file.
34124         * modules/mathl (Files): Remove lib/mathl.h.
34125         (Depends-on): Add math.
34126         (Makefile.am): Don't mention mathl.h.
34127         (Include): Use <math.h> instead of mathl.h.
34128         * lib/math_.h: New file.
34129         * lib/mathl.h: Remove file.
34130         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
34131         mathl.h.
34132         * lib/asinl.c: Likewise.
34133         * lib/atanl.c: Likewise.
34134         * lib/ceill.c: Likewise.
34135         * lib/cosl.c: Likewise.
34136         * lib/expl.c: Likewise.
34137         * lib/floorl.c: Likewise.
34138         * lib/frexpl.c: Likewise.
34139         * lib/ldexpl.c: Likewise.
34140         * lib/logl.c: Likewise.
34141         * lib/sincosl.c: Likewise.
34142         * lib/sinl.c: Likewise.
34143         * lib/sqrtl.c: Likewise.
34144         * lib/tanl.c: Likewise.
34145         * lib/trigl.c: Likewise.
34146         * m4/math_h.m4: New file.
34147         * MODULES.html.sh (Mathematics): Add math.
34148
34149 2007-02-17  Bruno Haible  <bruno@clisp.org>
34150
34151         * modules/wctype-tests: New file.
34152         * tests/test-wctype.c: New file.
34153
34154         * modules/wchar-tests: New file.
34155         * tests/test-wchar.c: New file.
34156
34157         * modules/unistd-tests: New file.
34158         * tests/test-unistd.c: New file.
34159
34160         * modules/time-tests: New file.
34161         * tests/test-time.c: New file.
34162
34163         * modules/sysexits-tests: New file.
34164         * tests/test-sysexits.c: New file.
34165
34166         * modules/sys_time-tests: New file.
34167         * tests/test-sys_time.c: New file.
34168
34169         * modules/sys_stat-tests: New file.
34170         * tests/test-sys_stat.c: New file.
34171
34172         * modules/sys_socket-tests: New file.
34173         * tests/test-sys_socket.c: New file.
34174
34175         * modules/sys_select-tests: New file.
34176         * tests/test-sys_select.c: New file.
34177
34178         * modules/string-tests: New file.
34179         * tests/test-string.c: New file.
34180
34181         * modules/stdbool-tests: New file.
34182         * tests/test-stdbool.c: New file.
34183
34184         * modules/netinet_in-tests: New file.
34185         * tests/test-netinet_in.c: New file.
34186
34187         * modules/inttypes-tests: New file.
34188         * tests/test-inttypes.c: New file.
34189
34190         * modules/fcntl-tests: New file.
34191         * tests/test-fcntl.c: New file.
34192
34193         * modules/byteswap-tests: New file.
34194         * tests/test-byteswap.c: New file.
34195
34196         * modules/arpa_inet-tests: New file.
34197         * tests/test-arpa_inet.c: New file.
34198
34199 2007-02-17  Bruno Haible  <bruno@clisp.org>
34200
34201         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
34202         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
34203         if the corresponding module is not enabled. Emit link warnings if
34204         the function is used nevertheless.
34205         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
34206         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
34207         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
34208         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
34209         * modules/inttypes (Depends-on): Add link-warning.
34210         (Makefile.am): Copy the contents of build-aux/link-warning.h into
34211         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
34212         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
34213         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
34214         * modules/imaxdiv (configure.ac): Likewise.
34215         * modules/strtoimax (configure.ac): Likewise.
34216         * modules/strtoumax (configure.ac): Likewise.
34217
34218 2007-02-17  Bruno Haible  <bruno@clisp.org>
34219
34220         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
34221         gl_STRING_MODULE_INDICATOR_DEFAULTS.
34222         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
34223         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
34224
34225 2007-02-17  Bruno Haible  <bruno@clisp.org>
34226
34227         * modules/link-warning: New file.
34228         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
34229         * lib/string_.h (GL_LINK_WARNING): Remove definition.
34230         * modules/string (Depends-on): Add link-warning.
34231         (Makefile.am): Copy the contents of build-aux/link-warning.h into
34232         string.h.
34233         * MODULES.html.sh (Support for building libraries and executables): Add
34234         link-warning.
34235
34236 2007-02-17  Bruno Haible  <bruno@clisp.org>
34237
34238         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
34239         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
34240         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
34241         long lines.
34242
34243 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
34244             Bruno Haible  <bruno@clisp.org>
34245
34246         * modules/tmpfile: New file.
34247         * lib/tmpfile.c: New file.
34248         * m4/tmpfile.m4: New file.
34249         * MODULES.html.sh (func_all_modules): New section "Input/output".
34250
34251 2007-02-15  Bruno Haible  <bruno@clisp.org>
34252
34253         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
34254         (supports_delete_on_close): New function.
34255         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
34256
34257 2007-02-14  Bruno Haible  <bruno@clisp.org>
34258
34259         * modules/mbspcasecmp-tests: New file.
34260         * tests/test-mbspcasecmp.sh: New file.
34261         * tests/test-mbspcasecmp.c: New file.
34262
34263         New module mbspcasecmp.
34264         * modules/mbspcasecmp: New file.
34265         * lib/mbspcasecmp.c: New file.
34266         * lib/string_.h (strncasecmp): Change warning message.
34267         (mbspcasecmp): New declaration.
34268         * m4/mbspcasecmp.m4: New file.
34269         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34270         GNULIB_MBSPCASECMP.
34271         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
34272         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
34273
34274 2007-02-14  Bruno Haible  <bruno@clisp.org>
34275
34276         * modules/mbsncasecmp-tests: New file.
34277         * tests/test-mbsncasecmp.sh: New file.
34278         * tests/test-mbsncasecmp.c: New file.
34279
34280         New module mbsncasecmp.
34281         * modules/mbsncasecmp: New file.
34282         * lib/mbsncasecmp.c: New file.
34283         * lib/string_.h (mbsncasecmp): New declaration.
34284         * m4/mbsncasecmp.m4: New file.
34285         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34286         GNULIB_MBSNCASECMP.
34287         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
34288         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
34289
34290 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
34291
34292         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
34293         Verify that it doesn't overlap with our flags.
34294         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
34295         do not have the desired effect in multibyte locales; instead, use
34296         mbscasecmp.
34297         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
34298         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
34299         we don't require GNU fnmatch ourselves (if our users require it, they
34300         should do so explicitly).
34301
34302         Fix regex code so it doesn't rely on strcasecmp.
34303         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
34304         Otherwise, include gnulib's langinfo.h.
34305         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
34306         undesirable behavior in non-C locales.  Instead, rely on localecharset.
34307         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
34308         * modules/regex (FILES): Remove m4/codeset.m4.
34309         (Depends-on): Add localcharset.  Remove strcase.
34310
34311 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34312
34313         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
34314         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
34315
34316 2007-02-13  Bruno Haible  <bruno@clisp.org>
34317
34318         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
34319         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34320
34321 2007-02-12  Bruno Haible  <bruno@clisp.org>
34322
34323         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
34324         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
34325         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
34326         time warning rather than a link error.
34327
34328 2007-02-12  Bruno Haible  <bruno@clisp.org>
34329
34330         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
34331         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
34332         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34333
34334 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
34335
34336         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
34337         args, not 2.
34338
34339 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
34340
34341         New module 'time', so that apps can include <time.h> as per
34342         POSIX and GNU instead of separate include files like time_r.h
34343         and timegm.h.  This implementation tries out a simpler approach
34344         for replacing decls in standard include files (as compared to
34345         the string module), somewhat as an experiment.
34346
34347         * config/srclist.txt: Comment out mktime.c for now.
34348         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
34349         since it doesn't apply any more.  Use generic wording instead.
34350         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
34351         'time'.
34352         * lib/time_.h, m4/time_h.m4, modules/time: New files.
34353         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
34354         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
34355         Don't include <sys/types.h>; no longer needed since we assume C89.
34356         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
34357         * lib/strftime.c: Likewise.
34358         * lib/time_r.c: Likewise.
34359         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
34360         * lib/nanosleep.c: Include <time.h> first, to check interface.
34361         * lib/strptime.c: Likewise.
34362         * lib/time_r.c: Likewise.
34363         * lib/timegm.c: Likewise.
34364         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
34365         needed.
34366         * lib/timegm.c: Don't include timegm.h; no longer needed.
34367         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
34368         time.h now handles any problems in that area.
34369         (struct timespec, nanosleep): Remove; time.h now arranges for these.
34370         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
34371         that time.h defines struct timespec.
34372         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
34373         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
34374         handles that.
34375         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
34376         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
34377         needed.  Set REPLACE_LOCALTIME.
34378         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
34379         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
34380         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
34381         nanosleep; time_h.m4 now does that.  Don't require
34382         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
34383         module handles this now.
34384         * modules/getdate (Depends-on): Remove timespec.  Add time.
34385         * modules/nanosleep (Depends-on): Likewise.
34386         * modules/stat-time (Depends-on): Likewise.
34387         * modules/nanosleep (Include): Include time.h, not timespec.h.
34388         * modules/strptime (Files): Remove lib/strptime.h.
34389         (Depends-on): Add extensions, time.
34390         (Include): Include time.h, not strptime.h.
34391         * modules/time_r (Files): Remove lib/time_r.h.
34392         (Depends-on): Add time.
34393         (Include): Include time.h, not time_r.h.
34394         * modules/timegm: Likewise.
34395         * modules/timespec (Description): Now does timespec-related decls
34396         of our own, instead of struct timespec itself.
34397         (Depends-on): Add time; remove extensions.
34398         (Maintainer): Add self.
34399         * modules/utimecmp (Depends-on): Add time; remove timespec.
34400         * modules/utimens (Depends-on): Likewise.
34401         * modules/xnanosleep (Depends-on): Likewise.
34402
34403 2007-02-11  Bruno Haible  <bruno@clisp.org>
34404
34405         * lib/c-strstr.c: Include allocsa.h.
34406         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
34407         * lib/c-strcasestr.c: Include allocsa.h.
34408         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
34409         * lib/strcasestr.c: Include allocsa.h.
34410         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
34411         * lib/mbsstr.c: Include allocsa.h.
34412         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
34413         allocsa/freesa instead of malloc/free.
34414         * lib/mbscasestr.c: Include allocsa.h.
34415         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
34416         allocsa/freesa instead of malloc/free.
34417         * modules/c-strstr (Depends-on): Add allocsa.
34418         * modules/c-strcasestr (Depends-on): Likewise.
34419         * modules/strcasestr (Depends-on): Likewise.
34420         * modules/mbsstr (Depends-on): Likewise.
34421         * modules/mbscasestr (Depends-on): Likewise.
34422
34423 2007-02-11  Bruno Haible  <bruno@clisp.org>
34424
34425         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
34426
34427         * modules/mbsspn-tests: New file.
34428         * tests/test-mbsspn.sh: New file.
34429         * tests/test-mbsspn.c: New file.
34430
34431 2007-02-11  Bruno Haible  <bruno@clisp.org>
34432
34433         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
34434
34435         * modules/mbspbrk-tests: New file.
34436         * tests/test-mbspbrk.sh: New file.
34437         * tests/test-mbspbrk.c: New file.
34438
34439 2007-02-11  Bruno Haible  <bruno@clisp.org>
34440
34441         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
34442         unneeded cast.
34443
34444         * modules/mbscspn-tests: New file.
34445         * tests/test-mbscspn.sh: New file.
34446         * tests/test-mbscspn.c: New file.
34447
34448 2007-02-11  Bruno Haible  <bruno@clisp.org>
34449
34450         * modules/mbscasecmp-tests: New file.
34451         * tests/test-mbscasecmp.sh: New file.
34452         * tests/test-mbscasecmp.c: New file.
34453
34454 2007-02-11  Bruno Haible  <bruno@clisp.org>
34455
34456         Ensure O(n) worst-case complexity of mbscasestr.
34457         * lib/mbscasestr.c: Include stdbool.h.
34458         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
34459         functions.
34460         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
34461         the bookkeeping indicates that it's worth it.
34462         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
34463
34464         * modules/mbscasestr-tests: New file.
34465         * tests/test-mbscasestr1.c: New file.
34466         * tests/test-mbscasestr2.sh: New file.
34467         * tests/test-mbscasestr2.c: New file.
34468         * tests/test-mbscasestr3.sh: New file.
34469         * tests/test-mbscasestr3.c: New file.
34470         * tests/test-mbscasestr4.sh: New file.
34471         * tests/test-mbscasestr4.c: New file.
34472         * m4/locale-tr.m4: New file.
34473
34474 2007-02-11  Bruno Haible  <bruno@clisp.org>
34475
34476         Ensure O(n) worst-case complexity of mbsstr.
34477         * lib/mbsstr.c: Include stdbool.h.
34478         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
34479         functions.
34480         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
34481         bookkeeping indicates that it's worth it.
34482         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
34483
34484         * modules/mbsstr-tests: New file.
34485         * tests/test-mbsstr1.c: New file.
34486         * tests/test-mbsstr2.sh: New file.
34487         * tests/test-mbsstr2.c: New file.
34488         * tests/test-mbsstr3.sh: New file.
34489         * tests/test-mbsstr3.c: New file.
34490         * m4/locale-fr.m4: New file.
34491
34492 2007-02-11  Bruno Haible  <bruno@clisp.org>
34493
34494         * lib/mbsrchr.c (mbsrchr): Fix bug.
34495
34496         * modules/mbsrchr-tests: New file.
34497         * tests/test-mbsrchr.sh: New file.
34498         * tests/test-mbsrchr.c: New file.
34499
34500 2007-02-11  Bruno Haible  <bruno@clisp.org>
34501
34502         * lib/mbschr.c (mbschr): Fix bug.
34503
34504         * modules/mbschr-tests: New file.
34505         * tests/test-mbschr.sh: New file.
34506         * tests/test-mbschr.c: New file.
34507         * m4/locale-zh.m4: New file.
34508
34509 2007-02-11  Bruno Haible  <bruno@clisp.org>
34510
34511         Support for copying multibyte string iterators.
34512         * lib/mbiter.h: Include <string.h>.
34513         (mbiter_multi_copy): New function.
34514         (mbi_copy): New macro.
34515         * lib/mbuiter.h: Include <string.h>.
34516         (mbuiter_multi_copy): New function.
34517         (mbui_copy): New macro.
34518
34519 2007-02-11  Bruno Haible  <bruno@clisp.org>
34520
34521         New module mbslen.
34522         * modules/mbslen: New file.
34523         * lib/mbslen.c: New file.
34524         * lib/string_.h (mbslen): New declaration.
34525         * m4/mbslen.m4: New file.
34526         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34527         GNULIB_MBSLEN.
34528         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
34529         * MODULES.html.sh (Internationalization functions): Add mbslen.
34530
34531 2007-02-11  Bruno Haible  <bruno@clisp.org>
34532
34533         Ensure O(n) worst-case complexity of strcasestr substitute.
34534         * lib/strcasestr.c: Include stdbool.h.
34535         (knuth_morris_pratt): New function.
34536         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
34537         bookkeeping indicates that it's worth it.
34538         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
34539
34540         * modules/strcasestr-tests: New file.
34541         * tests/test-strcasestr.c: New file.
34542
34543 2007-02-11  Bruno Haible  <bruno@clisp.org>
34544
34545         Ensure O(n) worst-case complexity of c_strcasestr.
34546         * lib/c-strcasestr.c: Include stdbool.h, string.h.
34547         (knuth_morris_pratt): New function.
34548         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
34549         the bookkeeping indicates that it's worth it.
34550         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
34551
34552         * modules/c-strcasestr-tests: New file.
34553         * tests/test-c-strcasestr.c: New file.
34554
34555 2007-02-11  Bruno Haible  <bruno@clisp.org>
34556
34557         Ensure O(n) worst-case complexity of c_strstr.
34558         * lib/c-strstr.c: Include stdbool.h, string.h.
34559         (knuth_morris_pratt): New function.
34560         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
34561         bookkeeping indicates that it's worth it.
34562         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
34563
34564         * lib/c-strstr.c: Complete rewrite for maintainability.
34565
34566         * modules/c-strstr-tests: New file.
34567         * tests/test-c-strstr.c: New file.
34568
34569 2007-02-11  Bruno Haible  <bruno@clisp.org>
34570
34571         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
34572         5.2.1 and earlier, whereby \055 was treated just like the range
34573         delimiter '-'.
34574         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
34575
34576 2007-02-08  Bruno Haible  <bruno@clisp.org>
34577
34578         * modules/regex (Depends-on): Add stdbool.
34579         Reported by Dalibor Topic <robilad@kaffe.org>.
34580
34581 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
34582
34583         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
34584         Prefer returning from main to exiting from it.
34585         Remove unnecessary parens after sizeof.
34586
34587 2007-02-05  Bruno Haible  <bruno@clisp.org>
34588
34589         New module mbssep.
34590         * modules/mbssep: New file.
34591         * lib/mbssep.c: New file.
34592         * lib/string_.h (strsep): Add a conditional link warning.
34593         (mbssep): New declaration.
34594         * m4/mbssep.m4: New file.
34595         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34596         GNULIB_MBSSEP.
34597         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
34598         * MODULES.html.sh (Internationalization functions): Add mbssep.
34599
34600 2007-02-05  Bruno Haible  <bruno@clisp.org>
34601
34602         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
34603         Optimize search in case of 1 delimiter.
34604
34605 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
34606
34607         * lib/acl.h: Include sys/types.h before sys/acl.h.
34608
34609 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
34610
34611         Merge upstream fix for glibc bugzilla #3957:
34612
34613         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
34614
34615         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
34616         bit for RE_HAT_LISTS_NOT_NEWLINE.
34617         (build_charclass_op): Remove bogus comment.
34618
34619 2007-02-05  Simon Josefsson  <simon@josefsson.org>
34620
34621         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
34622
34623 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
34624
34625         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
34626         * lib/memmem.c [!defined _LIBC]: Include config.h.
34627
34628 2007-02-04  Bruno Haible  <bruno@clisp.org>
34629
34630         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
34631         warning message.
34632
34633 2007-02-04  Bruno Haible  <bruno@clisp.org>
34634
34635         New module mbstok_r.
34636         * modules/mbstok_r: New file.
34637         * lib/mbstok_r.c: New file.
34638         * lib/string_.h (strtok_r): Change argument names to match the
34639         comments. Add a conditional link warning.
34640         (mbstok_r): New declaration.
34641         * m4/mbstok_r.m4: New file.
34642         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34643         GNULIB_MBSTOK_R.
34644         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
34645         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
34646
34647 2007-02-04  Bruno Haible  <bruno@clisp.org>
34648
34649         New module mbsspn.
34650         * modules/mbsspn: New file.
34651         * lib/mbsspn.c: New file.
34652         * lib/string_.h (strspn): Add a conditional link warning.
34653         (mbsspn): New declaration.
34654         * m4/mbsspn.m4: New file.
34655         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34656         GNULIB_MBSSPN.
34657         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
34658         * MODULES.html.sh (Internationalization functions): Add mbsspn.
34659
34660 2007-02-04  Bruno Haible  <bruno@clisp.org>
34661
34662         New module mbspbrk.
34663         * modules/mbspbrk: New file.
34664         * lib/mbspbrk.c: New file.
34665         * lib/string_.h (strpbrk): Add a conditional link warning.
34666         (mbspbrk): New declaration.
34667         * m4/mbspbrk.m4: New file.
34668         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34669         GNULIB_MBSPBRK.
34670         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
34671         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
34672
34673 2007-02-04  Bruno Haible  <bruno@clisp.org>
34674
34675         New module mbscspn.
34676         * modules/mbscspn: New file.
34677         * lib/mbscspn.c: New file.
34678         * lib/string_.h (strcspn): Add a conditional link warning.
34679         (mbscspn): New declaration.
34680         * m4/mbscspn.m4: New file.
34681         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34682         GNULIB_MBSCSPN.
34683         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
34684         * MODULES.html.sh (Internationalization functions): Add mbscspn.
34685
34686 2007-02-04  Bruno Haible  <bruno@clisp.org>
34687
34688         New module mbscasestr, reduced goal of strcasestr.
34689         * modules/mbscasestr: New file.
34690         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
34691         (mbscasestr): Renamed from strcasestr.
34692         * lib/strcasestr.c: Don't include mbuiter.h.
34693         (strcasestr): Remove support for multibyte locales.
34694         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
34695         Change the conditional link warning.
34696         (mbscasestr): New declaration.
34697         * m4/mbscasestr.m4: New file.
34698         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
34699         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
34700         REPLACE_STRCASESTR.
34701         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
34702         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
34703         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
34704         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
34705         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
34706         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
34707         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
34708         (Depends-on): Remove mbuiter.
34709         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
34710
34711 2007-02-04  Bruno Haible  <bruno@clisp.org>
34712
34713         Simplify handling of strncasecmp.
34714         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
34715         the conditional link warning.
34716         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
34717         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
34718         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
34719         * modules/strcase (configure.ac): Don't invoke
34720         gl_STRING_MODULE_INDICATOR.
34721         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
34722
34723 2007-02-04  Bruno Haible  <bruno@clisp.org>
34724
34725         New module mbscasecmp, reduced goal of strcasecmp.
34726         * modules/mbscasecmp: New file.
34727         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
34728         (mbscasecmp): Renamed from strcasecmp.
34729         * lib/strcasecmp.c: Don't include mbuiter.h.
34730         (strcasecmp): Remove support for multibyte locales.
34731         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
34732         Change the conditional link warning.
34733         (mbscasecmp): New declaration.
34734         * m4/mbscasecmp.m4: New file.
34735         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
34736         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
34737         REPLACE_STRCASECMP.
34738         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
34739         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34740         GNULIB_MBSCASECMP.
34741         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
34742         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
34743         * modules/strcase (Files): Remove m4/mbrtowc.m4.
34744         (Depends-on): Remove mbuiter.
34745         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
34746
34747 2007-02-04  Bruno Haible  <bruno@clisp.org>
34748
34749         New module mbsstr. Remove module strstr.
34750         * modules/mbsstr: New file.
34751         * modules/strstr: Remove file.
34752         * lib/mbsstr.c: Renamed from lib/strstr.c.
34753         (mbsstr): Renamed from strstr.
34754         * lib/string_.h (strstr): Remove declaration. Change the conditional
34755         link warning.
34756         (mbsstr): New declaration.
34757         * m4/mbsstr.m4: New file.
34758         * m4/strstr.m4: Remove file.
34759         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
34760         REPLACE_STRSTR.
34761         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
34762         Don't initialize GNULIB_STRSTR.
34763         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
34764         substitute GNULIB_STRSTR and REPLACE_STRSTR.
34765         * MODULES.html.sh (Internationalization functions): Add mbsstr.
34766         (Support for systems lacking ANSI C 89): Remove strstr.
34767
34768 2007-02-04  Bruno Haible  <bruno@clisp.org>
34769
34770         New module mbsrchr.
34771         * modules/mbsrchr: New file.
34772         * lib/mbsrchr.c: New file.
34773         * lib/string_.h (strrchr): Add a conditional link warning.
34774         (mbsrchr): New declaration.
34775         * m4/mbsrchr.m4: New file.
34776         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34777         GNULIB_MBSRCHR.
34778         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
34779         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
34780
34781 2007-02-04  Bruno Haible  <bruno@clisp.org>
34782
34783         New module mbschr.
34784         * modules/mbschr: New file.
34785         * lib/mbschr.c: New file.
34786         * lib/string_.h (strchr): Add a conditional link warning.
34787         (mbschr): New declaration.
34788         * m4/mbschr.m4: New file.
34789         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
34790         GNULIB_MBSCHR.
34791         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
34792         * MODULES.html.sh (Internationalization functions): Add mbschr.
34793
34794 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
34795
34796         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
34797
34798         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
34799
34800 2007-02-04  Bruno Haible  <bruno@clisp.org>
34801
34802         New module description section 'configure.ac-early'.
34803         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
34804         (func_get_autoconf_early_snippet): New function.
34805         (func_import, func_create_testdir): Use it. Remove special cases for
34806         modules 'extensions' and 'lock'.
34807         * modules/extensions (configure.ac-early): Require
34808         gl_USE_SYSTEM_EXTENSIONS.
34809         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
34810
34811 2007-02-04  Bruno Haible  <bruno@clisp.org>
34812
34813         Make use of gcj-4.3's -fsource and -ftarget option.
34814         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
34815         and if so try the options -fsource and -ftarget.
34816         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
34817         source_version, ftarget_option, target_version arguments.
34818         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
34819         (is_envjavac_oldgcj_14_14_usable): Renamed from
34820         is_envjavac_gcj_14_14_usable.
34821         (is_envjavac_oldgcj_14_13_usable): Renamed from
34822         is_envjavac_gcj_14_13_usable.
34823         (is_gcj_present): Update.
34824         (is_gcj_43, is_gcj43_usable): New functions.
34825         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
34826         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
34827         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
34828         try the options -fsource and -ftarget.
34829
34830 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
34831
34832         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
34833         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
34834         larger value.
34835
34836 2007-02-03  Jim Meyering  <jim@meyering.net>
34837
34838         Give tools a better chance to allocate space for very large buffers.
34839         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
34840
34841         Make pwd and readlink work also when run with an unreadable parent dir
34842         on systems with openat support.
34843         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
34844         provided getcwd function, even when we have openat support.
34845         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
34846
34847 2007-02-02  Bruno Haible  <bruno@clisp.org>
34848
34849         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
34850         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
34851         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
34852         portability problems if one of these functions is only used on specific
34853         platforms.
34854         Reported by Paul Eggert.
34855
34856 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
34857
34858         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
34859         is causing more trouble than it's curing.
34860         * lib/regex_internal.h (__mempcpy): Remove.
34861         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
34862         (and make the code a tad smaller to boot).
34863         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
34864
34865 2007-02-02  Jim Meyering  <jim@meyering.net>
34866
34867         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
34868         section, not in the Makefile.am: one.
34869
34870 2007-02-02  Eric Blake  <ebb9@byu.net>
34871
34872         * lib/strchrnul.c: Always include config.h first.
34873
34874         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
34875         gnulib strstr is not necessary here.
34876
34877 2007-02-02  Simon Josefsson  <simon@josefsson.org>
34878
34879         * m4/socklen.m4: Fix typo.
34880
34881 2007-02-02  Eric Blake  <ebb9@byu.net>
34882
34883         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
34884         * modules/netinet_in (Makefile.am): Likewise.
34885
34886 2007-02-01  Bruno Haible  <bruno@clisp.org>
34887
34888         * lib/string_.h (GL_LINK_WARNING): New macro.
34889         (strcasecmp, strstr, strcasestr): If provided by the system,
34890         conditionally define as a macro that leads to a warning instead of to
34891         an error.
34892         (strncasecmp): Conditionally define as a macro that leads to a warning.
34893
34894 2007-02-01  Karl Berry  <karl@gnu.org>
34895
34896         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
34897
34898 2007-02-01  Bruno Haible  <bruno@clisp.org>
34899
34900         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
34901         renamings.
34902
34903 2007-02-01  Eric Blake  <ebb9@byu.net>
34904
34905         * modules/regex (Depends-on): Revert dependence on mempcpy.
34906         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
34907         module's definition of mempcpy.
34908         Reported by Paul Eggert.
34909
34910 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
34911
34912         * lib/string_.h: If the gnulib module XYZ is not present, undefine
34913         the symbol XYZ before redefining it.  This fixes a problem with
34914         programs that don't use XYZ, when compiled on systems that define
34915         XYZ to something else.
34916
34917 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
34918
34919         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
34920         occurs when "mkdir -m foo" creates a setgid directory that is (1)
34921         writeable to group or other and (2) is intended to have a special
34922         mode bit that is set or cleared.  In such a case, the directory
34923         should be neither group- nor other-writeable until the special
34924         mode bits are right.
34925
34926 2007-01-31  Eric Blake  <ebb9@byu.net>
34927
34928         * modules/mountlist (Depends-on): Add strstr.
34929
34930         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
34931         bug.
34932         * modules/string (Makefile.am): Remove redundant replacement.
34933         * modules/regex (Depends-on): Add mempcpy.
34934
34935 2007-01-31  Bruno Haible  <bruno@clisp.org>
34936
34937         New module description field 'Link'.
34938         * gnulib-tool (func_usage): Document --extract-link-directive.
34939         (sed_extract_prog): Recognize 'Link' directive.
34940         (func_get_link_directive): New function.
34941         (func_import): Show summary of link directives.
34942         Handle --extract-link-directive option.
34943         * modules/acl (Link): New section.
34944         * modules/clock-time (Link): New section.
34945         * modules/euidaccess (Link): New section.
34946         * modules/gettext (Link): New section.
34947         * modules/iconv (Link): New section.
34948         * modules/lock (Link): New section.
34949         * modules/nanosleep (Link): New section.
34950         * modules/readline (Link): New section.
34951
34952 2007-01-27  Bruno Haible  <bruno@clisp.org>
34953
34954         Enforce the use of gnulib modules for unportable <string.h> functions.
34955         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
34956         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
34957         (gl_HEADER_STRING_H_BODY): Require it.
34958         * lib/string_.h: If the gnulib module XYZ is not present, redefine
34959         the symbol XYZ to one that gives a link error.
34960         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
34961         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
34962         * modules/mempcpy (configure.ac): Likewise.
34963         * modules/memrchr (configure.ac): Likewise.
34964         * modules/stpcpy (configure.ac): Likewise.
34965         * modules/stpncpy (configure.ac): Likewise.
34966         * modules/strcase (configure.ac): Likewise.
34967         * modules/strcasestr (configure.ac): Likewise.
34968         * modules/strchrnul (configure.ac): Likewise.
34969         * modules/strdup (configure.ac): Likewise.
34970         * modules/strndup (configure.ac): Likewise.
34971         * modules/strnlen (configure.ac): Likewise.
34972         * modules/strpbrk (configure.ac): Likewise.
34973         * modules/strsep (configure.ac): Likewise.
34974         * modules/strstr (configure.ac): Likewise.
34975         * modules/strtok_r (configure.ac): Likewise.
34976
34977 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
34978
34979         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
34980
34981 2007-01-30  Jim Meyering  <jim@meyering.net>
34982
34983         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
34984
34985 2007-01-29  Bruno Haible  <bruno@clisp.org>
34986
34987         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
34988         * lib/execute.c: Likewise.
34989         * lib/pipe.c: Likewise.
34990         * lib/printf-args.h: Likewise.
34991         * lib/printf-args.c: Likewise.
34992         * lib/printf-parse.c: Likewise.
34993         * lib/vasnprintf.c: Likewise.
34994
34995 2007-01-29  Eric Blake  <ebb9@byu.net>
34996
34997         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
34998         declaration.
34999
35000 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
35001
35002         * lib/strptime.h (strptime): Use 'restrict' for args where
35003         POSIX requires this.
35004         * lib/strptime.c (strptime): Likewise.
35005         Change license notice from LGPL to GPL, since gnulib-tool will
35006         change this as needed.
35007         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
35008         defined.
35009         Include "strptime.h" first, to check interface.
35010         Do not #undef _LIBC and _NL_CURRENT.
35011         Do not include <stdlib.h>; no longer needed.
35012         Include "time_r.h" and declare ptime_locale_status
35013         only if _LIBC is not defined.
35014         (__P): Remove unused macro.
35015         (match_string): Bring back glibc version, but use it only if _LIBC
35016         is defined.
35017         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
35018         Remove unnecessary assertion and abort() call.
35019         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
35020         * m4/strptime.m4: Fix serial number comment.
35021         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
35022         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
35023         (Depends-on): Add time_r.
35024
35025 2007-01-29  Bruno Haible  <bruno@clisp.org>
35026
35027         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35028         strptime.
35029         * modules/strptime (Depends-on): Add stdbool.
35030         * lib/strptime.h: Include <time.h> always. Add comments.
35031
35032 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
35033
35034         * modules/strptime: New file.
35035         * lib/strptime.h: New file.
35036         * lib/strptime.c: New file.
35037         * m4/strptime.m4: New file.
35038
35039 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
35040
35041         * MODULES.html.sh: New module mpsort.
35042         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
35043
35044         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
35045         a circularity problem with HP-UX ia64 reported by Bob Proulx in
35046         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
35047         All uses changed.
35048         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
35049         All uses changed.
35050         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
35051         to _Restrict_.
35052         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
35053         the parameter matches the prototype.
35054
35055 2007-01-28  Jim Meyering  <jim@meyering.net>
35056
35057         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
35058         sys/time.h here, reverting that part of the previous patch:
35059         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
35060
35061 2007-01-28  Bruno Haible  <bruno@clisp.org>
35062
35063         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
35064         value of $(SYS_TIME_H).
35065         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
35066         remove it conditionally, too. [added by Jim Meyering]
35067         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
35068         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
35069         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
35070         GETTIMEOFDAY_REPLACEMENT to 1.
35071
35072 2007-01-28  Bruno Haible  <bruno@clisp.org>
35073
35074         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
35075         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
35076         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
35077         Set UNISTD_H instead of UNISTD_H2.
35078         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
35079
35080 2007-01-28  Bruno Haible  <bruno@clisp.org>
35081
35082         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
35083         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
35084
35085 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35086
35087         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
35088         (func_create_testdir): Ensure C locale for `grep' and `tr'
35089         character ranges.
35090         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
35091         ACLOCAL_AMFLAGS parsing state machine.
35092
35093 2007-01-27  Bruno Haible  <bruno@clisp.org>
35094
35095         * modules/unistr/base: Update.
35096
35097 2007-01-27  Bruno Haible  <bruno@clisp.org>
35098
35099         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
35100         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
35101         * modules/unistr/u32-mbtouc-unsafe: Renamed from
35102         modules/unistr/u32-mbtouc.
35103         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
35104         * lib/unistr.h: Update.
35105         * lib/linebreak.c: Update.
35106         * modules/unistr/u32-mbtouc: Renamed from
35107         modules/unistr/u32-mbtouc-safe.
35108         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
35109         * lib/unistr.h: Update.
35110         * lib/unistr/u32-to-u8.c: Update.
35111         * lib/unistr/u32-to-u16.c: Update.
35112
35113 2007-01-27  Bruno Haible  <bruno@clisp.org>
35114
35115         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
35116         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
35117         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
35118         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
35119         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
35120         * modules/unistr/u16-mbtouc-unsafe: Renamed from
35121         modules/unistr/u16-mbtouc.
35122         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
35123         * lib/unistr.h: Update.
35124         * lib/linebreak.c: Update.
35125         * modules/linebreak: Update.
35126         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
35127         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
35128         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
35129         * modules/unistr/u16-mbtouc: Renamed from
35130         modules/unistr/u16-mbtouc-safe.
35131         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
35132         * lib/unistr.h: Update.
35133         * lib/unistr/u16-to-u8.c: Update.
35134         * modules/unistr/u16-to-u8: Update.
35135         * lib/unistr/u16-to-u32.c: Update.
35136         * modules/unistr/u16-to-u32: Update.
35137
35138 2007-01-27  Bruno Haible  <bruno@clisp.org>
35139
35140         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
35141         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
35142         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
35143         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
35144         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
35145         * modules/unistr/u8-mbtouc-unsafe: Renamed from
35146         modules/unistr/u8-mbtouc.
35147         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
35148         * lib/unistr.h: Update.
35149         * lib/striconveh.c: Update.
35150         * modules/striconveh: Update.
35151         * lib/linebreak.c: Update.
35152         * modules/linebreak: Update.
35153         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
35154         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
35155         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
35156         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
35157         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
35158         * lib/unistr.h: Update.
35159         * lib/striconveh.c: Update.
35160         * modules/striconveh: Update.
35161         * lib/unistr/u8-to-u16.c: Update.
35162         * modules/unistr/u8-to-u16: Update.
35163         * lib/unistr/u8-to-u32.c: Update.
35164         * modules/unistr/u8-to-u32: Update.
35165
35166 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35167
35168         Sync from Libtool.
35169         * lib/argz.c: Do not include strings.h nor memory.h, include
35170         string.h unconditionally.  Patch by Simon Josefsson.
35171
35172 2007-01-27  Bruno Haible  <bruno@clisp.org>
35173
35174         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
35175         from gl_HEADER_STRING_H_BODY.
35176         (gl_HEADER_STRING_H_BODY): Require it.
35177         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
35178         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
35179         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
35180         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
35181         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
35182         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
35183         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
35184         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
35185         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
35186         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
35187         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
35188         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
35189         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
35190         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
35191         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
35192
35193 2007-01-27  Bruno Haible  <bruno@clisp.org>
35194
35195         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
35196         check_PROGRAMS into noinst_PROGRAMS.
35197         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
35198         check_PROGRAMS in this case.
35199         (func_import): Set for_test to false.
35200         (func_create_testdir): Set for_test to true.
35201
35202 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
35203             Bruno Haible  <bruno@clisp.org>
35204
35205         * modules/strcasestr (Files): Remove lib/strcasestr.h.
35206         (Depends-on): Add string.
35207         (Includes): Use <string.h> instead of strcasestr.h.
35208         * modules/string (Makefile.am): Also substitute the value of
35209         REPLACE_STRCASESTR.
35210         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
35211         assume strcasestr is declared in <string.h> not <strings.h>. Also
35212         set REPLACE_STRCASESTR.
35213         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
35214         REPLACE_STRCASESTR.
35215         * lib/strcasestr.h: Remove file.
35216         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
35217         * lib/string_.h (strcasestr): New declaration.
35218
35219 2007-01-27  Bruno Haible  <bruno@clisp.org>
35220
35221         * lib/string_.h: Use 'extern'.
35222
35223 2007-01-27  Jim Meyering  <jim@meyering.net>
35224
35225         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
35226         of set-but-not-used local, "q".
35227
35228         * lib/mempcpy.c: Include <config.h> before <string.h>.
35229         This fixes a compilation error on HP-UX, due to the system's
35230         "restrict"-using mempcpy prototype.
35231
35232 2007-01-26  Bruno Haible  <bruno@clisp.org>
35233
35234         Small optimization.
35235         * lib/javacomp.c: Include c-strstr.h.
35236          (is_envjavac_gcj): Use c_strstr instead of strstr.
35237         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
35238
35239 2007-01-26  Bruno Haible  <bruno@clisp.org>
35240
35241         * MODULES.html.sh (Unicode string functions): Add the new modules.
35242
35243         * modules/uniconv/u32-strconv-to-locale: New file.
35244         * lib/uniconv/u32-strconv-to-locale.c: New file.
35245
35246         * modules/uniconv/u16-strconv-to-locale: New file.
35247         * lib/uniconv/u16-strconv-to-locale.c: New file.
35248
35249         * modules/uniconv/u8-strconv-to-locale: New file.
35250         * lib/uniconv/u8-strconv-to-locale.c: New file.
35251
35252         * modules/uniconv/u32-strconv-from-locale: New file.
35253         * lib/uniconv/u32-strconv-from-locale.c: New file.
35254
35255         * modules/uniconv/u16-strconv-from-locale: New file.
35256         * lib/uniconv/u16-strconv-from-locale.c: New file.
35257
35258         * modules/uniconv/u8-strconv-from-locale: New file.
35259         * lib/uniconv/u8-strconv-from-locale.c: New file.
35260
35261         * modules/uniconv/u32-strconv-to-enc: New file.
35262         * lib/uniconv/u32-strconv-to-enc.c: New file.
35263         * modules/uniconv/u32-strconv-to-enc-tests: New file.
35264         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
35265
35266         * modules/uniconv/u16-strconv-to-enc: New file.
35267         * lib/uniconv/u16-strconv-to-enc.c: New file.
35268         * lib/uniconv/u-strconv-to-enc.h: New file.
35269         * modules/uniconv/u16-strconv-to-enc-tests: New file.
35270         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
35271
35272         * modules/uniconv/u8-strconv-to-enc: New file.
35273         * lib/uniconv/u8-strconv-to-enc.c: New file.
35274         * modules/uniconv/u8-strconv-to-enc-tests: New file.
35275         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
35276
35277         * modules/uniconv/u32-strconv-from-enc: New file.
35278         * lib/uniconv/u32-strconv-from-enc.c: New file.
35279         * modules/uniconv/u32-strconv-from-enc-tests: New file.
35280         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
35281
35282         * modules/uniconv/u16-strconv-from-enc: New file.
35283         * lib/uniconv/u16-strconv-from-enc.c: New file.
35284         * modules/uniconv/u16-strconv-from-enc-tests: New file.
35285         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
35286
35287         * modules/uniconv/u8-strconv-from-enc: New file.
35288         * lib/uniconv/u8-strconv-from-enc.c: New file.
35289         * lib/uniconv/u-strconv-from-enc.h: New file.
35290         * modules/uniconv/u8-strconv-from-enc-tests: New file.
35291         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
35292
35293         * modules/uniconv/u32-conv-from-enc: New file.
35294         * lib/uniconv/u32-conv-from-enc.c: New file.
35295         * modules/uniconv/u32-conv-from-enc-tests: New file.
35296         * tests/uniconv/test-u32-conv-from-enc.c: New file.
35297
35298         * modules/uniconv/u16-conv-from-enc: New file.
35299         * lib/uniconv/u16-conv-from-enc.c: New file.
35300         * lib/uniconv/u-conv-from-enc.h: New file.
35301         * modules/uniconv/u16-conv-from-enc-tests: New file.
35302         * tests/uniconv/test-u16-conv-from-enc.c: New file.
35303
35304         * modules/uniconv/u8-conv-from-enc: New file.
35305         * lib/uniconv/u8-conv-from-enc.c: New file.
35306         * modules/uniconv/u8-conv-from-enc-tests: New file.
35307         * tests/uniconv/test-u8-conv-from-enc.c: New file.
35308
35309         * modules/uniconv/base: New file.
35310         * lib/uniconv.h: New file.
35311
35312 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
35313
35314         * doc/gnulib-tool.texi (Initial import): Update to match current
35315         behavior with strdup module.
35316         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
35317         * lib/memmem.h: Remove; all uses removed.  This is now done
35318         by <string.h>.
35319         * lib/mempcpy.h: Likewise.
35320         * lib/memrchr.h: Likewise.
35321         * lib/stpcpy.h: Likewise.
35322         * lib/stpncpy.h: Likewise.
35323         * lib/strcase.h: Likewise.
35324         * lib/strchrnul.h: Likewise.
35325         * lib/strdup.h: Likewise.
35326         * lib/strndup.h: Likewise.
35327         * lib/strnlen.h: Likewise.
35328         * lib/strpbrk.h: Likewise.
35329         * lib/strsep.h: Likewise.
35330         * lib/strstr.h: Likewise.
35331         * lib/strtok_r.h: Likewise.
35332         * lib/string_.h: New file.
35333         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
35334         Rely on <string.h> instead.
35335         * lib/canon-host.c: Likewise.
35336         * lib/chdir-long.c: Likewise.
35337         * lib/concatpath.c: Likewise.
35338         * lib/exclude.c: Likewise.
35339         * lib/fchdir.c: Likewise.
35340         * lib/getaddrinfo.c: Likewise.
35341         * lib/getcwd.c: Likewise.
35342         * lib/getsubopt.c: Likewise.
35343         * lib/glob.c: Likewise.
35344         * lib/hard-locale.c: Likewise.
35345         * lib/iconvme.c: Likewise.
35346         * lib/javacomp.c: Likewise.
35347         * lib/mempcpy.c: Likewise.
35348         * lib/memrchr.c: Likewise.
35349         * lib/regex_internal.h: Likewise.
35350         * lib/stpncpy.c: Likewise.
35351         * lib/strcasecmp.c: Likewise.
35352         * lib/strchrnul.c: Likewise.
35353         * lib/strdup.c: Likewise.
35354         * lib/striconv.c: Likewise.
35355         * lib/striconveh.c: Likewise.
35356         * lib/striconveha.c: Likewise.
35357         * lib/strncasecmp.c: Likewise.
35358         * lib/strndup.c: Likewise.
35359         * lib/strnlen.c: Likewise.
35360         * lib/strsep.c: Likewise.
35361         * lib/strstr.c: Likewise.
35362         * lib/strtok_r.c: Likewise.
35363         * lib/userspec.c: Likewise.
35364         * lib/w32spawn.h: Likewise.
35365         * lib/xstrndup.c: Likewise.
35366         * lib/mountlist.c (strstr): Remove decl.
35367         * m4/string_h.m4: New file.
35368         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
35369         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
35370         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
35371         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
35372         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
35373         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
35374         Set REPLACE_STRCASECMP if necessary.
35375         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
35376         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
35377         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
35378         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
35379         HAVE_DECL_STRDUP if necessary.
35380         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
35381         since gl_FUNC_STRNDUP does that now.
35382         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
35383         Check for decl here...
35384         (gl_PREREQ_STRNLEN): ... not here.
35385         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
35386         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
35387         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
35388         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
35389         necessary.
35390         * modules/string: New file.
35391         * modules/memmem (Files): Remove special-purpose include file.
35392         (Depends-on): Add string.
35393         (Include): Include <string.h>, not the removed file.
35394         * modules/mempcpy: Likewise.
35395         * modules/memrchr: Likewise.
35396         * modules/stpcpy: Likewise.
35397         * modules/stpncpy: Likewise.
35398         * modules/strcase: Likewise.
35399         * modules/strchrnul: Likewise.
35400         * modules/strdup: Likewise.
35401         * modules/strndup: Likewise.
35402         * modules/strnlen: Likewise.
35403         * modules/strpbrk: Likewise.
35404         * modules/strsep: Likewise.
35405         * modules/strstr: Likewise.
35406         * modules/strtok_r: Likewise.
35407         * tests/test-dirname.c: Don't include "strdup.h", since
35408         <string.h> now suffices.
35409         * tests/test-memmem.c: Don't include "memmem.h", since
35410         <string.h> now suffices.
35411
35412 2007-01-25  Bruno Haible  <bruno@clisp.org>
35413
35414         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
35415         *resultp is 0.
35416
35417         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
35418         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
35419         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
35420         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
35421
35422         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
35423         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
35424         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
35425         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
35426         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
35427         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
35428
35429 2007-01-24  Bruno Haible  <bruno@clisp.org>
35430
35431         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
35432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
35433         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
35434         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
35435         gl_FUNC_FTS_CORE.
35436         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
35437         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
35438         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
35439         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
35440         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
35441         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
35442         gl_FUNC_FCHOWNAT.
35443         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
35444         gl_FUNC_STRFTIME.
35445         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
35446         Reported by Ralf Wildenhues.
35447
35448 2007-01-24  Bruno Haible  <bruno@clisp.org>
35449
35450         Drop AC_REQUIRE calls that are redundant with the module dependencies.
35451         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
35452         gl_GETADDRINFO.
35453         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
35454         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
35455         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
35456
35457 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
35458
35459         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
35460         Don't use 'exit'; just return from 'main'.
35461         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
35462
35463         * lib/fnmatch_.h: Readjust white space and comments to match
35464         glibc, to avoid spurious diffs.
35465
35466 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35467
35468         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
35469         2004-12-01 change by Jakub Jelinek, since this code won't compile
35470         if !LIBC.  Problem reported by Bob Proulx.
35471
35472 2007-01-23  Bruno Haible  <bruno@clisp.org>
35473
35474         * lib/striconveh.c: Include c-strcaseeq.h.
35475         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
35476         * modules/striconveh (Depends-on): Add c-strcaseeq.
35477
35478 2007-01-23  Bruno Haible  <bruno@clisp.org>
35479
35480         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
35481
35482         * modules/c-strcaseeq: New file.
35483         * lib/c-strcaseeq.h: New file.
35484
35485         * modules/streq: New file.
35486         * lib/streq.h: New file.
35487
35488 2007-01-23  Bruno Haible  <bruno@clisp.org>
35489
35490         * modules/striconveha-tests: New file.
35491         * tests/test-striconveha.c: New file.
35492
35493         * lib/striconveha.h: Include <stdbool.h>.
35494         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
35495         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
35496         (mem_iconveha_notranslit): Renamed from mem_iconveha.
35497         (mem_iconveha): New function.
35498         (str_iconveha_notranslit): Renamed from str_iconveha.
35499         (str_iconveha): New function.
35500         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
35501         c-strcase.
35502
35503 2007-01-23  Bruno Haible  <bruno@clisp.org>
35504
35505         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
35506         encodings without forgiving before trying any encoding with handler.
35507         (str_iconveha): Try all encodings without forgiving before trying any
35508         encoding with handler.
35509
35510 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35511
35512         Import the following changes from libc.
35513
35514         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
35515
35516         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
35517
35518         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
35519
35520         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
35521         normal_bracket label.
35522
35523         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
35524
35525         [BZ #361]
35526         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
35527         to normal_bracket after fetching the next character.
35528
35529 2007-01-22  Bruno Haible  <bruno@clisp.org>
35530
35531         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
35532         argument.
35533         * lib/striconveh.c (iconv_carefully_1): New function.
35534         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
35535         argument.
35536         (str_cd_iconveh): Update.
35537         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
35538         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
35539         * tests/test-striconveh.c (MAGIC): New macro.
35540         (new_offsets): New function.
35541         (main): Test call with and without offsets.
35542
35543 2007-01-22  Bruno Haible  <bruno@clisp.org>
35544
35545         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
35546         * modules/sys_select (Makefile.am): Likewise.
35547         * modules/sys_socket (Makefile.am): Likewise.
35548         * modules/sys_time (Makefile.am): Likewise.
35549
35550 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
35551
35552         * modules/gettimeofday (License): Change from GPL to LGPL, since
35553         gettimeofday is a library function.
35554
35555 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35556
35557         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
35558
35559 2007-01-21  Bruno Haible  <bruno@clisp.org>
35560
35561         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
35562
35563 2007-01-21  Bruno Haible  <bruno@clisp.org>
35564
35565         * modules/striconveha: New file.
35566         * lib/striconveha.h: New file.
35567         * lib/striconveha.c: New file.
35568         * MODULES.html.sh (Internationalization functions): Add striconveha.
35569         * lib/striconv.c (str_iconv): Optimize the case of an empty input
35570         string.
35571         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
35572
35573 2007-01-21  Bruno Haible  <bruno@clisp.org>
35574
35575         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
35576         * lib/striconveh.c (str_iconveh): Likewise.
35577
35578 2007-01-21  Bruno Haible  <bruno@clisp.org>
35579
35580         * lib/striconveh.h (mem_iconveh): New declaration.
35581         * lib/striconveh.c (mem_iconveh): New function.
35582         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
35583
35584 2007-01-21  Bruno Haible  <bruno@clisp.org>
35585
35586         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
35587
35588         * lib/striconveh.h (mem_cd_iconveh): Change specification.
35589         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
35590         original result buffer.
35591         (str_cd_iconveh): Update.
35592         * tests/test-striconveh.c (main): Update.
35593
35594         * lib/striconv.h (mem_cd_iconv): Change specification.
35595         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
35596         result buffer.
35597         (str_cd_iconv): Update.
35598         * tests/test-striconv.c (main): Update.
35599
35600 2007-01-21  Bruno Haible  <bruno@clisp.org>
35601
35602         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
35603
35604 2007-01-20  Jim Meyering  <jim@meyering.net>
35605
35606         * lib/userspec.c (parse_with_separator): If a user or group string
35607         starts with "+", skip the corresponding name-to-ID look-up, since
35608         such a look-up must fail: user and group names may not include "+".
35609
35610 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
35611
35612         * lib/poll.c: Include sys/time.h and time.h unconditionally,
35613         since we now assume the sys_time module.
35614         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
35615         check for sys/time.h; no longer needed.
35616         * modules/poll (Depends-on): Depend on sys_time.
35617
35618 2007-01-18  Bruno Haible  <bruno@clisp.org>
35619
35620         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
35621         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
35622
35623         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
35624         gettimeofday.
35625
35626         * tests/test-gettimeofday.c: Include <time.h>.
35627         (dummy): Remove variable.
35628
35629         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
35630         gl_HEADER_SYS_TIME_H.
35631         (gl_HEADER_SYS_TIME_H): New macro.
35632
35633         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
35634         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35635         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
35636         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
35637         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35638         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
35639         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
35640         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35641         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
35642         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
35643         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35644
35645         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
35646         last change; it caused a compilation error when cross-compiling to
35647         Cygwin.
35648
35649 2007-01-18  Jim Meyering  <jim@meyering.net>
35650
35651         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
35652         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
35653         than the race-prone "test -d sys || mkdir sys".
35654         (configure.ac): Use AC_PROG_MKDIR_P.
35655         * modules/sys_select: Likewise.
35656         * modules/sys_socket: Likewise.
35657         * modules/sys_time: Likewise.
35658
35659 2007-01-18  Eric Blake  <ebb9@byu.net>
35660
35661         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
35662         replace gettimeofday.
35663         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
35664         name, to avoid infinite recursion.
35665
35666 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
35667
35668         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
35669         module sys_time.
35670         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
35671         assume timespec.h defines struct timeval.
35672         * lib/settime.c: Likewise.
35673         * lib/utimens.c: Likewise.
35674         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
35675         since we now assume the gettimeofday module.
35676         * lib/tempname.c (__gen_tempname): Likewise.
35677         * lib/gettimeofday.h: Remove.
35678         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
35679         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
35680         Include <time.h>, for 'time()'.
35681         (localtime_buffer_addr): Also use this workaround if
35682         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
35683         to simplify the uses.  All uses changed.
35684         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
35685         that #undef is inside {}, and 'const' follows type name consistently.
35686         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
35687         (gettimeofday): Do not use the maximum possible value for
35688         tv->tv_usec, since that might break usages other than ls.c.
35689         Instead, we'll leave ls.c alone.  This undoes today's patch
35690         by Bruno.  Add a compile-time warning for 1s-clock resolution;
35691         we've never observed the problem but might as well keep the
35692         canary.
35693         * lib/nanosleep.c: Include timespec.h first, for interface check.
35694         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
35695         now assume the sys_time module.
35696         * lib/tempname.c: Likewise.
35697         * lib/timespec.h: Likewise.
35698         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
35699         needed.
35700         * lib/strftime.c: Likewise.
35701         * lib/timespec.h: Likewise.
35702         * lib/posixtm.c: Include posixtm.h first, for interface check.
35703         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
35704         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
35705         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
35706         * lib/sys_time_.h: New file.
35707         * lib/timespec.h (struct timespec): Use long int, not long.
35708         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
35709         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
35710         Remove obsolescent call to AC_HEADER_TIME.
35711         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
35712         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
35713         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
35714         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
35715         Likewise.
35716         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
35717         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
35718         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
35719         into the sys_time module.  Check for gettimeofday just once.
35720         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
35721         for gettimeofday signature to just check the signature.  Merely
35722         compile it, since linking doesn't test signature.  Improve test for
35723         whether gettimeofday.o is actually needed.
35724         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
35725         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
35726         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
35727         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35728         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
35729         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
35730         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
35731         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
35732         than worrying about sys/time.h.
35733         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
35734         Don't bother worrying about TIME_WITH_SYS_TIME.
35735         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
35736         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
35737         * m4/sys_time_h.m4: New file.
35738         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
35739         Don't include sys/time.h.  Return from main rather than exiting.
35740         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
35741         all uses changed.
35742         * modules/gethrxtime (Depends-on): Add sys_time.
35743         * modules/gettime (Depends-on): Likewise.
35744         * modules/gettimeofday (Depends-on): Likewise.
35745         * modules/nanosleep (Depends-on): Likewise.
35746         * modules/settime (Depends-on): Likewise.
35747         * modules/tempname (Depends-on): Likewise.
35748         * modules/utimens (Depends-on): Likewise.
35749         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
35750         (Include:) Change back to <sys/time.h>.
35751         (Maintainer:) Add self.
35752         * modules/sys_time: New file.
35753         * modules/tempname (Depends-on): Add gettimeofday.
35754         * tests/test-gettimeofday.c: Include <sys/time.h>
35755         rather than gettimeofday.h.
35756
35757 2007-01-17  Bruno Haible  <bruno@clisp.org>
35758
35759         * gnulib-tool (func_get_license): Revert last patch. Instead, let
35760         the license default to GPL.
35761         (func_create_testdir): Don't complain if a module is LGPL and its
35762         tests module depends on GPLed modules.
35763
35764 2007-01-17  Bruno Haible  <bruno@clisp.org>
35765
35766         * lib/gettimeofday.c (gettimeofday): Add code for the case
35767         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
35768         maximum possible value for tv->tv_usec, rather than the minimum one.
35769
35770 2005-10-08  Martin Lambers  <marlam@marlam.de>
35771 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
35772 2007-01-16  Bruno Haible  <bruno@clisp.org>
35773
35774         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
35775         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
35776         gl_FUNC_GETTIMEOFDAY.
35777         (Include): Add gettimeofday.h.
35778         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
35779         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
35780         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
35781         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
35782         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
35783         * lib/gettimeofday.h: New file.
35784         * lib/gettimeofday.c: Include <sys/timeb.h>.
35785         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
35786         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
35787         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
35788         fall back on time().
35789
35790         * tests/test-gettimeofday.c: New file.
35791         * modules/gettimeofday-tests: New file.
35792
35793 2007-01-16  Eric Blake  <ebb9@byu.net>
35794
35795         * modules/fnmatch (Depends-on): Depend on wchar.
35796         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
35797         * m4/fnmatch.m4: Likewise.
35798         * modules/mbchar (Makefile.am): Assume <wchar.h>.
35799         * m4/mbchar.m4: Likewise.
35800         * modules/mbswidth (Depends-on): Depend on wchar.
35801         * lib/mbswidth.c: Assume <wchar.h>.
35802         * m4/mbswidth.m4: Likewise.
35803         * modules/quotearg (Depends-on): Depend on wchar.
35804         * lib/quotearg.c: Assume <wchar.h>.
35805         * m4/quotearg.m4: Likewise.
35806         * modules/regex (Depends-on): Depend on wchar.
35807         * lib/regex_internal.h: Assume <wchar.h>.
35808         * m4/regex.m4: Likewise.
35809         * modules/stdint (Depends-on): Depend on wchar.
35810         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
35811         * m4/stdint.m4: Likewise.
35812         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
35813         * modules/strftime (Depends-on): Depend on wchar.
35814         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
35815         * modules/strtol (Depends-on): Depend on wchar.
35816         * lib/strtol.c: Assume <wchar.h>.
35817         * modules/wcwidth (Depends-on): Depend on wchar.
35818         * lib/wcwidth.h: Assume <wchar.h>.
35819         * m4/wcwidth.m4: Likewise.
35820
35821 2007-01-16  Bruno Haible  <bruno@clisp.org>
35822
35823         * modules/csharpexec-script: New, created from...
35824         * modules/csharpexec: ... this.
35825
35826 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
35827
35828         * modules/javaexec-script: New, created from...
35829         * modules/javaexec: ... this.
35830
35831 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35832
35833         * modules/poll (Dependencies): Add sys_select.
35834
35835 2007-01-15  Jim Meyering  <jim@meyering.net>
35836
35837         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
35838         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
35839         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
35840         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
35841
35842 2007-01-15  Bruno Haible  <bruno@clisp.org>
35843
35844         * modules/striconveh: New file.
35845         * lib/striconveh.h: New file.
35846         * lib/striconveh.c: New file.
35847         * MODULES.html.sh (Internationalization functions): Add striconveh.
35848
35849         * modules/striconveh-tests: New file.
35850         * tests/test-striconveh.c: New file.
35851
35852 2007-01-15  Bruno Haible  <bruno@clisp.org>
35853
35854         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
35855         not from GNU libiconv or GNU libc.
35856
35857 2007-01-15  Bruno Haible  <bruno@clisp.org>
35858
35859         * doc/gnulib-intro.texi (Copyright): Explain the different license
35860         terms for module descriptions, autoconf macros, tests, documentation.
35861
35862 2007-01-14  Bruno Haible  <bruno@clisp.org>
35863
35864         * modules/striconv-tests: New file.
35865         * tests/test-striconv.c: New file.
35866
35867 2007-01-14  Bruno Haible  <bruno@clisp.org>
35868
35869         * modules/iconv-tests: New file.
35870         * tests/test-iconv.c: New file.
35871
35872 2007-01-14  Bruno Haible  <bruno@clisp.org>
35873
35874         * gnulib-tool (func_get_license): For test modules, use the license of
35875         the main module.
35876
35877 2007-01-14  Bruno Haible  <bruno@clisp.org>
35878
35879         * modules/iconv (Include): Clarify that <iconv.h> can only be included
35880         if iconv is found to exist.
35881
35882 2007-01-14  Bruno Haible  <bruno@clisp.org>
35883
35884         * modules/c-ctype-tests: New file.
35885         * tests/test-c-ctype.c: New file.
35886
35887 2007-01-14  Bruno Haible  <bruno@clisp.org>
35888
35889         * modules/binary-io-tests: New file.
35890         * tests/test-binary-io.sh: New file.
35891         * tests/test-binary-io.c: New file.
35892
35893 2007-01-14  Bruno Haible  <bruno@clisp.org>
35894
35895         * modules/array-oset-tests: New file.
35896         * tests/test-array_oset.c: New file.
35897
35898 2007-01-14  Bruno Haible  <bruno@clisp.org>
35899
35900         * modules/array-list-tests: New file.
35901         * tests/test-array_list.c: New file.
35902
35903 2007-01-14  Bruno Haible  <bruno@clisp.org>
35904
35905         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
35906         and make.
35907         Reported by Simon Josefsson in
35908         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
35909
35910 2007-01-14  Bruno Haible  <bruno@clisp.org>
35911
35912         * modules/allocsa-tests: New file.
35913         * tests/test-allocsa.c: New file.
35914
35915 2007-01-14  Bruno Haible  <bruno@clisp.org>
35916
35917         * modules/fchdir (Depends-on): Add absolute-header.
35918         * modules/unistd (Depends-on): Likewise.
35919
35920 2006-12-30  Bruno Haible  <bruno@clisp.org>
35921
35922         * modules/fchdir: New file.
35923         * modules/unistd (Files): Add lib/unistd_.h.
35924         (Makefile.am): Generate unistd.h from unistd_.h.
35925         * lib/fchdir.c: New file.
35926         * lib/dirent_.h: New file.
35927         * lib/unistd_.h: New file.
35928         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
35929         * m4/fchdir.m4: New file.
35930         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
35931         (gl_HEADER_UNISTD): Invoke it.
35932         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
35933         function.
35934         * lib/backupfile.c (opendir, closedir): Undefine.
35935         * lib/chown.c (open, close): Undefine.
35936         * lib/clean-temp.c (open, close): Undefine.
35937         * lib/copy-file.c (open, close): Undefine.
35938         * lib/execute.c (open, close): Undefine.
35939         * lib/fsusage.c (open, close): Undefine.
35940         * lib/gc-gnulib.c (open, close): Undefine.
35941         * lib/getcwd.c (opendir, closedir): Undefine.
35942         * lib/glob.c (opendir, closedir): Undefine.
35943         * lib/javacomp.c (open, close): Undefine.
35944         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
35945         * lib/openat-proc.c (open, close): Undefine.
35946         * lib/pagealign_alloc.c (open, close): Undefine.
35947         * lib/pipe.c (open, close): Undefine.
35948         * lib/progreloc.c (open, close): Undefine.
35949         * lib/savedir.c (opendir, closedir): Undefine.
35950         * lib/utime.c (open, close): Undefine.
35951         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
35952
35953 2007-01-10  Bruno Haible  <bruno@clisp.org>
35954
35955         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
35956
35957 2007-01-12  Eric Blake  <ebb9@byu.net>
35958
35959         Provide a robust <wchar.h>.  Further simplifications are now
35960         possible in other modules, but not included here.
35961         * modules/wchar: New module.
35962         * m4/wchar.m4: New file.
35963         * lib/wchar_.h: Likewise.
35964         * modules/mbchar (Depends-on): Depend on wchar, as the first use
35965         of the new module.
35966         * MODULES.html.sh (Extended multibyte and wide character utilities):
35967         New section.
35968
35969 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
35970
35971         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
35972         to a reasonable default for memory allocation.
35973         (xreadlink): Don't allocate a huge buffer, to work around a buggy
35974         file system that reports garbage st_size values for symlinks.
35975         Problem reported by Liyang Hu.
35976
35977 2007-01-11  Simon Josefsson  <simon@josefsson.org>
35978
35979         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
35980         Emacs .#* auto-save files).
35981
35982 2007-01-11  Bruno Haible  <bruno@clisp.org>
35983
35984         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
35985         directory.
35986
35987 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35988
35989         Use @...@ consistently in lib/wctype_.h.
35990         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
35991         on it being set to 1 or 0.
35992         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
35993         go back to AC_SUBSTing it.
35994         * modules/wctype (Makefile.am): Undo previous change.
35995
35996 2007-01-10  Eric Blake  <ebb9@byu.net>
35997
35998         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
35999         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
36000         * modules/wctype (Makefile.am): Likewise.
36001         Reported by Chris McGuire.
36002
36003 2007-01-10  Jim Meyering  <jim@meyering.net>
36004
36005         fts.c: a small readability/maintainability improvement
36006         * lib/fts.c (fts_read): Make this code slightly more readable and
36007         maintainable by hoisting the "sp->fts_cur = p" assignments to
36008         immediately follow the statements that set P.  Derived from
36009         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
36010
36011 2007-01-10  Eric Blake  <ebb9@byu.net>
36012
36013         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
36014         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
36015         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
36016         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
36017         Reported by Chris McGuire.
36018
36019 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36020
36021         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
36022         in sed script.
36023
36024 2007-01-09  Bruno Haible  <bruno@clisp.org>
36025
36026         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
36027         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
36028         variables.
36029         (func_module): Use them.
36030
36031 2007-01-09  Bruno Haible  <bruno@clisp.org>
36032
36033         * modules/unistr/base: New file.
36034         * lib/unistr.h: New file.
36035
36036         * modules/unistr/u8-to-u16: New file.
36037         * lib/unistr/u8-to-u16.c: New file.
36038
36039         * modules/unistr/u8-to-u32: New file.
36040         * lib/unistr/u8-to-u32.c: New file.
36041
36042         * modules/unistr/u16-to-u8: New file.
36043         * lib/unistr/u16-to-u8.c: New file.
36044
36045         * modules/unistr/u16-to-u32: New file.
36046         * lib/unistr/u16-to-u32.c: New file.
36047
36048         * modules/unistr/u32-to-u8: New file.
36049         * lib/unistr/u32-to-u8.c: New file.
36050
36051         * modules/unistr/u32-to-u16: New file.
36052         * lib/unistr/u32-to-u16.c: New file.
36053
36054         * modules/unistr/u8-check: New file.
36055         * modules/unistr/u16-check: New file.
36056         * modules/unistr/u32-check: New file.
36057         * lib/unistr/u8-check.c: New file.
36058         * lib/unistr/u16-check.c: New file.
36059         * lib/unistr/u32-check.c: New file.
36060
36061         * modules/unistr/u8-chr: New file.
36062         * modules/unistr/u16-chr: New file.
36063         * modules/unistr/u32-chr: New file.
36064         * lib/unistr/u8-chr.c: New file.
36065         * lib/unistr/u16-chr.c: New file.
36066         * lib/unistr/u32-chr.c: New file.
36067
36068         * modules/unistr/u8-cmp: New file.
36069         * modules/unistr/u16-cmp: New file.
36070         * modules/unistr/u32-cmp: New file.
36071         * lib/unistr/u8-cmp.c: New file.
36072         * lib/unistr/u16-cmp.c: New file.
36073         * lib/unistr/u32-cmp.c: New file.
36074
36075         * modules/unistr/u8-cpy: New file.
36076         * modules/unistr/u16-cpy: New file.
36077         * modules/unistr/u32-cpy: New file.
36078         * lib/unistr/u8-cpy.c: New file.
36079         * lib/unistr/u16-cpy.c: New file.
36080         * lib/unistr/u32-cpy.c: New file.
36081         * lib/unistr/u-cpy.h: New file.
36082
36083         * modules/unistr/u8-cpy-alloc: New file.
36084         * modules/unistr/u16-cpy-alloc: New file.
36085         * modules/unistr/u32-cpy-alloc: New file.
36086         * lib/unistr/u8-cpy-alloc.c: New file.
36087         * lib/unistr/u16-cpy-alloc.c: New file.
36088         * lib/unistr/u32-cpy-alloc.c: New file.
36089         * lib/unistr/u-cpy-alloc.h: New file.
36090
36091         * modules/unistr/u8-endswith: New file.
36092         * modules/unistr/u16-endswith: New file.
36093         * modules/unistr/u32-endswith: New file.
36094         * lib/unistr/u8-endswith.c: New file.
36095         * lib/unistr/u16-endswith.c: New file.
36096         * lib/unistr/u32-endswith.c: New file.
36097         * lib/unistr/u-endswith.h: New file.
36098
36099         * modules/unistr/u8-mblen: New file.
36100         * modules/unistr/u16-mblen: New file.
36101         * modules/unistr/u32-mblen: New file.
36102         * lib/unistr/u8-mblen.c: New file.
36103         * lib/unistr/u16-mblen.c: New file.
36104         * lib/unistr/u32-mblen.c: New file.
36105
36106         * modules/unistr/u8-mbtouc: New file.
36107         * modules/unistr/u16-mbtouc: New file.
36108         * modules/unistr/u32-mbtouc: New file.
36109         * lib/unistr/u8-mbtouc.c: New file.
36110         * lib/unistr/u16-mbtouc.c: New file.
36111         * lib/unistr/u32-mbtouc.c: New file.
36112
36113         * modules/unistr/u8-mbtouc-safe: New file.
36114         * modules/unistr/u16-mbtouc-safe: New file.
36115         * modules/unistr/u32-mbtouc-safe: New file.
36116         * lib/unistr/u8-mbtouc-safe.c: New file.
36117         * lib/unistr/u16-mbtouc-safe.c: New file.
36118         * lib/unistr/u32-mbtouc-safe.c: New file.
36119
36120         * modules/unistr/u8-move: New file.
36121         * modules/unistr/u16-move: New file.
36122         * modules/unistr/u32-move: New file.
36123         * lib/unistr/u8-move.c: New file.
36124         * lib/unistr/u16-move.c: New file.
36125         * lib/unistr/u32-move.c: New file.
36126         * lib/unistr/u-move.h: New file.
36127
36128         * modules/unistr/u8-next: New file.
36129         * modules/unistr/u16-next: New file.
36130         * modules/unistr/u32-next: New file.
36131         * lib/unistr/u8-next.c: New file.
36132         * lib/unistr/u16-next.c: New file.
36133         * lib/unistr/u32-next.c: New file.
36134
36135         * modules/unistr/u8-prev: New file.
36136         * modules/unistr/u16-prev: New file.
36137         * modules/unistr/u32-prev: New file.
36138         * lib/unistr/u8-prev.c: New file.
36139         * lib/unistr/u16-prev.c: New file.
36140         * lib/unistr/u32-prev.c: New file.
36141
36142         * modules/unistr/u8-set: New file.
36143         * modules/unistr/u16-set: New file.
36144         * modules/unistr/u32-set: New file.
36145         * lib/unistr/u8-set.c: New file.
36146         * lib/unistr/u16-set.c: New file.
36147         * lib/unistr/u32-set.c: New file.
36148         * lib/unistr/u-set.h: New file.
36149
36150         * modules/unistr/u8-startswith: New file.
36151         * modules/unistr/u16-startswith: New file.
36152         * modules/unistr/u32-startswith: New file.
36153         * lib/unistr/u8-startswith.c: New file.
36154         * lib/unistr/u16-startswith.c: New file.
36155         * lib/unistr/u32-startswith.c: New file.
36156         * lib/unistr/u-startswith.h: New file.
36157
36158         * modules/unistr/u8-stpcpy: New file.
36159         * modules/unistr/u16-stpcpy: New file.
36160         * modules/unistr/u32-stpcpy: New file.
36161         * lib/unistr/u8-stpcpy.c: New file.
36162         * lib/unistr/u16-stpcpy.c: New file.
36163         * lib/unistr/u32-stpcpy.c: New file.
36164         * lib/unistr/u-stpcpy.h: New file.
36165
36166         * modules/unistr/u8-stpncpy: New file.
36167         * modules/unistr/u16-stpncpy: New file.
36168         * modules/unistr/u32-stpncpy: New file.
36169         * lib/unistr/u8-stpncpy.c: New file.
36170         * lib/unistr/u16-stpncpy.c: New file.
36171         * lib/unistr/u32-stpncpy.c: New file.
36172         * lib/unistr/u-stpncpy.h: New file.
36173
36174         * modules/unistr/u8-strcat: New file.
36175         * modules/unistr/u16-strcat: New file.
36176         * modules/unistr/u32-strcat: New file.
36177         * lib/unistr/u8-strcat.c: New file.
36178         * lib/unistr/u16-strcat.c: New file.
36179         * lib/unistr/u32-strcat.c: New file.
36180         * lib/unistr/u-strcat.h: New file.
36181
36182         * modules/unistr/u8-strchr: New file.
36183         * modules/unistr/u16-strchr: New file.
36184         * modules/unistr/u32-strchr: New file.
36185         * lib/unistr/u8-strchr.c: New file.
36186         * lib/unistr/u16-strchr.c: New file.
36187         * lib/unistr/u32-strchr.c: New file.
36188
36189         * modules/unistr/u8-strcmp: New file.
36190         * modules/unistr/u16-strcmp: New file.
36191         * modules/unistr/u32-strcmp: New file.
36192         * lib/unistr/u8-strcmp.c: New file.
36193         * lib/unistr/u16-strcmp.c: New file.
36194         * lib/unistr/u32-strcmp.c: New file.
36195
36196         * modules/unistr/u8-strcpy: New file.
36197         * modules/unistr/u16-strcpy: New file.
36198         * modules/unistr/u32-strcpy: New file.
36199         * lib/unistr/u8-strcpy.c: New file.
36200         * lib/unistr/u16-strcpy.c: New file.
36201         * lib/unistr/u32-strcpy.c: New file.
36202         * lib/unistr/u-strcpy.h: New file.
36203
36204         * modules/unistr/u8-strcspn: New file.
36205         * modules/unistr/u16-strcspn: New file.
36206         * modules/unistr/u32-strcspn: New file.
36207         * lib/unistr/u8-strcspn.c: New file.
36208         * lib/unistr/u16-strcspn.c: New file.
36209         * lib/unistr/u32-strcspn.c: New file.
36210         * lib/unistr/u-strcspn.h: New file.
36211
36212         * modules/unistr/u8-strdup: New file.
36213         * modules/unistr/u16-strdup: New file.
36214         * modules/unistr/u32-strdup: New file.
36215         * lib/unistr/u8-strdup.c: New file.
36216         * lib/unistr/u16-strdup.c: New file.
36217         * lib/unistr/u32-strdup.c: New file.
36218         * lib/unistr/u-strdup.h: New file.
36219
36220         * modules/unistr/u8-strlen: New file.
36221         * modules/unistr/u16-strlen: New file.
36222         * modules/unistr/u32-strlen: New file.
36223         * lib/unistr/u8-strlen.c: New file.
36224         * lib/unistr/u16-strlen.c: New file.
36225         * lib/unistr/u32-strlen.c: New file.
36226         * lib/unistr/u-strlen.h: New file.
36227
36228         * modules/unistr/u8-strmblen: New file.
36229         * modules/unistr/u16-strmblen: New file.
36230         * modules/unistr/u32-strmblen: New file.
36231         * lib/unistr/u8-strmblen.c: New file.
36232         * lib/unistr/u16-strmblen.c: New file.
36233         * lib/unistr/u32-strmblen.c: New file.
36234
36235         * modules/unistr/u8-strmbtouc: New file.
36236         * modules/unistr/u16-strmbtouc: New file.
36237         * modules/unistr/u32-strmbtouc: New file.
36238         * lib/unistr/u8-strmbtouc.c: New file.
36239         * lib/unistr/u16-strmbtouc.c: New file.
36240         * lib/unistr/u32-strmbtouc.c: New file.
36241
36242         * modules/unistr/u8-strncat: New file.
36243         * modules/unistr/u16-strncat: New file.
36244         * modules/unistr/u32-strncat: New file.
36245         * lib/unistr/u8-strncat.c: New file.
36246         * lib/unistr/u16-strncat.c: New file.
36247         * lib/unistr/u32-strncat.c: New file.
36248         * lib/unistr/u-strncat.h: New file.
36249
36250         * modules/unistr/u8-strncmp: New file.
36251         * modules/unistr/u16-strncmp: New file.
36252         * modules/unistr/u32-strncmp: New file.
36253         * lib/unistr/u8-strncmp.c: New file.
36254         * lib/unistr/u16-strncmp.c: New file.
36255         * lib/unistr/u32-strncmp.c: New file.
36256
36257         * modules/unistr/u8-strncpy: New file.
36258         * modules/unistr/u16-strncpy: New file.
36259         * modules/unistr/u32-strncpy: New file.
36260         * lib/unistr/u8-strncpy.c: New file.
36261         * lib/unistr/u16-strncpy.c: New file.
36262         * lib/unistr/u32-strncpy.c: New file.
36263         * lib/unistr/u-strncpy.h: New file.
36264
36265         * modules/unistr/u8-strnlen: New file.
36266         * modules/unistr/u16-strnlen: New file.
36267         * modules/unistr/u32-strnlen: New file.
36268         * lib/unistr/u8-strnlen.c: New file.
36269         * lib/unistr/u16-strnlen.c: New file.
36270         * lib/unistr/u32-strnlen.c: New file.
36271         * lib/unistr/u-strnlen.h: New file.
36272
36273         * modules/unistr/u8-strpbrk: New file.
36274         * modules/unistr/u16-strpbrk: New file.
36275         * modules/unistr/u32-strpbrk: New file.
36276         * lib/unistr/u8-strpbrk.c: New file.
36277         * lib/unistr/u16-strpbrk.c: New file.
36278         * lib/unistr/u32-strpbrk.c: New file.
36279         * lib/unistr/u-strpbrk.h: New file.
36280
36281         * modules/unistr/u8-strrchr: New file.
36282         * modules/unistr/u16-strrchr: New file.
36283         * modules/unistr/u32-strrchr: New file.
36284         * lib/unistr/u8-strrchr.c: New file.
36285         * lib/unistr/u16-strrchr.c: New file.
36286         * lib/unistr/u32-strrchr.c: New file.
36287
36288         * modules/unistr/u8-strspn: New file.
36289         * modules/unistr/u16-strspn: New file.
36290         * modules/unistr/u32-strspn: New file.
36291         * lib/unistr/u8-strspn.c: New file.
36292         * lib/unistr/u16-strspn.c: New file.
36293         * lib/unistr/u32-strspn.c: New file.
36294         * lib/unistr/u-strspn.h: New file.
36295
36296         * modules/unistr/u8-strstr: New file.
36297         * modules/unistr/u16-strstr: New file.
36298         * modules/unistr/u32-strstr: New file.
36299         * lib/unistr/u8-strstr.c: New file.
36300         * lib/unistr/u16-strstr.c: New file.
36301         * lib/unistr/u32-strstr.c: New file.
36302         * lib/unistr/u-strstr.h: New file.
36303
36304         * modules/unistr/u8-strtok: New file.
36305         * modules/unistr/u16-strtok: New file.
36306         * modules/unistr/u32-strtok: New file.
36307         * lib/unistr/u8-strtok.c: New file.
36308         * lib/unistr/u16-strtok.c: New file.
36309         * lib/unistr/u32-strtok.c: New file.
36310         * lib/unistr/u-strtok.h: New file.
36311
36312         * modules/unistr/u8-uctomb: New file.
36313         * modules/unistr/u16-uctomb: New file.
36314         * modules/unistr/u32-uctomb: New file.
36315         * lib/unistr/u8-uctomb.c: New file.
36316         * lib/unistr/u16-uctomb.c: New file.
36317         * lib/unistr/u32-uctomb.c: New file.
36318
36319         * MODULES.html.sh (Unicode string functions): Add the new modules.
36320
36321 2007-01-08  Bruno Haible  <bruno@clisp.org>
36322
36323         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
36324         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
36325         subdirectories.
36326
36327 2007-01-08  Karl Berry  <karl@gnu.org>
36328
36329         * doc/error.texi: mention that main() fns must set program_name
36330         when progname is used.
36331
36332 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
36333
36334         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
36335         WCTYPE_H is empty, for the benefit of builds from non-distclean
36336         directories.  Problem reported by Eric Blake in
36337         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
36338
36339 2007-01-08  Bruno Haible  <bruno@clisp.org>
36340
36341         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
36342         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
36343         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
36344         PROVIDE_CANONICALIZE_FILENAME_MODE.
36345         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
36346
36347 2007-01-08  Bruno Haible  <bruno@clisp.org>
36348
36349         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
36350         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
36351         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
36352         * lib/fts.c: Likewise.
36353         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
36354
36355 2006-12-25  Bruno Haible  <bruno@clisp.org>
36356
36357         * modules/utf8-ucs4-safe: New file.
36358         * lib/utf8-ucs4-safe.h: New file.
36359         * lib/unistr/utf8-ucs4-safe.c: New file.
36360
36361         * modules/utf16-ucs4-safe: New file.
36362         * lib/utf16-ucs4-safe.h: New file.
36363         * lib/unistr/utf16-ucs4-safe.c: New file.
36364
36365         * MODULES.html.sh (Unicode string functions): Add the new modules.
36366
36367 2007-01-08  Bruno Haible  <bruno@clisp.org>
36368
36369         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
36370         (Depends-on): Add unitypes.
36371         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
36372         (u8_mbtouc_aux): Move out to separate file.
36373         (u8_mbtouc): Use ucs4_t, uint8_t types.
36374         * lib/unistr/utf8-ucs4.c: New file.
36375
36376         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
36377         (Depends-on): Add unitypes.
36378         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
36379         (u16_mbtouc_aux): Move out to separate file.
36380         (u16_mbtouc): Use ucs4_t, uint16_t types.
36381         * lib/unistr/utf16-ucs4.c: New file.
36382
36383         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
36384         (Depends-on): Add unitypes.
36385         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
36386         (u8_uctomb_aux): Move out to separate file.
36387         (u8_uctomb): Use ucs4_t, uint8_t types.
36388         * lib/unistr/ucs4-utf8.c: New file.
36389
36390         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
36391         (Depends-on): Add unitypes.
36392         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
36393         (u16_uctomb_aux): Move out to separate file.
36394         (u16_uctomb): Use ucs4_t, uint16_t types.
36395         * lib/unistr/ucs4-utf16.c: New file.
36396
36397 2006-12-25  Bruno Haible  <bruno@clisp.org>
36398
36399         * modules/unitypes: New file.
36400         * lib/unitypes.h: New file.
36401         * MODULES.html.sh (func_all_modules): New section "Unicode string
36402         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
36403         this section. Add unitypes.
36404
36405 2007-01-08  Bruno Haible  <bruno@clisp.org>
36406
36407         Avoid variable names that conflict with those from libtool.
36408         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
36409         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
36410         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
36411         library_names_spec to acl_library_names_spec, hardcode_* to
36412         acl_hardcode_*.
36413         Reported by Ralf Wildenhues.
36414
36415 2007-01-08  Bruno Haible  <bruno@clisp.org>
36416
36417         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
36418         definition.
36419         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
36420         definition.
36421         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
36422         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
36423         definition.
36424         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
36425         definition.
36426         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
36427         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
36428         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
36429         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
36430         definition.
36431         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
36432         definition.
36433         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
36434         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
36435         GC_USE_<algorithm>.
36436         * lib/gc-libgcrypt.c: Likewise.
36437         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
36438         * modules/gc-arctwo (configure.ac): Likewise.
36439         * modules/gc-des (configure.ac): Likewise.
36440         * modules/gc-hmac-md5 (configure.ac): Likewise.
36441         * modules/gc-hmac-sha1 (configure.ac): Likewise.
36442         * modules/gc-md2 (configure.ac): Likewise.
36443         * modules/gc-md4 (configure.ac): Likewise.
36444         * modules/gc-md5 (configure.ac): Likewise.
36445         * modules/gc-random (configure.ac): Likewise.
36446         * modules/gc-rijndael (configure.ac): Likewise.
36447         * modules/gc-sha1 (configure.ac): Likewise.
36448
36449 2007-01-08  Bruno Haible  <bruno@clisp.org>
36450
36451         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
36452         macro definition.
36453         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
36454         definition.
36455         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
36456         definition.
36457         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
36458         * modules/fcntl-safer (configure.ac): Likewise.
36459         * modules/fopen-safer (configure.ac): Likewise.
36460         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
36461         GNULIB_FWRITEERROR macro definition.
36462
36463 2007-01-08  Bruno Haible  <bruno@clisp.org>
36464
36465         * m4/gnulib-common.m4: New file.
36466         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
36467         (func_get_filelist): Add m4/gnulib-common.m4.
36468
36469 2007-01-08  Bruno Haible  <bruno@clisp.org>
36470
36471         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
36472         command.
36473
36474 2007-01-08  Jim Meyering  <jim@meyering.net>
36475
36476         Use a more robust test for a "can't happen" condition.
36477         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
36478         narrowed the st_size value.  Presuming the "can't happen" condition
36479         is true, that narrowing could conceivably convert an invalid st_size
36480         value into a valid one.  Instead, use a change based on Matthew
36481         Woehlke's original patch.
36482
36483         Slight readability improvement: use an assert-like macro
36484         in place of literal "abort ()" uses.
36485         * lib/fts.c (fts_assert): Define.
36486         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
36487         Use this macro instead of a bare 'abort'.
36488
36489 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
36490
36491         Don't worry about using IRIX 5.3's wctype.h broken definitions;
36492         simply work around them.
36493         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
36494         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
36495         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
36496         declaring.
36497         Don't bother to define as macros, since the standard doesn't require it.
36498         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
36499         longer worry about IRIX 5.3.
36500         (HAVE_WCTYPE_CTMP_BUG): Remove.
36501
36502 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
36503
36504         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
36505         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
36506         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
36507         Problems reported by Georg Schwarz for IRIX 5.3.
36508
36509         * gnulib-tool (autoconf_minversion): Take the maximum version number
36510         found, not the minimum.  Problem reported by James Youngman.
36511
36512 2007-01-03  Karl Berry  <karl@gnu.org>
36513
36514         * doc/error.texi: new file, explaining interaction with progname.
36515         * doc/gnulib.texi: include it.  Update copyright.
36516
36517 2007-01-03  Simon Josefsson  <simon@josefsson.org>
36518
36519         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
36520         AC_CANONICAL_HOST, to improve autobuild outputs.
36521
36522 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
36523             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
36524
36525         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
36526         sockets, server sockets, and other file descriptors.  Count errors
36527         to compute the return value.  Reorder the code a bit to be easier
36528         to follow.  Don't set event bits that were not requested (except
36529         POLLERR and POLLHUP).
36530
36531 2007-01-01  Bruno Haible  <bruno@clisp.org>
36532
36533         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
36534
36535 2007-01-03  Jim Meyering  <jim@meyering.net>
36536
36537         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
36538
36539 2007-01-02  Bruno Haible  <bruno@clisp.org>
36540
36541         * modules/settime (Include): Require timespec.h.
36542         * modules/nanosleep (Include): Likewise.
36543
36544 2007-01-01  Bruno Haible  <bruno@clisp.org>
36545
36546         * gnulib-tool (func_emit_copyright_notice): Bump year.
36547         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
36548
36549 2007-01-01  Bruno Haible  <bruno@clisp.org>
36550
36551         Improve support for OpenBSD.
36552         * build-aux/config.rpath (libname_spec): Export.
36553         (library_names_spec): New variable. Export.
36554         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
36555         library_names_spec from the config.rpath output. Locate shared library
36556         through the name pattern in library_names_spec.
36557
36558 2007-01-01  Eric Blake  <ebb9@byu.net>
36559
36560         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
36561
36562 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
36563
36564         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
36565         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
36566         assume the C locale, and avoid an "eval" that could cause trouble.
36567         Problem with SORT reported by Bob Proulx.
36568
36569         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
36570         Define.  Trivial patch from Henning Nielsen Lund, originally
36571         sent to bug-grep@gnu.org today.
36572
36573 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
36574
36575         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
36576         struct stat.  Problem reported by Henning Nielsen Lund.
36577         * lib/acl.c: Include acl.h first, to check interface.  Don't
36578         bother to include sys/types.h and sys/stat.h again.
36579
36580 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
36581
36582         Import the following change from libc; problem reported by
36583         Sven Verdoolaege.
36584
36585         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
36586
36587         [BZ #1373]
36588         * lib/argp.h: Remove __NTH for __argp_usage inline function.
36589
36590 2006-12-28  Jim Meyering  <jim@meyering.net>
36591
36592         * build-aux/announce-gen: Do not assume that the package
36593         builds any of tar.gz, tar.bz2, and .xdelta files.
36594         Suggestion from Simon Josefsson.
36595
36596 2006-12-28  Simon Josefsson  <simon@josefsson.org>
36597
36598         * modules/announce-gen: New file.
36599
36600 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
36601
36602         * lib/mbchar.h: Just include <wctype.h>; the wctype module
36603         handles its gotchas now.
36604         * lib/mbswidth.c: Likewise.
36605         * lib/wcwidth.h: Likewise.
36606         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
36607         and iswcntrl; the wctype module does this stuff now.
36608         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36609         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
36610         * modules/mbchar (Depends-on): Add wctype.
36611         * modules/mbswidth (Depends-on): Likewise.
36612         * modules/wcwidth (Depends-on): Likewise.
36613
36614 2006-12-27  Eric Blake  <ebb9@byu.net>
36615
36616         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
36617         module uses more than what <wctype.h> is required to provide.
36618
36619 2006-12-26  Eric Blake  <ebb9@byu.net>
36620
36621         * gnulib-tool (sed_extract_prog): Avoid space-tab.
36622
36623 2006-12-26  Eric Blake  <ebb9@byu.net>
36624
36625         * modules/absolute-header: New module.
36626         * modules/fcntl (Depends-on): Depend on it.
36627         * modules/inttypes (Depends-on): Likewise.
36628         * modules/stdint (Depends-on): Likewise.
36629         * modules/sys_stat (Depends-on): Likewise.
36630         * modules/wctype (Depends-on): Likewise.
36631         * MODULES.html.sh (Support for building libraries and
36632         executables): Document it.
36633
36634 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
36635
36636         * gnulib-tool (SED): Remove, undoing previous change.
36637         The problem was that it broke coreutils on Solaris, because
36638         "sed --posix" leaked into a makefile.
36639         (sed): New alias, if 'alias' and GNU sed.
36640
36641 2006-12-24  Jim Meyering  <jim@meyering.net>
36642
36643         Work around an fchownat bug in glibc-2.4:
36644         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
36645         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
36646         in spite of the -P option.
36647         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
36648         New macros.
36649         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
36650         * modules/openat (Files): Add lib/fchownat.c.
36651         * lib/openat.c (fchownat): Don't define here.  Move to...
36652         * lib/fchownat.c: ...this new file.
36653
36654 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
36655
36656         Fix bug reported by Bruno Haible in
36657         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
36658         where quotearg.c didn't compile on Mac OS X 10.2 because it
36659         lacks <wchar.h> and wint_t.
36660         * lib/wctype_.h (__wctype_wint_t): New type.
36661         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
36662         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
36663         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
36664         Arg is now of type __wctype_wint_t, not wint_t.
36665         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
36666         substitute HAVE_WINT_T.
36667         * modules/wctype (Files): Add m4/wint_t.m4.
36668         (wctype.h): Substitute HAVE_WINT_T.
36669
36670 2006-12-23  Bruno Haible  <bruno@clisp.org>
36671
36672         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
36673
36674 2006-12-23  Bruno Haible  <bruno@clisp.org>
36675
36676         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
36677         S_ISLNK.
36678         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
36679         mingw.
36680
36681 2006-12-22  Bruno Haible  <bruno@clisp.org>
36682
36683         * lib/copy-file.c: Include acl.h.
36684         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
36685         Close the file descriptors only after being done with copy_acl.
36686         * modules/copy-file (Depends-on): Add acl.
36687
36688 2006-12-22  Bruno Haible  <bruno@clisp.org>
36689
36690         * gnulib-tool (SED): New variable.
36691         Use $SED instead of sed everywhere.
36692
36693 2006-12-22  Bruno Haible  <bruno@clisp.org>
36694
36695         * modules/no-c++: New file.
36696         * m4/no-c++.m4: New file.
36697         * MODULES.html.sh (Support for building libraries and executables):
36698         Add no-c++.
36699
36700 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
36701
36702         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
36703         Include <limits.h>, and use its INT_MAX to rewrite the
36704         j loop so that it does not overflow 'int'.  Problem reported by
36705         Ralf Wildenhues in
36706         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
36707         Play it safe by shifting left by 1 rather than multiplying by 2,
36708         as GCC is less likely to optimize this away when the value
36709         is signed (when it assumes overflow leads to undefined behavior).
36710         Also, don't assume time_t uses two's complement.
36711
36712 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
36713
36714         * MODULES.html.sh: New module wctype.
36715         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
36716         * lib/fnmatch.c: Don't bother to include <wchar.h> before
36717         <wctype.h>, since the new wctype module should fix this.
36718         * lib/quotearg.c: Include <wctype.h> unconditionally, since
36719         the wctype module should arrange for it.
36720         * lib/regex_internal.h: Likewise.
36721         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
36722         since the wctype module should handle this now.
36723         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
36724         * modules/fnmatch (Depends-on): Add wctype.
36725         * modules/quotearg (Depends-on): Likewise.
36726         * modules/regex (Depends-on): Likewise.
36727
36728 2006-12-19  Bruno Haible  <bruno@clisp.org>
36729
36730         * lib/strdup.h [C++]: Wrap definitions in extern "C".
36731         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
36732
36733 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36734
36735         * modules/savewd (Depends-on): Fix dependency on fcntl.
36736
36737 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
36738
36739         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
36740         conforms to C99, rather than relying on the user's environment
36741         setting of STDINT_H.
36742
36743 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
36744         and Eric Blake  <ebb9@byu.net>
36745
36746         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
36747         This is more consistent with the other defines here.
36748         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
36749         Port to z/OS.  Problem reported by Paul Gilmartin.
36750         Change local vars to use gl_ prefix rather than ac_.
36751         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
36752         with other defines.
36753         * modules/double-slash-root: New module.
36754         * modules/dirname (Files): Remove m4/double-slash-root.m4.
36755         (Depends-on): Add double-slash-root.
36756         * MODULES.html.sh (File system functions): Mention new module.
36757
36758 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
36759
36760         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
36761         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
36762         This is for the benefit of gzip, which doesn't do i18n.
36763
36764 2006-12-12  Jim Meyering  <jim@meyering.net>
36765
36766         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
36767         Reported by Andreas Schwab <schwab@suse.de>.
36768
36769 2006-12-12  Bruno Haible  <bruno@clisp.org>
36770
36771         Merge these changes.
36772         2006-09-05  Bruno Haible  <bruno@clisp.org>
36773         * lib/iconvme.c (iconv_string): No need to save and restore errno when
36774         iconv_alloc succeeded.
36775         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
36776         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
36777         test for " && dest " at the end - dest is always != NULL there. Call
36778         iconv with 4xNULL arguments initially, to reset the state. Call iconv
36779         with 2xNULL arguments, also to flush the state storage. Handle the
36780         IRIX iconv behaviour. Realloc the final result, to throw away unused
36781         memory.
36782
36783 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
36784
36785         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
36786         and fchmodat unconditionally, since glibc 2.4 has them.
36787         Problem reported by Arkadiusz Miskiewicz.
36788
36789 2006-12-10  Bruno Haible  <bruno@clisp.org>
36790
36791         * gnulib-tool (func_import): Show the include files only for those
36792         modules that are copied and specified.
36793         Reported by Karl Berry.
36794
36795 2006-12-08  Jim Meyering  <jim@meyering.net>
36796
36797         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
36798         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
36799
36800         * build-aux/announce-gen: Add two new options, both optional:
36801         --bootstrap-tools=TOOL_LIST
36802               a comma-separated list of tools, e.g.,
36803               autoconf,automake,bison,gnulib
36804         --gnulib-snapshot-date=DATE
36805               if gnulib is in the bootstrap tool list,
36806               then report this as the snapshot date.
36807               If not specified, use the current date/time.
36808               If you specify a date here, be sure it's UTC.
36809
36810 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36811
36812         * tests/test-argp-2.sh: Fix test to match actual output.
36813         (func_compare): Fix sed script to be portable.
36814
36815 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
36816
36817         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
36818         workaround for this case.  It is not autoconfigured now; offhand
36819         it's hard to see how to autoconfigure it.
36820
36821 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
36822
36823         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
36824         a directory that is about to be chowned.  Such a directory's
36825         initial file permissions should permit the owner only and this
36826         should not be changed until after the chown, since the group and
36827         other bits would be incorrect if they granted permission before
36828         the chown.
36829
36830         Fix porting problem for iswctype reported by Georg Schwarz in:
36831         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
36832         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
36833         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
36834         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
36835         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
36836
36837 2006-12-03  Jim Meyering  <jim@meyering.net>
36838
36839         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
36840         p->fts_statp may not yet be defined.
36841         (fts_read): Instead, set it in the caller, once p->fts_statp is
36842         sure to be defined, and corresponds to a top-level directory.
36843         This bug made du -x fail.  Here's the coreutils test case:
36844         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
36845         Reported by Mike Frysinger.
36846
36847 2006-12-01  Jim Meyering  <jim@meyering.net>
36848
36849         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
36850         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
36851         Reported by Simon Josefsson.
36852
36853 2006-11-30  Jim Meyering  <jim@meyering.net>
36854
36855         * m4/warning.m4: Use the all-permissive copyright notice
36856         recommended by RMS (rather than LGPL).
36857         * m4/vararrays.m4: Likewise.
36858         * m4/flexmember.m4: Likewise.
36859
36860 2006-11-29  Bruno Haible  <bruno@clisp.org>
36861
36862         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
36863         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
36864         using +=.
36865         Reported by Simon Josefsson <simon@josefsson.org>.
36866
36867 2006-11-28  James Youngman <jay@gnu.org>
36868
36869         * README: Advise users that they might find the bug-gnulib@gnu.org
36870         and autotools-announce@gnu.org mailing lists useful.
36871
36872 2006-11-28  Bruno Haible  <bruno@clisp.org>
36873
36874         * m4/ptrdiff_max.m4: Remove file.
36875
36876 2006-11-21  Bruno Haible  <bruno@clisp.org>
36877
36878         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
36879         _AC_COMPUTE_INT.
36880         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
36881         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
36882         _AC_COMPUTE_INT.
36883         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
36884         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
36885         _AC_COMPUTE_INT.
36886         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
36887
36888 2006-11-28  Jim Meyering  <jim@meyering.net>
36889
36890         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
36891         warning from "gcc -Wshadow" about shadowing the builtin.
36892
36893 2006-11-27  Bruno Haible  <bruno@clisp.org>
36894
36895         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
36896         _AC_COMPUTE_INT.
36897         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
36898
36899 2006-11-27  Bruno Haible  <bruno@clisp.org>
36900             Paul Eggert  <eggert@cs.ucla.edu>
36901
36902         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
36903
36904 2006-11-26  Bruno Haible  <bruno@clisp.org>
36905
36906         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
36907         noinst_LTLIBRARIES.
36908
36909 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
36910             Bruno Haible  <bruno@clisp.org>
36911
36912         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
36913         if compiling with "gcc -ansi".
36914
36915 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
36916
36917         Fix some incompatibilities with gcc -ansi -pedantic.
36918         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
36919         if compiling pedantically with GCC, unless it's C99 or later.
36920         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
36921         it mishandles gcc -ansi -pedantic as well.
36922         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
36923         if gcc -pedantic.
36924         * lib/regexec.c (check_node_accept_bytes): Don't use auto
36925         initializers for struct if -pedantic, unless it's C99 or later.
36926
36927 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
36928
36929         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
36930         Don't close an fd more than once. Identical atimes indicate
36931         success, not failure.
36932
36933 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
36934
36935         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
36936
36937 2006-11-23  Jim Meyering  <jim@meyering.net>
36938
36939         * build-aux/announce-gen: New file.  From coreutils.
36940
36941 2006-11-22  Jim Meyering  <jim@meyering.net>
36942
36943         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
36944         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
36945         (fts_read): Use a temporary to narrow the overused st_size member
36946         before using it in a switch statement.  Reported by Matthew Woehlke.
36947
36948         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
36949         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
36950
36951 2006-11-20  Bruno Haible  <bruno@clisp.org>
36952
36953         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
36954         changequote instead of pairs of brackets.
36955         Reported by Andreas Schwab <schwab@suse.de>.
36956
36957 2006-11-21  Jim Meyering  <jim@meyering.net>
36958
36959         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
36960         so as to remain compatible with older compilers.
36961         Patch from Michael Deutschmann.
36962
36963 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
36964
36965         * MODULES.html.sh (File system functions): Add openat.
36966
36967         * lib/openat.h (rpl_fstatat): New macro, if
36968         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
36969         (fstatat): Define to rpl_fstatat under the same conditions,
36970         unless COMPILING_FSTATAT.
36971         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
36972         seems to have the bug.
36973         * lib/fstatat.c: New file.
36974         * modules/openat (Files): Add it.
36975
36976 2006-11-20  Bruno Haible  <bruno@clisp.org>
36977
36978         * Makefile: New file.
36979
36980 2006-11-20  Jim Meyering  <jim@meyering.net>
36981
36982         The beginnings of syntax-related checks for gnulib.
36983         * lib/Makefile: New file.
36984         * lib/t-idcache: New script.  Ensure that the two halves of
36985         idcache.c stay in sync.
36986
36987         * lib/idcache.c: Adjust comments in user- and group- portions to
36988         be more accurate, and to be consistent with one another.
36989
36990 2006-11-20  Jim Meyering  <jim@meyering.net>
36991
36992         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
36993         continue using the flexible array member (thus, this module performs
36994         half as many malloc calls), with the addition that...
36995         (getgroup, getuser): Consistently record a non-match via an empty
36996         "name" string, and map an empty string match to a NULL return value.
36997         * modules/idcache (Depends-on): Re-add flexmember.
36998
36999         * lib/idcache.c (getuser): Remove all uses of the register keyword.
37000         (getuidbyname, getgroup, getgidbyname): Likewise.
37001
37002         Use cleaner syntax: NULL rather than 0.
37003         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
37004
37005 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
37006
37007         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
37008         It mishandled the case where the group was missing.
37009         Problem reported by Greg Schafer.
37010         * modules/idcache: Likewise.
37011
37012 2006-11-18  Jim Meyering  <jim@meyering.net>
37013
37014         * check-module (%exempt_header): Add exception for some
37015         conditionally-included headers.
37016
37017         * modules/i-ring (Depends-on): Add verify.
37018         (License): Change to LGPL.
37019
37020 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
37021
37022         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
37023         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
37024         and inttostr.h.  Use snprintf rather than uinttostr, so that
37025         LGPLed code doesn't depend on GPLed.
37026
37027 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
37028
37029         * modules/inline (License): Change from GPL to LGPL.
37030
37031 2006-11-17  Jim Meyering  <jim@meyering.net>
37032
37033         * modules/d-type (License): Switch to LGPL.
37034
37035 2006-11-15  Bruno Haible  <bruno@clisp.org>
37036
37037         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
37038
37039 2006-11-15  Eric Blake  <ebb9@byu.net>
37040
37041         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
37042         the module dependency.
37043
37044 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
37045             Bruno Haible  <bruno@clisp.org>
37046
37047         * gnulib-tool (func_create_testdir): Add license consistency check.
37048
37049 2006-11-15  Eric Blake  <ebb9@byu.net>
37050
37051         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
37052         random "(cached)" in configure output.
37053
37054 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37055
37056         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
37057         test for conforming inttypes.h is both announced and cached.
37058
37059         * MODULES.html.sh (seen_modules, seen_files): New variables.
37060         (func_module): Rewrite to use a few less gnulib-tool and sed
37061         invocations.  Avoid a couple of quadratic algorithms for ...
37062         (missed_modules, missed_files): ... these, with ...
37063         (func_append, func_tmpdir): ... these new functions, from
37064         gnulib-tool.  Analogously, install traps for cleanup.
37065
37066         * tests/test-gc.c (main): Remove unused variables.
37067         * tests/test-read-file.c: Include stdlib.h, for 'free'.
37068
37069 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
37070
37071         * modules/inttostr (License): Change to LGPL.
37072
37073 2006-11-14  Eric Blake  <ebb9@byu.net>
37074
37075         * modules/tempname (License): Change to LGPL.
37076
37077 2006-11-14  Eric Blake  <ebb9@byu.net>
37078
37079         * doc/functions.texi (Function Portability): *printf functions on
37080         Cygwin now understand all POSIX size specifiers.
37081
37082 2006-11-14  Bruno Haible  <bruno@clisp.org>
37083
37084         * modules/c-ctype (License): Change to LGPL.
37085
37086 2006-11-12  Bruno Haible  <bruno@clisp.org>
37087
37088         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
37089         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
37090         for GNOME libraries, for which the include files are installed in
37091         subdirectories of $prefix/include.
37092
37093 2006-11-12  Bruno Haible  <bruno@clisp.org>
37094
37095         * m4/lib-link.m4: Require at least autoconf-2.54.
37096         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
37097         name to underscores for the --with option.
37098
37099 2006-11-13  Bruno Haible  <bruno@clisp.org>
37100
37101         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
37102         the tests directory.
37103         Reported by Ralf Wildenhues.
37104
37105 2006-11-13  Bruno Haible  <bruno@clisp.org>
37106
37107         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
37108         (func_emit_initmacro_end): Undo the override here.
37109         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
37110         Works around the famous automake error in coreutils.
37111
37112 2006-11-13  Eric Blake  <ebb9@byu.net>
37113
37114         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
37115         element, not its node.
37116
37117 2006-11-12  Bruno Haible  <bruno@clisp.org>
37118
37119         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
37120         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
37121
37122 2006-11-12  Bruno Haible  <bruno@clisp.org>
37123
37124         * gnulib-tool: New option --local-symlink.
37125         (func_usage): Document it.
37126         (lsymbolic): New variable.
37127         (func_import, func_create_testdir): If --symlink was not specified,
37128         test whether --local-symlink was specified and the file comes from
37129         the local_gnulib_dir.
37130
37131 2006-11-12  Bruno Haible  <bruno@clisp.org>
37132
37133         * gnulib-tool (func_ln): New function.
37134         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
37135
37136 2006-11-12  Bruno Haible  <bruno@clisp.org>
37137
37138         Finish support for source files in subdirectories.
37139         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
37140         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
37141         AUTOMAKE_OPTIONS.
37142         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
37143
37144 2006-11-12  Bruno Haible  <bruno@clisp.org>
37145
37146         * gnulib-tool (func_get_automake_snippet): Synthesize also an
37147         EXTRA_lib_SOURCES augmentation.
37148         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
37149
37150 2006-11-12  Jim Meyering  <jim@meyering.net>
37151
37152         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
37153         file descriptors.  This also averts a failure on systems with
37154         native openat support when a traversed directory lacks "x" access.
37155         * lib/fts_.h: Include "i-ring.h"
37156         (struct FTS) [fts_fd_ring]: New member.
37157         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
37158         (FCHDIR): Add parentheses.
37159         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
37160         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
37161         When descending, rather than simply closing the previous
37162         fts_cwd_fd value, push that file descriptor onto the ring.
37163         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
37164         (fts_open): Initialize the new fd_ring member.
37165         (fts_close): Clear the ring.
37166         (fts_safe_changedir): When possible, use our new fd_ring to skip
37167         the diropen and fstat and dev/ino comparison that would normally
37168         accompany a virtual `chdir ("..")'.
37169
37170         * modules/fts (Depends-on): Add i-ring.
37171         * modules/i-ring: New module.
37172         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
37173         * m4/i-ring.m4: New file.
37174
37175 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37176
37177         * gnulib-tool (func_create_testdir): Fix replacement of
37178         `build-aux' in configure.ac.  Run autotools in gltests
37179         subdirectory.
37180         (func_create_testdir, func_create_megatestdir, test): There is
37181         no need for '--force' in most autotool invocations in a new
37182         tree.  Actually fail the whole test if any of the tools, or the
37183         configure or make stages fail.
37184
37185         Sync from Automake.
37186         * build-aux/gnupload: Revert last change.  Add pointer to upload
37187         instructions of the GNU Maintenance Instructions.
37188         Suggestion by Karl Berry.
37189
37190 2006-11-10  Jim Meyering  <jim@meyering.net>
37191
37192         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
37193
37194 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
37195
37196         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
37197         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
37198         (bind_textdomain_codeset) [! ENABLE_NLS]:
37199         Evaluate all the arguments.  That way, callers get compatible behavior
37200         if the arguments have side effects.  Also, it avoids some GCC
37201         diagnostics in some cases; Joel E. Denny reported problems when Bison
37202         was configured with --enable-gcc-warnigs.
37203
37204 2006-11-10  Jim Meyering  <jim@meyering.net>
37205
37206         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
37207         relevant options in CFLAGS (like -O, -fno-inline) are taken into
37208         account.
37209
37210 2006-11-10  Jim Meyering  <jim@meyering.net>
37211
37212         * modules/inline: New file/module.
37213         * modules/xalloc (Files): Remove m4/inline.m4.
37214         (Depends-on): Add inline, instead.
37215         * modules/oset: Likewise.
37216         * modules/list: Likewise.
37217
37218 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
37219
37220         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
37221         Problem reported by Matthew Woehlke.
37222
37223 2006-11-09  Bruno Haible  <bruno@clisp.org>
37224
37225         * lib/tempname.c (gen_tempname): Remove variant that invokes
37226         __gen_tempname.
37227         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
37228         __gen_tempname.
37229
37230 2006-11-08  Bruno Haible  <bruno@clisp.org>
37231
37232         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
37233         to 'yes' instead of 'cross-compiling'.
37234
37235 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
37236
37237         * lib/quotearg.h (quotearg_free): New decl.
37238         * lib/quotearg.c (quotearg_free): New function.
37239         (slot0, nslots, slotvec0, slotvec):
37240         Now file-scope so that quotearg_free can get at them.
37241
37242 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37243
37244         Sync from Automake.
37245         * build-aux/gnupload: Add missing 'gnu' to example URL.
37246         Report by Karl Berry.
37247
37248 2006-11-08  Bruno Haible  <bruno@clisp.org>
37249
37250         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
37251         Suggested by Paul Eggert.
37252
37253 2006-11-08  Jim Meyering  <jim@meyering.net>
37254
37255         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
37256         It's already included if !_LIBC.
37257         (fts_safe_changedir): Add a comment.
37258
37259 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
37260
37261         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
37262         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
37263         Matthew Woehlke.
37264
37265         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
37266         definitions up, to avoid colliding with change below.
37267         (static_inline) [HAVE_INLINE]: New macro.
37268         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
37269         Provide extern decls when !HAVE_INLINE.  Do not define unless
37270         static_inline is defined, either by us or by xmalloc.c.  Use
37271         static_inline rather than static inline.
37272         (XCALLOC): Optimize sizeof(T) = 1 case.
37273         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
37274
37275 2006-11-07  Bruno Haible  <bruno@clisp.org>
37276
37277         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
37278         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
37279         AC_C_INLINE.
37280         * modules/xalloc (Files): Add m4/inline.m4.
37281
37282 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37283
37284         * README: Fix typo.
37285         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
37286         (Miscellanous Notes): ...from this.
37287
37288 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
37289
37290         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
37291         Mention that offsetof should be used instead of sizeof.
37292         From Bruno Haible.
37293
37294 2006-11-07  Bruno Haible  <bruno@clisp.org>
37295
37296         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
37297
37298 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
37299
37300         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
37301         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
37302         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
37303         (gl_tree_add_before, gl_tree_add_after):
37304         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
37305         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
37306         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
37307         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
37308         (gl_linked_add_after, gl_linked_add_at): Likewise.
37309         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
37310         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
37311         (gl_tree_add_before, gl_tree_add_after): Likewise.
37312         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
37313         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
37314         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
37315
37316 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37317
37318         * lib/gl_oset.h: Use C comment style, not C++ comment style.
37319
37320 2006-11-06  Bruno Haible  <bruno@clisp.org>
37321
37322         * m4/inline.m4: New file.
37323         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
37324         * modules/list (Files): Add m4/inline.m4.
37325         * modules/oset (Files): Likewise.
37326
37327 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
37328
37329         * lib/idcache.c: Include <stddef.h>, for offsetof.
37330         (struct userid.name): Change from char * to a flexible array member.
37331         All uses changed.
37332         * modules/idcache (Depends-on): Add flexmember.
37333
37334         * MODULES.html.sh (Core language properties): New module flexmember.
37335         * modules/flexmember, m4/flexmember.m4: New files.
37336
37337         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
37338         inline functions that are identical with the old xnmalloc_inline,
37339         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
37340         that we can avoid some unnecessary integer multiplications and
37341         divisions in the common case where the element size is known at
37342         compile time.
37343         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
37344         needed.
37345         (xnboundedmalloc): Remove.
37346         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
37347         arguments, for consistency with rest of this header.
37348         (xcharalloc): Rewrite using XNMALLOC.
37349         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
37350         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
37351         versions have been moved to lib/xalloc.h and renamed to be the
37352         non-*_inline versions.
37353         (xmalloc, xrealloc): Implement without reference to the xnmalloc
37354         and xnrealloc functions, since those functions are now inline and
37355         now call us.
37356         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
37357         renaming described above.
37358         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
37359         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
37360         captures the dependency in AC_C_INLINE.
37361
37362         New module canonicalize-lgpl, proposed by Charles Wilson in
37363         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
37364         with a few small changes afterwards.
37365         * MODULES.html.sh (File system functions): New module
37366         canonicalize-lgpl.
37367         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
37368         and canonicalize_file_name.
37369         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
37370         * modules/canonicalize-lgpl: New files.
37371
37372 2006-11-05  Bruno Haible  <bruno@clisp.org>
37373
37374         * gnulib-tool (func_import, func_create_testdir): Create directories
37375         also for files in subdirectories of lib/.
37376
37377 2006-11-05  Bruno Haible  <bruno@clisp.org>
37378
37379         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
37380         ANSI C compliant.
37381
37382 2006-11-03  Bruno Haible  <bruno@clisp.org>
37383
37384         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
37385         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
37386         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
37387         (xnboundedmalloc): New inline function.
37388         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
37389         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
37390         xmalloc.
37391         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
37392         xmalloc.
37393         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
37394         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
37395         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
37396         xmalloc.
37397         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
37398         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
37399         xmalloc.
37400         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
37401         gl_tree_add_after): Use XMALLOC instead of xmalloc.
37402         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
37403         xmalloc.
37404         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
37405         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
37406         gl_tree_add_after): Use XMALLOC instead of xmalloc.
37407         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
37408         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
37409         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
37410         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
37411
37412 2006-11-03  Bruno Haible  <bruno@clisp.org>
37413
37414         * lib/c-ctype.h [C++]: Define functions without name mangling.
37415         * lib/fwriteerror.h [C++]: Likewise.
37416         * lib/gcd.h [C++]: Likewise.
37417         * lib/linebreak.h [C++]: Likewise.
37418
37419 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
37420
37421         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
37422         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
37423         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
37424         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37425         Check for functions and headers just once.
37426         Check for declaration of canonicalize_file_name.
37427         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
37428
37429 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
37430
37431         * gnulib-tool (func_import): Fix typo in actioncmd.
37432
37433 2006-11-02  Bruno Haible  <bruno@clisp.org>
37434
37435         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
37436         newline sequence in the Makefile.am snippet as a space, like "make"
37437         does.
37438         Reported by Roger Persson <perrog@gmail.com>.
37439
37440 2006-11-01  Bruno Haible  <bruno@clisp.org>
37441
37442         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
37443         already declared in <string.h>.
37444         * lib/strcase.h (strncasecmp): Don't declare it if yes.
37445
37446 2006-11-01  Bruno Haible  <bruno@clisp.org>
37447
37448         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
37449         * lib/strcase.h: Include <string.h>.
37450         (strcasecmp): Define to rpl_strcasecmp here.
37451
37452 2006-11-01  Bruno Haible  <bruno@clisp.org>
37453
37454         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
37455
37456 2006-11-01  Eric Blake  <ebb9@byu.net>
37457
37458         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
37459
37460         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
37461
37462 2006-10-29  Bruno Haible  <bruno@clisp.org>
37463
37464         Make it compile in C++ mode.
37465         * lib/full-write.c (full_rw): Add a cast.
37466
37467 2006-11-01  Bruno Haible  <bruno@clisp.org>
37468
37469         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
37470         be POSIX compliant.
37471         Reported by Roger Persson <perrog@gmail.com>.
37472
37473 2006-11-01  Eric Blake  <ebb9@byu.net>
37474
37475         * lib/getopt_.h: Fix comments.
37476
37477 2006-10-31  Eric Blake  <ebb9@byu.net>
37478
37479         * modules/tmpdir (Depends-on): Add sys_stat.
37480         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
37481         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
37482         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
37483         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
37484         tempname.
37485
37486 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
37487
37488         Avoid some C++ diagnostics reported by Bruno Haible.
37489         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
37490         xmalloc.
37491         (quotearg_alloc): Use xcharalloc rather than xmalloc.
37492         (struct slotvec): Move to top level.
37493         (quotearg_n_options): Rewrite to avoid xmalloc.
37494         * lib/xalloc.h (xcharalloc): New function.
37495         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
37496         [defined __cplusplus]: Add function template that provides result
37497         type propagation.  This part of the change is from Bruno Haible.
37498
37499 2006-10-29  Bruno Haible  <bruno@clisp.org>
37500
37501         Make it compile in C++ mode.
37502         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
37503         * lib/strnlen1.c (strnlen1): Cast memchr result.
37504         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
37505         * lib/clean-temp.c (string_equals, string_hash): Add casts.
37506         (create_temp_dir): Rename local variable 'template'.
37507         (compile_csharp_using_sscli): Add cast.
37508         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
37509         * lib/findprog.c (find_in_path): Likewise.
37510         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
37511         * lib/wait-process.c (register_slave_subprocess): Likewise.
37512
37513 2006-10-22  Bruno Haible  <bruno@clisp.org>
37514
37515         * modules/tsearch: New file.
37516         * lib/tsearch.h: New file.
37517         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
37518         * m4/tsearch.m4: New file.
37519         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
37520
37521 2006-10-29  Eric Blake  <ebb9@byu.net>
37522
37523         * lib/arcfour.c: Assume config.h.
37524         * lib/arctwo.c: Likewise.
37525         * lib/base64.c: Likewise.
37526         * lib/check-version.c: Likewise.
37527         * lib/crc.c: Likewise.
37528         * lib/des.c: Likewise.
37529         * lib/gc-gnulib.c: Likewise.
37530         * lib/gc-libgcrypt.c: Likewise.
37531         * lib/gc-pbkdf2-sha1.c: Likewise.
37532         * lib/getaddrinfo.c: Likewise.
37533         * lib/getdelim.c: Likewise.
37534         * lib/getline.c: Likewise.
37535         * lib/hmac-md5.c: Likewise.
37536         * lib/hmac-sha1.c: Likewise.
37537         * lib/iconvme.c: Likewise.
37538         * lib/md2.c: Likewise.
37539         * lib/md4.c: Likewise.
37540         * lib/memxor.c: Likewise.
37541         * lib/read-file.c: Likewise.
37542         * lib/readline.c: Likewise.
37543         * lib/rijndael-alg-fst.c: Likewise.
37544         * lib/rijndael-api-fst.c: Likewise.
37545         * lib/xgetdomainname.c: Likewise.
37546
37547 2006-10-28  Eric Blake  <ebb9@byu.net>
37548
37549         * lib/xstrndup.c: Assume config.h.
37550
37551 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
37552
37553         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
37554         stat-macros.h is now for our own macros, whereas stat_h is for
37555         macros in the <sys/stat.h> name space.
37556         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
37557         (STAT_MACROS_H): Remove.
37558         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
37559         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
37560         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
37561         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
37562         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
37563         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
37564         Move these macros to ...
37565         * lib/stat_.h: here.  Don't include stat-macros.h.
37566         * lib/canonicalize.c: Don't include stat-macros.h.
37567         * lib/chown.c: Likewise.
37568         * lib/euidaccess.c: Likewise.
37569         * lib/file-type.c: Likewise.
37570         * lib/filemode.c: Likewise.
37571         * lib/glob.c: Likewise.
37572         * lib/isapipe.c: Likewise.
37573         * lib/lchown.c: Likewise.
37574         * lib/lstat.c: Likewise.
37575         * lib/mkdir-p.c: Likewise.
37576         * lib/rmdir.c: Likewise.
37577         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
37578         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
37579         unless mkdir isn't declared, to speed up 'configure'.
37580         Always create sys/stat.h, since it's unlikely any real sys/stat.h
37581         would define all the S_* symbols.
37582         * modules/canonicalize (Depends-on):
37583         Depend on sys_stat, not stat-macros.
37584         * modules/chown: Likewise.
37585         * modules/euidaccess: Likewise.
37586         * modules/filemode: Likewise.
37587         * modules/file-type: Likewise.
37588         * modules/glob: Likewise.
37589         * modules/isapipe: Likewise.
37590         * modules/lchown: Likewise.
37591         * modules/lstat: Likewise.
37592         * modules/mkancesdirs: Likewise.
37593         * modules/rmdir: Likewise.
37594         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
37595         * modules/modechange: Likewise.
37596         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
37597         (configure.ac): Remove gl_STAT_MACROS.
37598         * modules/sys_stat (Depends-on): Remove stat-macros.
37599
37600 2006-10-27  Bruno Haible  <bruno@clisp.org>
37601
37602         * m4/signed.m4: Remove file.
37603         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
37604         invocation.
37605         * modules/vasnprintf (Files): Remove m4/signed.m4.
37606
37607 2006-10-27  Bruno Haible  <bruno@clisp.org>
37608
37609         Update to GNU gettext 0.16.
37610         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
37611         m4/inttypes-h.m4, m4/signed.m4.
37612         * m4/gettext.m4: Update to GNU gettext 0.16.
37613         * m4/intl.m4: New file, from GNU gettext.
37614         * m4/intldir.m4: New file, from GNU gettext.
37615         * config/srclist.txt: Update
37616
37617 2006-10-27  Eric Blake  <ebb9@byu.net>
37618
37619         * MODULES.html.sh: Document tempname.
37620         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
37621         dependencies.
37622         (Files): Move lib/tempname.c...
37623         * modules/tempname: ...to this new module.
37624         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
37625         (gl_PREREQ_TEMPNAME): Move...
37626         * m4/tempname.m4: ...to this new file.
37627         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
37628         * modules/sys_stat (Depends-on): Add stat-macros.
37629         * lib/stat_.h (includes): Pick up stat macros.
37630         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
37631         if stat macros are broken.
37632         * lib/tempname.c (includes): No need to include "stat-macros.h".
37633         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
37634         (direxists, __path_search) [!_LIBC]: Don't compile these in
37635         gnulib; the tmpdir module covers that.
37636         * lib/tempname.h: New file.
37637
37638 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
37639
37640         * COPYING: Explain how gnulib-tool converts licence headers.
37641         Almost all wording by Eric Blake.
37642
37643 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
37644
37645         * lib/mbchar.h (is_basic_table): Make read-only.
37646         * lib/mbchar.c (is_basic_table): Likewise.
37647         Reported by John Darrington.
37648
37649 2006-10-25  Bruno Haible  <bruno@clisp.org>
37650
37651         * lib/progname.h (set_program_name): Undefine before defining.
37652
37653 2006-10-25  Bruno Haible  <bruno@clisp.org>
37654
37655         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
37656         false for non-gcc C++ compilers.
37657         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
37658
37659 2006-10-24  Bruno Haible  <bruno@clisp.org>
37660
37661         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
37662         iconv implementations like Irix iconv.
37663
37664 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
37665
37666         * modules/vararrays: New file.
37667         * m4/vararrays.m4: New file, taken from diffutils.
37668         * MODULES.html.sh: New module vararrays.
37669
37670 2006-10-24  Karl Berry  <karl@gnu.org>
37671
37672         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
37673         Don't call GNU Unix.
37674
37675 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37676
37677         * users.txt: Add Libtool.
37678
37679         Sync from Libtool:
37680
37681         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
37682
37683         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
37684         to gnulib's policy of including config.h unconditionally.
37685
37686 2006-10-24  Bruno Haible  <bruno@clisp.org>
37687
37688         * modules/wcwidth (Files): Add m4/wint_t.m4.
37689         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
37690         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
37691
37692 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
37693
37694         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
37695         to pacify GCC with some -W flags enabled.  Problem reported by
37696         Bruno Haible.
37697
37698 2006-10-24  Jim Meyering  <jim@meyering.net>
37699
37700         * MODULES.html.sh: Remove uinttostr.  It's not a module.
37701         Reported by Karl Berry.
37702
37703 2006-10-23  Bruno Haible  <bruno@clisp.org>
37704
37705         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
37706
37707 2006-10-24  Bruno Haible  <bruno@clisp.org>
37708
37709         * lib/gl_list.h: Use C comment style, not C++ comment style.
37710
37711 2006-10-23  Eric Blake  <ebb9@byu.net>
37712
37713         * lib/getaddrinfo.c (includes): Add missing include.
37714
37715 2006-10-23  Bruno Haible  <bruno@clisp.org>
37716             Paul Eggert  <eggert@cs.ucla.edu>
37717
37718         Ability to rename obstack_free.
37719         * lib/obstack.h (__obstack_free): New macro. Declare instead of
37720         obstack_free.
37721         (obstack_free): Invoke the __obstack_free macro.
37722         * lib/obstack.c (obstack_free): Use __obstack_free macro.
37723
37724 2006-10-23  Bruno Haible  <bruno@clisp.org>
37725             Paul Eggert  <eggert@cs.ucla.edu>
37726
37727         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
37728         __argc, __argv from the declaration. (They are defined as macros on
37729         mingw.)
37730
37731 2006-10-22  Bruno Haible  <bruno@clisp.org>
37732
37733         * doc/gnulib-intro.texi: New file.
37734         * doc/gnulib.texi: Include it.
37735
37736 2006-10-21  Bruno Haible  <bruno@clisp.org>
37737
37738         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
37739         "Introduction", "Miscellanous Notes", "Particular Modules".
37740
37741 2006-10-21  Bruno Haible  <bruno@clisp.org>
37742
37743         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37744         Change mostlyclean-local rule to avoid sh syntax error from bash
37745         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
37746
37747 2006-10-23  Jim Meyering  <jim@meyering.net>
37748
37749         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
37750         in place of snprintf.
37751
37752         * modules/inttostr (Files): Add lib/uinttostr.c.
37753         * lib/uinttostr.c (inttostr): New file/function.
37754         * lib/inttostr.h (uinttostr): Declare.
37755         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
37756         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
37757         Add uinttostr.
37758         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
37759
37760 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
37761
37762         * lib/canonicalize.c (ELOOP): Define if not already defined.
37763         Problem reported by Bruno Haible in
37764         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
37765
37766 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
37767
37768         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
37769         Problem reported by Perry Smith and Ville Laurikari.
37770
37771         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
37772         uses.
37773
37774 2006-10-19  Bruno Haible  <bruno@clisp.org>
37775
37776         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
37777         for mingw.
37778
37779 2006-10-19  Bruno Haible  <bruno@clisp.org>
37780
37781         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
37782         Needed for mingw.
37783
37784 2006-10-19  Bruno Haible  <bruno@clisp.org>
37785
37786         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
37787
37788 2006-10-19  Bruno Haible  <bruno@clisp.org>
37789
37790         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
37791         it.
37792
37793 2006-10-19  Bruno Haible  <bruno@clisp.org>
37794
37795         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
37796         invocation.
37797
37798 2006-10-19  Bruno Haible  <bruno@clisp.org>
37799
37800         * gnulib-tool (func_create_testdir): Don't include ftruncate and
37801         mountlist by default.
37802
37803 2006-10-16  Bruno Haible  <bruno@clisp.org>
37804
37805         * lib/c-strstr.c: Include c-strstr.h.
37806
37807 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
37808
37809         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
37810         in a slash.
37811
37812 2006-10-18  Bruno Haible  <bruno@clisp.org>
37813
37814         * lib/lock.h [C++]: Wrap definitions in extern "C".
37815
37816 2006-10-18  Bruno Haible  <bruno@clisp.org>
37817
37818         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
37819         gl_LIBOBJS list.
37820
37821 2006-10-18  Bruno Haible  <bruno@clisp.org>
37822
37823         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
37824
37825 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
37826
37827         * lib/xstrtol.h: Include gettext.h.
37828         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
37829         Problem reported by Eric Blake.
37830         * modules/xstrtol (Depends-on): Add gettext-h.
37831
37832 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
37833
37834         * lib/strftime.c (advance): New macro.
37835         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
37836         incomplete type, so you can't add 0 to it.  Problem and patch
37837         reported by Eelco Dolstra for dietlibc.
37838
37839 2006-10-18  Jim Meyering  <jim@meyering.net>
37840
37841         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
37842         type for a local, and rename it: s/up/user_proc/.
37843
37844 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
37845
37846         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
37847         READ_UTMP_USER_PROCESS.
37848         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
37849
37850 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
37851
37852         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
37853         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
37854
37855 2006-10-17  Eric Blake  <ebb9@byu.net>
37856
37857         * lib/sigprocmask.c (sigprocmask): Fix typo.
37858
37859         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
37860
37861         * modules/clean-temp (Makefile.am): Don't add to make output...
37862         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
37863         config.h.
37864
37865 2006-10-17  Bruno Haible  <bruno@clisp.org>
37866
37867         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
37868         differently if DEFAULT_TEXT_DOMAIN is set.
37869
37870 2006-10-16  Bruno Haible  <bruno@clisp.org>
37871
37872         * lib/clean-temp.c: Include fwriteerror.h.
37873
37874 2006-10-16  Bruno Haible  <bruno@clisp.org>
37875
37876         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
37877
37878 2006-10-16  Bruno Haible  <bruno@clisp.org>
37879
37880         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
37881         * lib/sigprocmask.h: Include <sys/types.h>.
37882         (sigset_t): Use the system's definition if present.
37883
37884 2006-10-17  Eric Blake  <ebb9@byu.net>
37885
37886         * lib/xvasprintf.c (includes): Assume config.h.
37887         * lib/xasprintf.c (includes): Likewise.
37888
37889 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
37890
37891         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
37892         at least as wide as intmax_t.
37893
37894 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
37895
37896         (Imported from Automake.)
37897         * build-aux/gnupload: Update to version 1.1 of directive file.
37898
37899 2006-10-16  Eric Blake  <ebb9@byu.net>
37900
37901         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
37902         match Automake 1.10a.
37903
37904 2006-10-14  Bruno Haible  <bruno@clisp.org>
37905
37906         * modules/sigprocmask: New file.
37907         * lib/sigprocmask.h: New file.
37908         * lib/sigprocmask.c: New file.
37909         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
37910         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
37911         request sigprocmask.o.
37912         (gl_PREREQ_SIGPROCMASK): New macro.
37913         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
37914         (Depends-on): Add sigprocmask.
37915         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
37916         gt_SIGNALBLOCKING. Test for 'raise' only once.
37917         * lib/fatal-signal.c: Include sigprocmask.h.
37918         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
37919         unblock_fatal_signals): Define always.
37920         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
37921         sigprocmask.
37922
37923 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
37924
37925         Sync from Automake.
37926         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
37927         which incorrectly sets the mode of an existing destination
37928         directory.  In some cases the unpatched install-sh could do the
37929         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
37930         system.  We hope this is rare in practice, but it's clearly worth
37931         fixing.  Problem reported by Alex Unleashed in
37932         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
37933         Also, don't bother to check for -m bugs unless we're using -m;
37934         suggested by Stepan Kasal.
37935
37936 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37937
37938         Sync from Automake.
37939         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
37940         `-c' flag, so they appear at the same position as in %FASTDEP%
37941         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
37942         which ignores unknown options only after the first non-option.
37943         Bug report against M4 by Nelson H. F. Beebe.
37944
37945 2006-10-13  Jim Meyering  <jim@meyering.net>
37946
37947         Fix a bug in yesterday's change.
37948         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
37949         p->fts_statp->st_dev would be used uninitialized.
37950         Ensures that we always call fts_stat on the very first entry.
37951         Miklos Szeredi reported that find -xdev stopped working.
37952
37953 2006-10-12  Bruno Haible  <bruno@clisp.org>
37954
37955         * gnulib-tool (func_get_automake_snippet): Append an automatically
37956         computed EXTRA_DIST augmentation.
37957         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
37958         * modules/alloca-opt (Makefile.am): Likewise.
37959         * modules/allocsa (Makefile.am): Likewise.
37960         * modules/arcfour (Makefile.am): Likewise.
37961         * modules/arctwo (Makefile.am): Likewise.
37962         * modules/argmatch (Makefile.am): Likewise.
37963         * modules/argz (Makefile.am): Likewise.
37964         * modules/atexit (Makefile.am): Likewise.
37965         * modules/backupfile (Makefile.am): Likewise.
37966         * modules/byteswap (Makefile.am): Likewise.
37967         * modules/c-strtod (Makefile.am): Likewise.
37968         * modules/c-strtold (Makefile.am): Likewise.
37969         * modules/calloc (Makefile.am): Likewise.
37970         * modules/canon-host (Makefile.am): Likewise.
37971         * modules/canonicalize (Makefile.am): Likewise.
37972         * modules/chdir-long (Makefile.am): Likewise.
37973         * modules/chdir-safer (Makefile.am): Likewise.
37974         * modules/check-version (Makefile.am): Likewise.
37975         * modules/chown (Makefile.am): Likewise.
37976         * modules/cloexec (Makefile.am): Likewise.
37977         * modules/close-stream (Makefile.am): Likewise.
37978         * modules/closeout (Makefile.am): Likewise.
37979         * modules/crc (Makefile.am): Likewise.
37980         * modules/csharpexec (Makefile.am): Likewise.
37981         * modules/cycle-check (Makefile.am): Likewise.
37982         * modules/des (Makefile.am): Likewise.
37983         * modules/dev-ino (Makefile.am): Likewise.
37984         * modules/dirfd (Makefile.am): Likewise.
37985         * modules/dirname (Makefile.am): Likewise.
37986         * modules/dup2 (Makefile.am): Likewise.
37987         * modules/eealloc (Makefile.am): Likewise.
37988         * modules/error (Makefile.am): Likewise.
37989         * modules/euidaccess (Makefile.am): Likewise.
37990         * modules/exclude (Makefile.am): Likewise.
37991         * modules/exitfail (Makefile.am): Likewise.
37992         * modules/fcntl-safer (Makefile.am): Likewise.
37993         * modules/fcntl (Makefile.am): Likewise.
37994         * modules/file-type (Makefile.am): Likewise.
37995         * modules/fileblocks (Makefile.am): Likewise.
37996         * modules/filemode (Makefile.am): Likewise.
37997         * modules/filenamecat (Makefile.am): Likewise.
37998         * modules/fnmatch (Makefile.am): Likewise.
37999         * modules/fopen-safer (Makefile.am): Likewise.
38000         * modules/fpending (Makefile.am): Likewise.
38001         * modules/fprintftime (Makefile.am): Likewise.
38002         * modules/free (Makefile.am): Likewise.
38003         * modules/fsusage (Makefile.am): Likewise.
38004         * modules/ftruncate (Makefile.am): Likewise.
38005         * modules/fts (Makefile.am): Likewise.
38006         * modules/gc-arcfour (Makefile.am): Likewise.
38007         * modules/gc-des (Makefile.am): Likewise.
38008         * modules/gc-hmac-md5 (Makefile.am): Likewise.
38009         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
38010         * modules/gc-md4 (Makefile.am): Likewise.
38011         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
38012         * modules/gc-sha1 (Makefile.am): Likewise.
38013         * modules/gc (Makefile.am): Likewise.
38014         * modules/getaddrinfo (Makefile.am): Likewise.
38015         * modules/getcwd (Makefile.am): Likewise.
38016         * modules/getdelim (Makefile.am): Likewise.
38017         * modules/getdomainname (Makefile.am): Likewise.
38018         * modules/getgroups (Makefile.am): Likewise.
38019         * modules/gethostname (Makefile.am): Likewise.
38020         * modules/gethrxtime (Makefile.am): Likewise.
38021         * modules/getline (Makefile.am): Likewise.
38022         * modules/getloadavg (Makefile.am): Likewise.
38023         * modules/getlogin_r (Makefile.am): Likewise.
38024         * modules/getndelim2 (Makefile.am): Likewise.
38025         * modules/getopt (Makefile.am): Likewise.
38026         * modules/getpagesize (Makefile.am): Likewise.
38027         * modules/getpass-gnu (Makefile.am): Likewise.
38028         * modules/getpass (Makefile.am): Likewise.
38029         * modules/getsubopt (Makefile.am): Likewise.
38030         * modules/gettime (Makefile.am): Likewise.
38031         * modules/gettimeofday (Makefile.am): Likewise.
38032         * modules/getugroups (Makefile.am): Likewise.
38033         * modules/getusershell (Makefile.am): Likewise.
38034         * modules/glob (Makefile.am): Likewise.
38035         * modules/group-member (Makefile.am): Likewise.
38036         * modules/hard-locale (Makefile.am): Likewise.
38037         * modules/hash (Makefile.am): Likewise.
38038         * modules/hmac-md5 (Makefile.am): Likewise.
38039         * modules/hmac-sha1 (Makefile.am): Likewise.
38040         * modules/human (Makefile.am): Likewise.
38041         * modules/idcache (Makefile.am): Likewise.
38042         * modules/imaxabs (Makefile.am): Likewise.
38043         * modules/imaxdiv (Makefile.am): Likewise.
38044         * modules/inet_ntop (Makefile.am): Likewise.
38045         * modules/inet_pton (Makefile.am): Likewise.
38046         * modules/intprops (Makefile.am): Likewise.
38047         * modules/inttostr (Makefile.am): Likewise.
38048         * modules/inttypes (Makefile.am): Likewise.
38049         * modules/isapipe (Makefile.am): Likewise.
38050         * modules/javaversion (Makefile.am): Likewise.
38051         * modules/lchmod (Makefile.am): Likewise.
38052         * modules/lchown (Makefile.am): Likewise.
38053         * modules/localcharset (Makefile.am): Likewise.
38054         * modules/long-options (Makefile.am): Likewise.
38055         * modules/lstat (Makefile.am): Likewise.
38056         * modules/malloc (Makefile.am): Likewise.
38057         * modules/mathl (Makefile.am): Likewise.
38058         * modules/mbchar (Makefile.am): Likewise.
38059         * modules/md2 (Makefile.am): Likewise.
38060         * modules/md4 (Makefile.am): Likewise.
38061         * modules/md5 (Makefile.am): Likewise.
38062         * modules/memcasecmp (Makefile.am): Likewise.
38063         * modules/memchr (Makefile.am): Likewise.
38064         * modules/memcmp (Makefile.am): Likewise.
38065         * modules/memcoll (Makefile.am): Likewise.
38066         * modules/memcpy (Makefile.am): Likewise.
38067         * modules/memmem (Makefile.am): Likewise.
38068         * modules/memmove (Makefile.am): Likewise.
38069         * modules/mempcpy (Makefile.am): Likewise.
38070         * modules/memrchr (Makefile.am): Likewise.
38071         * modules/memset (Makefile.am): Likewise.
38072         * modules/memxor (Makefile.am): Likewise.
38073         * modules/mkancesdirs (Makefile.am): Likewise.
38074         * modules/mkdir-p (Makefile.am): Likewise.
38075         * modules/mkdir (Makefile.am): Likewise.
38076         * modules/mkdtemp (Makefile.am): Likewise.
38077         * modules/mkstemp (Makefile.am): Likewise.
38078         * modules/mktime (Makefile.am): Likewise.
38079         * modules/modechange (Makefile.am): Likewise.
38080         * modules/mountlist (Makefile.am): Likewise.
38081         * modules/nanosleep (Makefile.am): Likewise.
38082         * modules/obstack (Makefile.am): Likewise.
38083         * modules/openat (Makefile.am): Likewise.
38084         * modules/pagealign_alloc (Makefile.am): Likewise.
38085         * modules/pathmax (Makefile.am): Likewise.
38086         * modules/physmem (Makefile.am): Likewise.
38087         * modules/poll (Makefile.am): Likewise.
38088         * modules/posixtm (Makefile.am): Likewise.
38089         * modules/posixver (Makefile.am): Likewise.
38090         * modules/putenv (Makefile.am): Likewise.
38091         * modules/quote (Makefile.am): Likewise.
38092         * modules/quotearg (Makefile.am): Likewise.
38093         * modules/raise (Makefile.am): Likewise.
38094         * modules/read-file (Makefile.am): Likewise.
38095         * modules/readline (Makefile.am): Likewise.
38096         * modules/readlink (Makefile.am): Likewise.
38097         * modules/readtokens (Makefile.am): Likewise.
38098         * modules/readutmp (Makefile.am): Likewise.
38099         * modules/realloc (Makefile.am): Likewise.
38100         * modules/regex (Makefile.am): Likewise.
38101         * modules/rename-dest-slash (Makefile.am): Likewise.
38102         * modules/rename (Makefile.am): Likewise.
38103         * modules/rijndael (Makefile.am): Likewise.
38104         * modules/rmdir (Makefile.am): Likewise.
38105         * modules/rpmatch (Makefile.am): Likewise.
38106         * modules/safe-read (Makefile.am): Likewise.
38107         * modules/safe-write (Makefile.am): Likewise.
38108         * modules/same-inode (Makefile.am): Likewise.
38109         * modules/same (Makefile.am): Likewise.
38110         * modules/save-cwd (Makefile.am): Likewise.
38111         * modules/savedir (Makefile.am): Likewise.
38112         * modules/setenv (Makefile.am): Likewise.
38113         * modules/settime (Makefile.am): Likewise.
38114         * modules/sha1 (Makefile.am): Likewise.
38115         * modules/sig2str (Makefile.am): Likewise.
38116         * modules/snprintf (Makefile.am): Likewise.
38117         * modules/stat-macros (Makefile.am): Likewise.
38118         * modules/stat-time (Makefile.am): Likewise.
38119         * modules/stdbool (Makefile.am): Likewise.
38120         * modules/stdint (Makefile.am): Likewise.
38121         * modules/stdlib-safer (Makefile.am): Likewise.
38122         * modules/stpcpy (Makefile.am): Likewise.
38123         * modules/stpncpy (Makefile.am): Likewise.
38124         * modules/strcase (Makefile.am): Likewise.
38125         * modules/strcasestr (Makefile.am): Likewise.
38126         * modules/strchrnul (Makefile.am): Likewise.
38127         * modules/strcspn (Makefile.am): Likewise.
38128         * modules/strdup (Makefile.am): Likewise.
38129         * modules/strerror (Makefile.am): Likewise.
38130         * modules/strftime (Makefile.am): Likewise.
38131         * modules/strndup (Makefile.am): Likewise.
38132         * modules/strnlen (Makefile.am): Likewise.
38133         * modules/strpbrk (Makefile.am): Likewise.
38134         * modules/strsep (Makefile.am): Likewise.
38135         * modules/strstr (Makefile.am): Likewise.
38136         * modules/strtod (Makefile.am): Likewise.
38137         * modules/strtoimax (Makefile.am): Likewise.
38138         * modules/strtok_r (Makefile.am): Likewise.
38139         * modules/strtol (Makefile.am): Likewise.
38140         * modules/strtoll (Makefile.am): Likewise.
38141         * modules/strtoul (Makefile.am): Likewise.
38142         * modules/strtoull (Makefile.am): Likewise.
38143         * modules/strtoumax (Makefile.am): Likewise.
38144         * modules/strverscmp (Makefile.am): Likewise.
38145         * modules/sys_socket (Makefile.am): Likewise.
38146         * modules/sys_stat (Makefile.am): Likewise.
38147         * modules/sysexits (Makefile.am): Likewise.
38148         * modules/time_r (Makefile.am): Likewise.
38149         * modules/timegm (Makefile.am): Likewise.
38150         * modules/timespec (Makefile.am): Likewise.
38151         * modules/tmpfile-safer (Makefile.am): Likewise.
38152         * modules/trim (Makefile.am): Likewise.
38153         * modules/unistd-safer (Makefile.am): Likewise.
38154         * modules/unlinkdir (Makefile.am): Likewise.
38155         * modules/unlocked-io (Makefile.am): Likewise.
38156         * modules/userspec (Makefile.am): Likewise.
38157         * modules/utime (Makefile.am): Likewise.
38158         * modules/utimecmp (Makefile.am): Likewise.
38159         * modules/utimens (Makefile.am): Likewise.
38160         * modules/vasnprintf (Makefile.am): Likewise.
38161         * modules/vasprintf (Makefile.am): Likewise.
38162         * modules/vsnprintf (Makefile.am): Likewise.
38163         * modules/xalloc (Makefile.am): Likewise.
38164         * modules/xgetcwd (Makefile.am): Likewise.
38165         * modules/xnanosleep (Makefile.am): Likewise.
38166         * modules/xreadlink (Makefile.am): Likewise.
38167         * modules/xstrtod (Makefile.am): Likewise.
38168         * modules/xstrtol (Makefile.am): Likewise.
38169         * modules/xstrtold (Makefile.am): Likewise.
38170         * modules/yesno (Makefile.am): Likewise.
38171         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
38172
38173 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
38174
38175         * modules/error (Makefile.am): Distribute files through
38176         EXTRA_DIST, not lib_SOURCES.
38177
38178 2006-10-12  Eric Blake  <ebb9@byu.net>
38179
38180         * modules/error (Makefile.am): Distribute files in /lib.
38181         * modules/obstack (Makefile.am): Likewise.
38182
38183 2006-10-12  Bruno Haible  <bruno@clisp.org>
38184
38185         * modules/acl (Makefile.am): Distribute all files in lib/ through
38186         EXTRA_DIST.
38187         * modules/arcfour (Makefile.am): Likewise.
38188         * modules/arctwo (Makefile.am): Likewise.
38189         * modules/argmatch (Makefile.am): Likewise.
38190         * modules/argz (Makefile.am): Likewise.
38191         * modules/atexit (Makefile.am): Likewise.
38192         * modules/backupfile (Makefile.am): Likewise.
38193         * modules/c-strtod (Makefile.am): Likewise.
38194         * modules/c-strtold (Makefile.am): Likewise.
38195         * modules/calloc (Makefile.am): Likewise.
38196         * modules/canon-host (Makefile.am): Likewise.
38197         * modules/canonicalize (Makefile.am): Likewise.
38198         * modules/chdir-long (Makefile.am): Likewise.
38199         * modules/chdir-safer (Makefile.am): Likewise.
38200         * modules/check-version (Makefile.am): Likewise.
38201         * modules/chown (Makefile.am): Likewise.
38202         * modules/cloexec (Makefile.am): Likewise.
38203         * modules/close-stream (Makefile.am): Likewise.
38204         * modules/closeout (Makefile.am): Likewise.
38205         * modules/crc (Makefile.am): Likewise.
38206         * modules/cycle-check (Makefile.am): Likewise.
38207         * modules/des (Makefile.am): Likewise.
38208         * modules/dirfd (Makefile.am): Likewise.
38209         * modules/dirname (Makefile.am): Likewise.
38210         * modules/dup2 (Makefile.am): Likewise.
38211         * modules/euidaccess (Makefile.am): Likewise.
38212         * modules/exclude (Makefile.am): Likewise.
38213         * modules/exitfail (Makefile.am): Likewise.
38214         * modules/fcntl-safer (Makefile.am): Likewise.
38215         * modules/file-type (Makefile.am): Likewise.
38216         * modules/fileblocks (Makefile.am): Likewise.
38217         * modules/filemode (Makefile.am): Likewise.
38218         * modules/filenamecat (Makefile.am): Likewise.
38219         * modules/fnmatch (Makefile.am): Likewise.
38220         * modules/fopen-safer (Makefile.am): Likewise.
38221         * modules/fpending (Makefile.am): Likewise.
38222         * modules/fprintftime (Makefile.am): Likewise.
38223         * modules/free (Makefile.am): Likewise.
38224         * modules/fsusage (Makefile.am): Likewise.
38225         * modules/ftruncate (Makefile.am): Likewise.
38226         * modules/fts (Makefile.am): Likewise.
38227         * modules/gc (Makefile.am): Likewise.
38228         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
38229         * modules/getaddrinfo (Makefile.am): Likewise.
38230         * modules/getcwd (Makefile.am): Likewise.
38231         * modules/getdelim (Makefile.am): Likewise.
38232         * modules/getdomainname (Makefile.am): Likewise.
38233         * modules/getgroups (Makefile.am): Likewise.
38234         * modules/gethostname (Makefile.am): Likewise.
38235         * modules/gethrxtime (Makefile.am): Likewise.
38236         * modules/getline (Makefile.am): Likewise.
38237         * modules/getloadavg (Makefile.am): Likewise.
38238         * modules/getlogin_r (Makefile.am): Likewise.
38239         * modules/getopt (Makefile.am): Likewise.
38240         * modules/getpass (Makefile.am): Likewise.
38241         * modules/getpass-gnu (Makefile.am): Likewise.
38242         * modules/getsubopt (Makefile.am): Likewise.
38243         * modules/gettime (Makefile.am): Likewise.
38244         * modules/gettimeofday (Makefile.am): Likewise.
38245         * modules/getugroups (Makefile.am): Likewise.
38246         * modules/getusershell (Makefile.am): Likewise.
38247         * modules/glob (Makefile.am): Likewise.
38248         * modules/group-member (Makefile.am): Likewise.
38249         * modules/hard-locale (Makefile.am): Likewise.
38250         * modules/hash (Makefile.am): Likewise.
38251         * modules/hmac-md5 (Makefile.am): Likewise.
38252         * modules/hmac-sha1 (Makefile.am): Likewise.
38253         * modules/human (Makefile.am): Likewise.
38254         * modules/idcache (Makefile.am): Likewise.
38255         * modules/imaxabs (Makefile.am): Likewise.
38256         * modules/imaxdiv (Makefile.am): Likewise.
38257         * modules/inet_ntop (Makefile.am): Likewise.
38258         * modules/inet_pton (Makefile.am): Likewise.
38259         * modules/inttostr (Makefile.am): Likewise.
38260         * modules/isapipe (Makefile.am): Likewise.
38261         * modules/lchown (Makefile.am): Likewise.
38262         * modules/long-options (Makefile.am): Likewise.
38263         * modules/lstat (Makefile.am): Likewise.
38264         * modules/malloc (Makefile.am): Likewise.
38265         * modules/mathl (Makefile.am): Likewise.
38266         * modules/mbchar (Makefile.am): Likewise.
38267         * modules/md2 (Makefile.am): Likewise.
38268         * modules/md4 (Makefile.am): Likewise.
38269         * modules/md5 (Makefile.am): Likewise.
38270         * modules/memcasecmp (Makefile.am): Likewise.
38271         * modules/memchr (Makefile.am): Likewise.
38272         * modules/memcmp (Makefile.am): Likewise.
38273         * modules/memcoll (Makefile.am): Likewise.
38274         * modules/memcpy (Makefile.am): Likewise.
38275         * modules/memmem (Makefile.am): Likewise.
38276         * modules/memmove (Makefile.am): Likewise.
38277         * modules/mempcpy (Makefile.am): Likewise.
38278         * modules/memrchr (Makefile.am): Likewise.
38279         * modules/memset (Makefile.am): Likewise.
38280         * modules/memxor (Makefile.am): Likewise.
38281         * modules/mkancesdirs (Makefile.am): Likewise.
38282         * modules/mkdir (Makefile.am): Likewise.
38283         * modules/mkdir-p (Makefile.am): Likewise.
38284         * modules/mkdtemp (Makefile.am): Likewise.
38285         * modules/mkstemp (Makefile.am): Likewise.
38286         * modules/mktime (Makefile.am): Likewise.
38287         * modules/modechange (Makefile.am): Likewise.
38288         * modules/mountlist (Makefile.am): Likewise.
38289         * modules/nanosleep (Makefile.am): Likewise.
38290         * modules/openat (Makefile.am): Likewise.
38291         * modules/pagealign_alloc (Makefile.am): Likewise.
38292         * modules/physmem (Makefile.am): Likewise.
38293         * modules/poll (Makefile.am): Likewise.
38294         * modules/posixtm (Makefile.am): Likewise.
38295         * modules/posixver (Makefile.am): Likewise.
38296         * modules/putenv (Makefile.am): Likewise.
38297         * modules/quote (Makefile.am): Likewise.
38298         * modules/quotearg (Makefile.am): Likewise.
38299         * modules/raise (Makefile.am): Likewise.
38300         * modules/read-file (Makefile.am): Likewise.
38301         * modules/readline (Makefile.am): Likewise.
38302         * modules/readlink (Makefile.am): Likewise.
38303         * modules/readtokens (Makefile.am): Likewise.
38304         * modules/readutmp (Makefile.am): Likewise.
38305         * modules/realloc (Makefile.am): Likewise.
38306         * modules/regex (Makefile.am): Likewise.
38307         * modules/rename (Makefile.am): Likewise.
38308         * modules/rename-dest-slash (Makefile.am): Likewise.
38309         * modules/rijndael (Makefile.am): Likewise.
38310         * modules/rmdir (Makefile.am): Likewise.
38311         * modules/rpmatch (Makefile.am): Likewise.
38312         * modules/safe-read (Makefile.am): Likewise.
38313         * modules/safe-write (Makefile.am): Likewise.
38314         * modules/same (Makefile.am): Likewise.
38315         * modules/save-cwd (Makefile.am): Likewise.
38316         * modules/savedir (Makefile.am): Likewise.
38317         * modules/setenv (Makefile.am): Likewise.
38318         * modules/settime (Makefile.am): Likewise.
38319         * modules/sha1 (Makefile.am): Likewise.
38320         * modules/sig2str (Makefile.am): Likewise.
38321         * modules/snprintf (Makefile.am): Likewise.
38322         * modules/stdlib-safer (Makefile.am): Likewise.
38323         * modules/stpcpy (Makefile.am): Likewise.
38324         * modules/stpncpy (Makefile.am): Likewise.
38325         * modules/strcase (Makefile.am): Likewise.
38326         * modules/strcasestr (Makefile.am): Likewise.
38327         * modules/strchrnul (Makefile.am): Likewise.
38328         * modules/strcspn (Makefile.am): Likewise.
38329         * modules/strdup (Makefile.am): Likewise.
38330         * modules/strerror (Makefile.am): Likewise.
38331         * modules/strftime (Makefile.am): Likewise.
38332         * modules/strndup (Makefile.am): Likewise.
38333         * modules/strnlen (Makefile.am): Likewise.
38334         * modules/strpbrk (Makefile.am): Likewise.
38335         * modules/strsep (Makefile.am): Likewise.
38336         * modules/strstr (Makefile.am): Likewise.
38337         * modules/strtod (Makefile.am): Likewise.
38338         * modules/strtoimax (Makefile.am): Likewise.
38339         * modules/strtok_r (Makefile.am): Likewise.
38340         * modules/strtol (Makefile.am): Likewise.
38341         * modules/strtoll (Makefile.am): Likewise.
38342         * modules/strtoul (Makefile.am): Likewise.
38343         * modules/strtoull (Makefile.am): Likewise.
38344         * modules/strtoumax (Makefile.am): Likewise.
38345         * modules/strverscmp (Makefile.am): Likewise.
38346         * modules/time_r (Makefile.am): Likewise.
38347         * modules/timegm (Makefile.am): Likewise.
38348         * modules/tmpfile-safer (Makefile.am): Likewise.
38349         * modules/unistd-safer (Makefile.am): Likewise.
38350         * modules/unlinkdir (Makefile.am): Likewise.
38351         * modules/userspec (Makefile.am): Likewise.
38352         * modules/utime (Makefile.am): Likewise.
38353         * modules/utimecmp (Makefile.am): Likewise.
38354         * modules/utimens (Makefile.am): Likewise.
38355         * modules/vasnprintf (Makefile.am): Likewise.
38356         * modules/vasprintf (Makefile.am): Likewise.
38357         * modules/vsnprintf (Makefile.am): Likewise.
38358         * modules/xalloc (Makefile.am): Likewise.
38359         * modules/xgetcwd (Makefile.am): Likewise.
38360         * modules/xnanosleep (Makefile.am): Likewise.
38361         * modules/xreadlink (Makefile.am): Likewise.
38362         * modules/xstrtod (Makefile.am): Likewise.
38363         * modules/xstrtol (Makefile.am): Likewise.
38364         * modules/xstrtold (Makefile.am): Likewise.
38365         * modules/yesno (Makefile.am): Likewise.
38366
38367 2006-10-12  Jim Meyering  <jim@meyering.net>
38368
38369         * m4/getloadavg.m4: Revert the change below.
38370
38371         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
38372         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
38373         fail with a symlink, which is what coreutils' ./bootstrap now
38374         creates by default.
38375
38376 2006-10-12  Bruno Haible  <bruno@clisp.org>
38377
38378         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
38379         mingw.
38380         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
38381         MSVC and mingw explicitly.
38382
38383 2006-10-11  Simon Josefsson  <jas@extundo.com>
38384             Bruno Haible  <bruno@clisp.org>
38385
38386         Add support for multiple gnulib-tool invocations in the scope of a
38387         single configure.ac file.
38388         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
38389         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
38390         with the same contents as the _LIBADD variable.
38391         (func_emit_initmacro_start, func_emit_initmacro_end,
38392         func_emit_initmacro_done): New functions.
38393         (func_import, func_create_testdir): Invoke them. Allow the identifiers
38394         gl_LIBOBJS and gl_LTLIBOBJS.
38395
38396 2006-10-11  Bruno Haible  <bruno@clisp.org>
38397
38398         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
38399         (func_create_testdir): Don't create po/Makefile.am, don't invoke
38400         autoreconf. Instead, invoke autopoint explicitly but move back the
38401         *.m4 files from gnulib.
38402
38403 2006-10-11  Bruno Haible  <bruno@clisp.org>
38404
38405         * gnulib-tool (func_usage): Make module names after --create-testdir
38406         optional.
38407         (func_create_testdir): If no module was specified, use nearly all
38408         modules.
38409
38410 2006-10-12  Jim Meyering  <jim@meyering.net>
38411
38412         Big performance improvement for fts-based tools that use FTS_NOSTAT.
38413         Avoid spurious inode-mismatch problems on non-POSIX file systems.
38414         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
38415         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
38416         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
38417         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
38418         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
38419         (fts_set_stat_required): New function.
38420         (fts_open): Defer the calls to fts_stat, if possible or requested.
38421         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
38422         into fts_stat itself.
38423         (fts_read): Perform any required (deferred) fts_stat call.
38424         (fts_build): Likewise, for the directory we're about to open and read.
38425         In the readdir loop, carefully decide whether each entry will require
38426         an eventual call to fts_stat, using dirent.d_type info if available.
38427         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
38428         a command line argument into this function.  Update all callers.
38429         Map a return value of FTS_DOT to FTS_D for a command line argument.
38430         * modules/fts (Depends-on): Add d-type.  Alphabetize.
38431         Thanks to Miklos Szeredi for his tenacity and for the initial
38432         bug report about "find" failing on a FUSE-based file system.
38433
38434         * lib/fts.c (fts_open): Use consistent indentation.
38435
38436 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
38437
38438         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
38439         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
38440         reported by Jim Meyering.  All uses of cache variables renamed
38441         to match Autoconf's.
38442         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
38443         the other one.
38444
38445         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
38446         Fix misspelling in diagnostic.
38447
38448 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
38449
38450         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
38451         defined.  Problem reported by Matthew Woehlke.
38452
38453         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
38454         Add support for Tandem NonStop R series.
38455         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
38456         Use new macro.
38457
38458         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
38459         (has_trailing_slash): Omit size arg; all callers changed.
38460         Omit 'inline', since it doesn't help performance and we'd
38461         need to configure it.
38462         Don't count //, ///, etc. as having a trailing slash.
38463         As a side effect, this removes a C99ism reported by Matthew Woehlke.
38464         (rpl_rename_dest_slash): On failure, use rename's errno rather
38465         than (in some cases) an incorrect or junk errno.
38466         Simplify code by removing need to compute length; this does
38467         cause it to make two passes instead of one over the file name,
38468         but it's worth it.
38469
38470         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
38471         change, since Autoconf's version may no longer be appropriate now
38472         that we are using CVS Autoconf's version.  Add support for Tandem.
38473
38474 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
38475             Bruno Haible  <bruno@clisp.org>
38476
38477         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
38478         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
38479         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
38480         gl_AC_TYPE_LONG_LONG.
38481
38482         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
38483         instead of HAVE_LONG_LONG.
38484         * lib/printf-args.c (printf_fetchargs): Likewise.
38485         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
38486         * lib/vasnprintf.c (VASNPRINTF): Likewise.
38487         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
38488         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
38489         gl_AC_TYPE_LONG_LONG.
38490
38491 2006-10-11  Bruno Haible  <bruno@clisp.org>
38492
38493         * m4/longlong.m4: Add comments.
38494         * m4/ulonglong.m4: Likewise.
38495
38496 2006-10-10  Bruno Haible  <bruno@clisp.org>
38497
38498         Make it possible to #define stpcpy, strdup to aliases.
38499         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
38500         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
38501
38502 2006-10-10  Bruno Haible  <bruno@clisp.org>
38503
38504         Make it possible to #define gcd to an alias.
38505         * lib/gcd.c: Include config.h.
38506
38507 2006-10-10  Bruno Haible  <bruno@clisp.org>
38508
38509         Make it possible to #define c_isascii to an alias.
38510         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
38511         defined. Undefine the macros before defining them, to avoid gcc
38512         warnings.
38513         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
38514         define NO_C_CTYPE_MACROS early.
38515
38516 2006-10-10  Bruno Haible  <bruno@clisp.org>
38517
38518         Make it possible to #define set_program_name to an alias.
38519         * lib/progname.c: Don't undefine set_program_name; instead, undefine
38520         ENABLE_RELOCATABLE early.
38521
38522 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
38523
38524         Port to Tandem NSK OSS, which has 64-bit signed int but at most
38525         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
38526         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
38527         More generally, don't assume that 64-bit signed int is available
38528         if unsigned int is, and vice versa.
38529         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
38530         unsigned symbols, not on their signed counterparts.
38531         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
38532         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
38533         (UINT64_C, UINTMAX_C):
38534         Likewise.
38535         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
38536         unsigned counterparts.
38537         (Have_long_long, Unsigned): New macros.
38538         (Int): Renamed from INT.
38539         (strtoimax): Use the new macros.
38540         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
38541         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
38542         * modules/inttypes (inttypes.h): Substitute
38543         HAVE_UNSIGNED_LONG_LONG_INT.
38544         * modules/stdint (stdint.h): Likewise.
38545         (Files): Add m4/ulonglong.m4.
38546
38547 2006-10-10  Bruno Haible  <bruno@clisp.org>
38548
38549         Fix a gcc -Wshadow warning.
38550         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
38551         to 'bucket'.
38552         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
38553         gl_linked_indexof_from_to): Likewise.
38554         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
38555         Likewise.
38556         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
38557         Likewise.
38558         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
38559         Reported by Eric Blake.
38560
38561 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
38562
38563         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
38564         for NetBSD.  Problem reported by Bruno Haible.
38565
38566 2006-10-09  Jim Meyering  <jim@meyering.net>
38567
38568         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
38569         Patch from Bruno Haible.
38570
38571 2006-10-09  Jim Meyering  <jim@meyering.net>
38572
38573         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
38574         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
38575         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
38576
38577 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
38578
38579         Don't include <config.h> twice; this doesn't work in some cases,
38580         e.g., when config.h has "#define intmax_t long long int" and
38581         we include <config.h>, <inttypes.h>, <config.h> in that order.
38582         Problem reported by Matthew Woehlke in:
38583         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
38584         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
38585         * lib/fts-cycle.c: Don't include config.h.
38586         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
38587         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
38588         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
38589         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
38590         inttypes.h.
38591         * lib/xstrtoumax.c: Likewise.
38592         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
38593         __strtol and the like, so that this module is more like its siblings.
38594         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
38595         Remove; no longer needed now that we assume gnulib inttypes.h.
38596
38597 2006-10-08  Bruno Haible  <bruno@clisp.org>
38598
38599         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
38600         option.
38601
38602 2006-10-07  Jim Meyering  <jim@meyering.net>
38603
38604         * modules/inttypes (inttypes.h): Revert what seems to have been
38605         an inadvertent part of today's change: use "|", not "/" in the
38606         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
38607
38608 2006-10-07  Bruno Haible  <bruno@clisp.org>
38609
38610         * modules/sublist: New file.
38611
38612 2006-10-07  Bruno Haible  <bruno@clisp.org>
38613
38614         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
38615         * modules/argz (argz.h): Likewise.
38616         * modules/arpa_inet (arpa/inet.h): Likewise.
38617         * modules/byteswap (byteswap.h): Likewise.
38618         * modules/configmake (configmake.h): Likewise.
38619         * modules/fcntl (fcntl.h): Likewise.
38620         * modules/fnmatch (fnmatch.h): Likewise.
38621         * modules/getopt (getopt.h): Likewise.
38622         * modules/glob (glob.h): Likewise.
38623         * modules/inttypes (inttypes.h): Likewise.
38624         * modules/netinet_in (netinet/in.h): Likewise.
38625         * modules/poll (poll.h): Likewise.
38626         * modules/stdbool (stdbool.h): Likewise.
38627         * modules/stdint (stdint.h): Likewise.
38628         * modules/sys_select (sys/select.h): Likewise.
38629         * modules/sys_socket (sys/socket.h): Likewise.
38630         * modules/sys_stat (sys/stat.h): Likewise.
38631         * modules/sysexits (sysexits.h): Likewise.
38632         * modules/unistd (unistd.h): Likewise.
38633         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38634         Add a "DO NOT EDIT" comment to the generated file.
38635         (func_import): Likewise for gnulib-comp.m4.
38636
38637 2006-10-07  Bruno Haible  <bruno@clisp.org>
38638
38639         * lib/gl_sublist.h: New file.
38640         * lib/gl_sublist.c: New file.
38641
38642 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
38643
38644         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
38645         name (relative to the original working directory) and the file
38646         name component (relative to the temporary working directory).  All
38647         callers changed.
38648         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
38649         * lib/mkdir-p.c (make_dir_parents): Likewise.
38650         * lib/mkdir-p.h (make_dir_parents): Likewise.
38651
38652 2006-10-06  Eric Blake  <ebb9@byu.net>
38653
38654         Define several macros for use by the clean-temp module.
38655         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
38656         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
38657         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
38658
38659         * lib/clean-temp.h (close_stream_temp): New declaration.
38660         * lib/clean-temp.c (includes): Pull in headers according to what
38661         other modules are in use.
38662         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
38663
38664 2006-10-06  Bruno Haible  <bruno@clisp.org>
38665
38666         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
38667         instead of fopen, fwriteerror.
38668
38669 2006-10-06  Bruno Haible  <bruno@clisp.org>
38670
38671         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
38672         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
38673         int.
38674         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
38675         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
38676         Return an error indicator.
38677         Suggested by Eric Blake.
38678
38679 2006-10-06  Bruno Haible  <bruno@clisp.org>
38680
38681         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
38682         Reported by Eric Blake.
38683
38684 2006-10-06  Bruno Haible  <bruno@clisp.org>
38685
38686         * modules/closeout (Description): Mention stderr too.
38687
38688 2006-10-06  Bruno Haible  <bruno@clisp.org>
38689         and Paul Eggert  <eggert@cs.ucla.edu>
38690
38691         * lib/closeout.c (close_stdout): Also close stderr.
38692         * lib/closeout.h: Update comment.
38693
38694 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
38695
38696         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
38697         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
38698         * lib/dirchownmod.c: Include lchown.h.
38699         * lib/lchown.c: Don't include files that lchown.h now includes.
38700         Don't declare chown, since lchown.h now does that.
38701         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
38702         (lchown): Define to rpl_chown if lchown is declared but
38703         does not exist.  Declare using a prototype if lchown is not
38704         declared.  Add a copyright notice.
38705         * lib/mkstemp.h: Include <unistd.h>.
38706         * lib/openat.c: Include lchown.h.
38707
38708         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
38709         we now test for that separately.
38710         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
38711         rather than O_NOFOLLOW, when testing whether it's possible to
38712         avoid a race condition reliably.
38713         * lib/savewd.c (savewd_chdir): Likewise.
38714
38715         Remove macros that are no longer needed now that stdint.h is
38716         reliable.
38717         * lib/fsusage.c (UINTMAX_MAX): Remove.
38718         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
38719         * lib/utimecmp.c (SIZE_MAX): Remove.
38720
38721         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
38722
38723         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
38724         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
38725         O_NOATIME works.
38726
38727 2006-10-05  Bruno Haible  <bruno@clisp.org>
38728
38729         * lib/gl_list.h (gl_sortedlist_search_from_to,
38730         gl_sortedlist_indexof_from_to): New declarations.
38731         (gl_list_implementation): New fields sortedlist_search_from_to,
38732         sortedlist_indexof_from_to.
38733         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
38734         inline functions.
38735         * lib/gl_list.c (gl_sortedlist_search_from_to,
38736         gl_sortedlist_indexof_from_to): New functions.
38737         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
38738         function.
38739         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
38740         (gl_array_sortedlist_search_from_to): New function.
38741         (gl_array_list_implementation): Update.
38742         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
38743         function.
38744         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
38745         (gl_carray_sortedlist_search_from_to): New function.
38746         (gl_carray_list_implementation): Update.
38747         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
38748         gl_linked_sortedlist_indexof_from_to): New functions.
38749         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
38750         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
38751         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
38752         gl_tree_sortedlist_indexof_from_to): New functions.
38753         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
38754         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
38755         Update.
38756         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
38757         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
38758         Update.
38759
38760 2006-10-05  Bruno Haible  <bruno@clisp.org>
38761
38762         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
38763         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
38764         (struct gl_list_implementation): Add fields search_from_to,
38765         indexof_from_to. Remove fields search, indexof.
38766         (gl_list_search): Use the search_from_to method.
38767         (gl_list_search_from, gl_list_search_from_to): New functions.
38768         (gl_list_indexof): Use the indexof_from_to method.
38769         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
38770         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
38771         (gl_list_search_from, gl_list_search_from_to): New functions.
38772         (gl_list_indexof): Use the indexof_from_to method.
38773         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
38774         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
38775         gl_array_indexof. Add start_index, end_index arguments.
38776         (gl_array_search_from_to): Renamed from gl_array_search. Add
38777         start_index, end_index arguments.
38778         (gl_array_remove, gl_array_list_implementation): Update.
38779         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
38780         gl_carray_indexof. Add start_index, end_index arguments.
38781         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
38782         start_index, end_index arguments.
38783         (gl_carray_remove, gl_carray_list_implementation): Update.
38784         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
38785         gl_linked_search. Add start_index, end_index arguments.
38786         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
38787         start_index, end_index arguments.
38788         (gl_linked_remove): Update.
38789         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
38790         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
38791         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
38792         field to 'size_t'.
38793         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
38794         gl_tree_search. Add start_index, end_index arguments.
38795         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
38796         start_index, end_index arguments.
38797         (gl_tree_remove): Update.
38798         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
38799         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
38800         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
38801         function.
38802         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
38803         gl_tree_search. Add start_index, end_index arguments.
38804         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
38805         start_index, end_index arguments.
38806         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
38807         Update.
38808         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
38809
38810 2006-10-05  Bruno Haible  <bruno@clisp.org>
38811
38812         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
38813
38814         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
38815         fwriteerror_temp): New declarations.
38816         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
38817         (descriptors): New variable.
38818         (cleanup): First, close the descriptors.
38819         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
38820         fclose_temp, fwriteerror_temp): New functions.
38821
38822 2006-10-04  Jim Meyering  <jim@meyering.net>
38823
38824         * lib/fts.c (fts_open): Tiny comment change.
38825
38826 2006-10-04  Bruno Haible  <bruno@clisp.org>
38827
38828         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
38829         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
38830         gl_LOCK_BODY.
38831         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
38832         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
38833         gl_LOCK_EARLY_BODY.
38834         (gl_LOCK): Require gl_LOCK_BODY.
38835
38836 2006-10-04  Bruno Haible  <bruno@clisp.org>
38837
38838         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
38839         (gl_oset_search_atleast): New declaration.
38840         (struct gl_oset_implementation): Add field 'search_atleast'.
38841         (gl_oset_search_atleast): New inline function.
38842         * lib/gl_oset.c (gl_oset_search_atleast): New function.
38843         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
38844         (gl_array_oset_implementation): Update.
38845         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
38846         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
38847         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
38848
38849 2006-10-04  Bruno Haible  <bruno@clisp.org>
38850
38851         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
38852
38853 2006-10-03  Bruno Haible  <bruno@clisp.org>
38854
38855         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
38856         from gl_avltreehash_list_implementation.
38857
38858 2006-10-03  Bruno Haible  <bruno@clisp.org>
38859
38860         * lib/gl_oset.c (gl_oset_add): Fix return type.
38861
38862 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
38863
38864         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
38865
38866 2006-10-02  Eric Blake  <ebb9@byu.net>
38867
38868         * modules/strnlen (Depends-on): Add extensions.
38869
38870 2006-10-02  Eric Blake  <ebb9@byu.net>
38871
38872         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
38873         definition in 2.60+.
38874
38875 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
38876
38877         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
38878         checks.
38879
38880 2006-10-02  Bruno Haible  <bruno@clisp.org>
38881
38882         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
38883         to the AUTOMAKE_OPTIONS.
38884         Reported by Jim Meyering.
38885
38886 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
38887
38888         Work around bug in Solaris 10 /proc file system:
38889         /proc/self/fd/NNN/.. isn't the parent directory of
38890         the directory whose file descriptor is NNN.  This needs to
38891         be worked around at run time, not compile time, since a
38892         program might be built on Solaris 8, where things work, and
38893         run on Solaris 10.
38894         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
38895         to use the following interface instead:
38896         (OPENAT_BUFFER_SIZE): New macro.
38897         (openat_proc_name): New function.
38898         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
38899         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
38900         Likewise.
38901         * lib/openat-proc.c: New file.
38902         * modules/openat (Files): Add lib/openat-proc.c.
38903         (Depends-on): Add same-inode, stdbool.
38904         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
38905
38906 2006-09-29  Bruno Haible  <bruno@clisp.org>
38907
38908         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
38909         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
38910         argument. Set stdout_closed before testing for ferror, not after.
38911         (fwriteerror, fwriteerror_no_ebadf): New functions.
38912
38913 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38914
38915         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
38916
38917 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
38918
38919         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
38920         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
38921
38922 2006-09-28  Jim Meyering  <jim@meyering.net>
38923
38924         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
38925         Include <unistd.h>.
38926
38927 2006-09-28  Bruno Haible  <bruno@clisp.org>
38928
38929         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
38930         * modules/linkedhash-list (Depends-on): Likewise.
38931         * modules/rbtreehash-list (Depends-on): Likewise.
38932
38933 2006-09-28  Bruno Haible  <bruno@clisp.org>
38934
38935         * lib/strndup.h: Simplify the redefinition of strndup.
38936         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
38937         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
38938
38939 2006-09-28  Bruno Haible  <bruno@clisp.org>
38940
38941         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
38942         * lib/gl_linkedhash_list.c: Likewise.
38943         * lib/gl_rbtreehash_list.c: Likewise.
38944
38945 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
38946
38947         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
38948         getaddrinfo.
38949
38950         * lib/__fpending.h: Don't include <stdio_ext.h> unless
38951         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
38952         it causes <stdio_ext.h> to cause a compile-time error.
38953         Problem reported by Nelson H. F. Beebe.
38954         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
38955         of HAVE_DECL___PENDING.
38956
38957         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
38958         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
38959         declaration.
38960
38961 2006-09-27  Jim Meyering  <jim@meyering.net>
38962
38963         This file could end up with a definition for a function
38964         named __strndup, rather than rpl_strndup on a system with
38965         incomplete weak_alias support.
38966         * lib/strndup.c (strndup): Rename from __strndup.
38967         Remove #defines that used to map __strndup to strndup.
38968         Don't use K&R prototypes.
38969         Remove LIBC-related code, since this file is not sync'd with glibc.
38970         * lib/strndup.h: Revamp, accordingly.
38971         * m4/strndup.m4: Modernize.
38972
38973 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
38974
38975         * modules/savewd (Depends-on): Add 'raise'.
38976         * lib/savewd.c: Include <signal.h>, for 'raise'.
38977
38978 2006-09-26  Jim Meyering  <jim@meyering.net>
38979
38980         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
38981         when we detect Darwin 8.7.0's acl_get_file bug.
38982         Rearrange to perform the new (below) run-test while $LIBS
38983         contains any acl-related library.  Set USE_ACL at the end.
38984         (gl_ACL_GET_FILE): New function.
38985
38986 2006-09-26  Eric Blake  <ebb9@byu.net>
38987
38988         * lib/verror.c: Include <config.h> unconditionally.
38989
38990 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
38991
38992         * modules/clock-time (Maintainer): Add self.
38993         * modules/getlogin_r (Depends-on): Add extensions.
38994
38995 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38996
38997         * modules/clock-time: New module.
38998         * modules/nanosleep (Depends-on): Add clock-time.
38999         * modules/gethrxtime (Depends-on): Likewise.
39000         * modules/gettime (Depends-on): Likewise.
39001         * modules/settime (Depends-on): Likewise.
39002
39003         * modules/fts-lgpl: Depend on openat.
39004         * modules/mkancesdirs: Depend on savewd.
39005         * modules/mkdir-p: Likewise.
39006
39007 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39008
39009         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
39010
39011         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
39012         `gl_have_arbitrary_file_name_length_limit' to
39013         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
39014         actually works between configure runs.
39015
39016 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39017             Bruno Haible  <bruno@clisp.org>
39018
39019         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
39020
39021 2006-09-25  Jim Meyering  <jim@meyering.net>
39022
39023         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
39024         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
39025
39026 2006-09-25  Eric Blake  <ebb9@byu.net>
39027
39028         * gnulib-tool (func_import, func_create_testdir): Fix typos in
39029         exec's in 2006-09-18 patch when shuffling fds.
39030
39031 2006-09-25  Bruno Haible  <bruno@clisp.org>
39032
39033         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
39034         Reported by Jim Meyering.
39035
39036 2006-09-24  Jim Meyering  <jim@meyering.net>
39037
39038         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
39039         compare a pointer against a literal "0".  That caused failures with
39040         at least HP-UX's hpcc.
39041
39042 2006-09-22  Simon Josefsson  <jas@extundo.com>
39043
39044         * modules/gc-sha1:
39045         * modules/gc-md4:
39046         * modules/gc-hmac-sha1:
39047         * modules/gc-hmac-md5:
39048         * modules/gc-des:
39049         * modules/gc-arcfour: Distribute more files.
39050
39051 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39052
39053         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
39054         (gl_linked_iterator_from_to): Initialize struct completely.
39055         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
39056         (gl_tree_iterator_from_to): Likewise
39057         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
39058         * lib/gl_array_list.c [lint] (gl_array_iterator)
39059         (gl_array_iterator_from_to): Likewise.
39060         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
39061         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
39062         (gl_carray_iterator_from_to): Likewise.
39063
39064         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
39065         * lib/md4.c (md4_process_block): Remove unused variable.
39066         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
39067         parentheses for clarity.
39068
39069 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39070
39071         * modules/bison-i18n (Depends-on): Add gettext.
39072
39073 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39074
39075         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
39076         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
39077         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
39078         also add missing comma that caused broken test.
39079         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
39080         stdlib.h, for `abort'.
39081         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
39082         variables.
39083         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
39084         include unistd.h if present, for `rmdir'.
39085         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
39086         variables.
39087         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
39088         in the process include standard headers for prototypes.
39089         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
39090         gets declared on GNU/Linux.
39091         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
39092         unistd.h, for `rmdir'.
39093         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
39094
39095         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
39096         always true.
39097         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
39098
39099         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
39100
39101 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39102
39103         * gnulib-tool (func_version): Create output all at once.  This
39104         may help avoid triggering unnecessary SIGPIPEs, and at any
39105         rate it doesn't hurt.
39106
39107 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39108             Bruno Haible  <bruno@clisp.org>
39109
39110         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
39111         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
39112         * m4/signed.m4 (bh_C_SIGNED): Likewise.
39113
39114         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
39115         (gl_FUNC_VASPRINTF): Invoke it.
39116
39117 2006-09-22  Bruno Haible  <bruno@clisp.org>
39118
39119         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
39120         getloadavg.c as first argument.
39121
39122 2006-09-22  Bruno Haible  <bruno@clisp.org>
39123
39124         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
39125         at the beginning of the gl_INIT macro.
39126         * modules/getloadavg (configure.ac): Pass $gl_source_base to
39127         gl_GETLOADAVG.
39128
39129 2006-09-22  Bruno Haible  <bruno@clisp.org>
39130
39131         * gnulib-tool (func_create_megatestdir): Don't include the config-h
39132         module.
39133         Suggested by Ralf Wildenhues.
39134
39135 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
39136
39137         Import this patch from libc:
39138
39139         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
39140
39141         * lib/regex_internal.c (re_string_reconstruct): Handle
39142         offset < pstr->valid_raw_len && pstr->offsets_needed case.
39143         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
39144         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
39145         re_string_context_at.
39146
39147         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
39148         now requires it.
39149         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
39150         gl_REGEX now does it for us.
39151         (gl_REGEX): Add test taken from
39152         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
39153
39154         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
39155         Check that large offsets work.  Modernize Autoconf usages.
39156         Prefer "yes" to mean a good thing rather than a bad.
39157         Don't put "#define mkstemp" in config.h, as this might interfere
39158         with standard system headers that "#define mkstemp mkstemp64".
39159
39160         * modules/mkstemp (Depends-on): Add extensions, so that
39161         mkstemp is visible on some platforms.
39162         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
39163         (Include): Change to "mkstemp.h" from <stdlib.h>.
39164         (Files): Add mkstemp.h.
39165
39166         * lib/mkstemp.h: New file, since some standard headers
39167         #define mkstemp.
39168         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
39169         Include "mkstemp.h".
39170         Make the _LIBC code resemble glibc original more,
39171         e.g., use K&R style.
39172         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
39173         (mkstemp): Remove, since mkstemp.h does this for us.
39174         * lib/stdlib--.h: Include mkstemp.h.
39175
39176         Import this patch from libc:
39177
39178         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
39179
39180         * lib/tempname.c (__gen_tempname): Change attempts_min
39181         into a macro.  Use preprocessor to decide how to initialize
39182         attempts [Coverity CID 67].
39183
39184 2006-09-20  Bruno Haible  <bruno@clisp.org>
39185
39186         * lib/mkdtemp.c: Import from libc.
39187         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
39188                 * sysdeps/posix/tempname.c (__gen_tempname): Change
39189                 attempts_min into a macro.  Use preprocessor to decide how to
39190                 initialize attempts [Coverity CID 67].
39191         2001-11-27  Paul Eggert  <eggert@twinsun.com>
39192                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
39193                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
39194
39195 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39196
39197         * gnulib-tool (func_exit): New function, to allow to pass the
39198         exit status portably through the trap.  Use everywhere.
39199         (--help, --version): Signal a write error.
39200         (trap): catch SIGPIPE, for write errors.
39201         Exit at the end of the trap, with the correct exit status.
39202
39203 2006-09-19  Karl Berry  <karl@gnu.org>
39204
39205         * doc/gnulib.texi: note about the license texinfo files.
39206
39207 2006-09-19  Eric Blake  <ebb9@byu.net>
39208
39209         * gnulib-tool: Avoid space-tab.
39210
39211 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
39212
39213         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
39214         that prevented coreutils 6.1 from building.  Problem reported
39215         by Petter Reinholdtsen.
39216
39217 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
39218
39219         * gnulib-tool (avoidlist): Fix typo that broke options like
39220         --avoid=lock that are used by coreutils bootstrap.
39221
39222 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
39223
39224         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
39225         more systematically.
39226
39227 2006-09-18  Jim Meyering  <jim@meyering.net>
39228
39229         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
39230
39231 2006-09-18  Bruno Haible  <bruno@clisp.org>
39232
39233         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
39234
39235 2006-09-18  Bruno Haible  <bruno@clisp.org>
39236
39237         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
39238         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
39239         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
39240         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
39241         * m4/gettext.m4: Require autoconf >= 2.52.
39242         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
39243         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
39244         of gl_cv_header_inttypes_h.
39245
39246 2006-09-18  Bruno Haible  <bruno@clisp.org>
39247
39248         * lib/javaversion.c: Include configmake.h.
39249
39250 2006-09-18  Bruno Haible  <bruno@clisp.org>
39251
39252         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
39253         avoid that the while loops be executed in a subshell.
39254
39255 2006-09-18  Bruno Haible  <bruno@clisp.org>
39256
39257         * MODULES.html.sh (func_module): Break long lines.
39258         Suggested by Bruce Korb <bkorb@gnu.org>.
39259
39260 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39261
39262         Speed up by a factor of 1.12.
39263         * gnulib-tool (nl): New variable.
39264         (func_import): Rewrite include directive extraction to only read each
39265         directive once.
39266
39267 2006-09-17  Bruno Haible  <bruno@clisp.org>
39268
39269         * modules/javaversion (Makefile.am): Remove DEFS setting.
39270         (Depends-on): Add configmake, for PKGDATADIR definition.
39271
39272 2006-09-17  Bruno Haible  <bruno@clisp.org>
39273
39274         * gnulib-tool (func_create_testdir): Rewrite all files at once.
39275
39276 2006-09-17  Bruno Haible  <bruno@clisp.org>
39277
39278         * gnulib-tool (func_append): New function, stolen from libtool.m4.
39279         (func_modules_transitive_closure, func_modules_add_dummy,
39280         func_modules_to_filelist, func_import, func_create_testdir,
39281         func_create_megatestdir, ...): Use it wherever possible.
39282         Suggested by Ralf Wildenhues.
39283
39284 2006-09-16  Karl Berry  <karl@gnu.org>
39285
39286         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
39287         to avoid sectioning errors.
39288         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
39289         [ifinfo]: blank line after @center-ed titles.
39290         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
39291         Spell FSF address consistently with others.
39292         (These changes approved by rms.)
39293
39294 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39295
39296         Speed up by a factor of 1.61.
39297         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
39298         already checked module names again.
39299
39300 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39301
39302         Speed up by a factor of 1.13.
39303         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
39304         for new_files, and the input to func_add_or_update.
39305
39306 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39307
39308         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
39309         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
39310
39311 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
39312
39313         * modules/mkancesdirs (Depends-on): Add fcntl.
39314         * modules/savewd: New file.
39315         * MODULES.html.sh (File system functions): Add savewd.
39316
39317         * modules/configmake (Makefile.am): Add support for the
39318         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
39319
39320 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
39321
39322         * m4/savewd.m4: New file.
39323
39324 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
39325
39326         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
39327         (dirchownmod): New arg FD.  All callers changed.
39328         Use FD rather than opening the directory ourself, as opening is
39329         now the caller's responsibility.
39330         * lib/dirchownmod.h: Likewise.
39331         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
39332         hosts that require <sys/types.h> before <sys/stat.h>.  Include
39333         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
39334         (test_dir): Remove.
39335         (mkancesdirs): Return length of prefix of FILE that has already
39336         been made, or -2 if there is a child doing the work.  Redo
39337         algorithm so that it is O(N) rather than O(N**2).  Optimize away
39338         ".", and treat ".." specially since it might stray back into
39339         already-created areas.  Use a subprocess if necessary.  New arg
39340         WD; all users changed.  MAKE_DIR function should now return 1
39341         if it creates a directory that is not readable.  Return -2 if
39342         a child process is spun off.
39343         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
39344         Adjust signature to match code.
39345         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
39346         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
39347         all users changed.
39348         * lib/savewd.c, lib/savewd.h: New files.
39349
39350 2006-09-15  Jim Meyering  <jim@meyering.net>
39351
39352         * modules/rename-dest-slash: New module.
39353         * MODULES.html.sh (posix_compat): Add it here.
39354
39355         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
39356
39357 2006-09-15  Jim Meyering  <jim@meyering.net>
39358
39359         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
39360         file.
39361
39362         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
39363
39364 2006-09-15  Jim Meyering  <jim@meyering.net>
39365
39366         * lib/rename-dest-slash.c (has_trailing_slash): Use
39367         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
39368         (rpl_rename_dest_slash): Perform the cheaper trailing slash
39369         test before testing whether SRC is a directory.
39370         Suggestions from Bruno Haible.
39371
39372         Avoid a warning about an unused variable.
39373         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
39374         into the #ifdef block where it's used.
39375
39376         * lib/rename-dest-slash.c: New file.
39377
39378 2006-09-14  Bruno Haible  <bruno@clisp.org>
39379
39380         * lib/allocsa.c: Include <config.h> unconditionally.
39381         * lib/asnprintf.c: Likewise.
39382         * lib/asprintf.c: Likewise.
39383         * lib/c-strcasecmp.c: Likewise.
39384         * lib/c-strcasestr.c: Likewise.
39385         * lib/c-strncasecmp.c: Likewise.
39386         * lib/c-strstr.c: Likewise.
39387         * lib/classpath.c: Likewise.
39388         * lib/clean-temp.c: Likewise.
39389         * lib/concatpath.c: Likewise.
39390         * lib/copy-file.c: Likewise.
39391         * lib/csharpcomp.c: Likewise.
39392         * lib/csharpexec.c: Likewise.
39393         * lib/execute.c: Likewise.
39394         * lib/fatal-signal.c: Likewise.
39395         * lib/findprog.c: Likewise.
39396         * lib/fwriteerror.c: Likewise.
39397         * lib/gl_array_list.c: Likewise.
39398         * lib/gl_array_oset.c: Likewise.
39399         * lib/gl_avltree_list.c: Likewise.
39400         * lib/gl_avltree_oset.c: Likewise.
39401         * lib/gl_avltreehash_list.c: Likewise.
39402         * lib/gl_carray_list.c: Likewise.
39403         * lib/gl_linked_list.c: Likewise.
39404         * lib/gl_linkedhash_list.c: Likewise.
39405         * lib/gl_list.c: Likewise.
39406         * lib/gl_oset.c: Likewise.
39407         * lib/gl_rbtree_list.c: Likewise.
39408         * lib/gl_rbtree_oset.c: Likewise.
39409         * lib/gl_rbtreehash_list.c: Likewise.
39410         * lib/imaxabs.c: Likewise.
39411         * lib/imaxdiv.c: Likewise.
39412         * lib/javacomp.c: Likewise.
39413         * lib/javaexec.c: Likewise.
39414         * lib/javaversion.c: Likewise.
39415         * lib/linebreak.c: Likewise.
39416         * lib/localcharset.c: Likewise.
39417         * lib/lock.c: Likewise.
39418         * lib/mbchar.c: Likewise.
39419         * lib/mbswidth.c: Likewise.
39420         * lib/mkdtemp.c: Likewise.
39421         * lib/pipe.c: Likewise.
39422         * lib/printf-args.c: Likewise.
39423         * lib/printf-parse.c: Likewise.
39424         * lib/progname.c: Likewise.
39425         * lib/progreloc.c: Likewise.
39426         * lib/readlink.c: Likewise.
39427         * lib/sh-quote.c: Likewise.
39428         * lib/stpcpy.c: Likewise.
39429         * lib/stpncpy.c: Likewise.
39430         * lib/strcasecmp.c: Likewise.
39431         * lib/strcasestr.c: Likewise.
39432         * lib/strcspn.c: Likewise.
39433         * lib/striconv.c: Likewise.
39434         * lib/strncasecmp.c: Likewise.
39435         * lib/strnlen1.c: Likewise.
39436         * lib/strstr.c: Likewise.
39437         * lib/strtok_r.c: Likewise.
39438         * lib/tls.c: Likewise.
39439         * lib/tmpdir.c: Likewise.
39440         * lib/unicodeio.c: Likewise.
39441         * lib/unsetenv.c: Likewise.
39442         * lib/vasnprintf.c: Likewise.
39443         * lib/vasprintf.c: Likewise.
39444         * lib/wait-process.c: Likewise.
39445         * lib/xallocsa.c: Likewise.
39446         * lib/xsetenv.c: Likewise.
39447         * lib/xstriconv.c: Likewise.
39448
39449 2006-09-13  Simon Josefsson  <jas@extundo.com>
39450
39451         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
39452         that internally, suggested by Ralf Wildenhues
39453         <Ralf.Wildenhues@gmx.de>.
39454
39455 2006-09-13  Simon Josefsson  <jas@extundo.com>
39456
39457         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
39458         @LIBOBJS@.
39459         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39460
39461 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
39462
39463         * lib/_fpending.c: Include <config.h> unconditionally, since we no
39464         longer worry about uses that don't define HAVE_CONFIG_H.
39465         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
39466         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
39467         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
39468         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
39469         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
39470         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
39471         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
39472         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
39473         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
39474         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
39475         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
39476         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
39477         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
39478         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
39479         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
39480         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
39481         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
39482         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
39483         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
39484         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
39485         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
39486         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
39487         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
39488         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
39489         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
39490         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
39491         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
39492         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
39493         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
39494         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
39495         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
39496         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
39497         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
39498         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
39499         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
39500         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
39501         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
39502         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
39503         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
39504         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
39505         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
39506         Likewise.
39507
39508 2006-09-13  Eric Blake  <ebb9@byu.net>
39509
39510         * lib/getopt.c: Fix typo in last commit.
39511
39512 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
39513
39514         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
39515         dgettext.
39516
39517 2006-09-12  Jim Meyering  <jim@meyering.net>
39518
39519         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
39520         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
39521         Reported by Nelson H. F. Beebe.
39522
39523 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
39524
39525         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
39526         program_invocation_name and program_invocation_short_name are
39527         initialized.
39528         * lib/argp-namefrob.h: Move declarations of program_invocation_name
39529         and program_invocation_short_name to argp.h, so they are visible
39530         to user programs.
39531         * lib/argp.h: Likewise
39532
39533 2006-09-10  Bruno Haible  <bruno@clisp.org>
39534
39535         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
39536         m4/inttypes_h.m4, m4/uintmax_t.m4.
39537
39538 2006-09-10  Bruno Haible  <bruno@clisp.org>
39539
39540         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
39541         gl_AC_TYPE_UINTMAX_T.
39542
39543 2006-09-10  Bruno Haible  <bruno@clisp.org>
39544
39545         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
39546
39547 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39548
39549         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
39550         convention.  Text proposed by Bruno Haible.
39551         (struct argp_option): Document the use of N_() wrappers.
39552
39553         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
39554         '\v', and translate the two parts separately, instead of feeding
39555         the whole string to gettext.  This allows to exclude
39556         '\v' from the strings visible to the translator by writing doc
39557         strings as N_("..") "\v" N_("..").
39558
39559 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
39560
39561         * config/srclist.txt: Undo latest change; the bug was fixed.
39562
39563 2006-09-09  Bruno Haible  <bruno@clisp.org>
39564
39565         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
39566         assignments if building a library without libtool.
39567         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
39568         in func_emit_lib_Makefile_am.
39569         (func_import): When building a static library libfoo.a, arrange to
39570         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
39571         (func_create_testdir): Likewise.
39572         * modules/gc (configure.ac, Makefile.am): If building statically,
39573         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
39574         * modules/iconvme (configure.ac, Makefile.am): Likewise.
39575         * modules/striconv (configure.ac, Makefile.am): Likewise.
39576         Based on a suggestion by Ralf Wildenhues.
39577
39578 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39579
39580         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
39581         Check for unistd.h too, since Autoconf doesn't assume POSIX.
39582         Also:
39583
39584         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39585         Add year_2050_test to catch glibc bug 2821
39586         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
39587
39588         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
39589         Prefer #ifdef to #if.
39590
39591         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
39592         Return from 'main' instead of calling 'exit'.
39593
39594 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39595
39596         * lib/mktime.c (guess_time_tm): Fix bug where mktime
39597         returned the maximum time_t value rather than (time_t) -1.
39598         Problem originally reported by William Bardwell
39599         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
39600
39601         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
39602         Moved to here ...
39603         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
39604         ... from here.
39605
39606 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
39607
39608         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
39609         2821 is fixed.
39610
39611 2006-09-08  Jim Meyering  <jim@meyering.net>
39612
39613         Don't make generated files read-only.  That would bother too many
39614         people.  However, do retain the ability to work when targets are
39615         read-only: remove the destination and temporary files before writing
39616         them (when generated via sed or echo), or by using the -f option for
39617         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
39618         * modules/alloca-opt, modules/argz, modules/arpa_inet:
39619         * modules/byteswap, modules/configmake, modules/fcntl:
39620         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
39621         * modules/localcharset, modules/netinet_in, modules/poll:
39622         * modules/stdbool, modules/stdint, modules/sys_select:
39623         * modules/sys_socket, modules/sys_stat, modules/sysexits:
39624
39625 2006-09-08  Jim Meyering  <jim@meyering.net>
39626
39627         Avoid new build failure on FreeBSD 6.0.
39628         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
39629         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
39630         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
39631
39632 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39633
39634         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
39635
39636 2006-09-07  Jim Meyering  <jim@meyering.net>
39637
39638         Fix global typo in last change: use chmod u-w, not chmod u-x.
39639         Spotted by Paul Eggert and Bruce Korb.
39640         * modules/alloca-opt, modules/argz, modules/arpa_inet:
39641         * modules/byteswap, modules/configmake, modules/fcntl:
39642         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
39643         * modules/localcharset, modules/netinet_in, modules/poll:
39644         * modules/stdbool, modules/stdint, modules/sys_select:
39645         * modules/sys_socket, modules/sys_stat, modules/sysexits:
39646
39647 2006-09-06  Jim Meyering  <jim@meyering.net>
39648
39649         Make generated files be read-only.
39650         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
39651         Ensure that each generated file is now read-only.
39652         * modules/argz: Likewise.
39653         * modules/arpa_inet: Likewise.
39654         * modules/byteswap: Likewise.
39655         * modules/configmake: Likewise.
39656         * modules/fcntl: Likewise.
39657         * modules/fnmatch: Likewise.
39658         * modules/getopt: Likewise.
39659         * modules/glob: Likewise.
39660         * modules/inttypes: Likewise.
39661         * modules/netinet_in: Likewise.
39662         * modules/poll: Likewise.
39663         * modules/stdbool: Likewise.
39664         * modules/stdint: Likewise.
39665         * modules/sys_select: Likewise.
39666         * modules/sys_socket: Likewise.
39667         * modules/sys_stat: Likewise.
39668         * modules/sysexits: Likewise.
39669         * modules/localcharset: Same as above, but continue using temporary
39670         file named "t-$@" (why different?) rather than the "$@-t" used
39671         everywhere else.
39672
39673         * modules/sysexits (Makefile.am): Replace literal occurrences
39674         of "sysexit.h" more readable, and more consistent, "$@".
39675
39676 2006-09-06  Bruno Haible  <bruno@clisp.org>
39677
39678         * modules/striconv: New file.
39679         * modules/xstriconv: New file.
39680         * MODULES.html.sh (Internationalization functions): Add striconv,
39681         xstriconv.
39682
39683 2006-09-06  Bruno Haible  <bruno@clisp.org>
39684
39685         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
39686         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
39687         not using libtool correctly.
39688
39689 2006-09-06  Bruno Haible  <bruno@clisp.org>
39690
39691         * lib/striconv.h: New file.
39692         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
39693         iconvstring.c.
39694         * lib/xstriconv.h: New file.
39695         * lib/xstriconv.c: New file.
39696
39697 2006-09-06  Bruno Haible  <bruno@clisp.org>
39698
39699         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
39700         lib_..._LDFLAGS.
39701
39702 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39703
39704         * lib/argz_.h: Sync from Libtool.
39705
39706         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
39707                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
39708
39709         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
39710
39711 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
39712
39713         * modules/trim: New file.
39714
39715 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
39716
39717         * lib/trim.h: New file.
39718         * lib/trim.c: New file.
39719
39720 2006-09-05  Bruno Haible  <bruno@clisp.org>
39721
39722         * MODULES.html.sh (String handling): Add trim.
39723
39724 2006-09-04  Karl Berry  <karl@gnu.org>
39725
39726         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
39727         until next release.
39728
39729 2006-09-03  Bruno Haible  <bruno@clisp.org>
39730
39731         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
39732         correctly.
39733
39734 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
39735
39736         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
39737         not gl_GETLOADAVG.  Omit unneeded semicolons.
39738         Problems reported by Ralf Wildenhues in
39739         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
39740         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
39741         at the end, which is the usual gnulib style.
39742
39743         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
39744         of doing all the work ourselves.
39745         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
39746         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
39747
39748 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
39749
39750         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
39751         Problem reported by Ralf Wildenhues in
39752         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
39753
39754         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
39755         HAVE_STRUCT_STATFS_F_FSTYPENAME.
39756
39757 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
39758
39759         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
39760         yesterday's patch by changing test -n to test -z.
39761
39762 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39763
39764         * modules/getloadavg (Files): Add m4/getloadavg.m4.
39765         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
39766         the former is now obsolescent.
39767
39768         * modules/chdir-long (Depends-on): Add fcntl.
39769
39770 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39771
39772         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
39773         obsolescent, and programs should use gnulib instead.
39774         * m4/getloadavg.m4: New file, with contents taken from Autoconf
39775         but with prefixes changed.
39776
39777 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
39778
39779         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
39780         or stdbool.h, because they might not exist while configuring.
39781
39782         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
39783         Don't include unistd.h or limits.h; not needed, since chdir-long.h
39784         does that for us.
39785         (O_DIRECTORY): Remove.
39786
39787 2006-08-31  Eric Blake  <ebb9@byu.net>
39788
39789         * gnulib-tool: Don't let emacs change spaces to TAB.
39790
39791 2006-08-31  Bruno Haible  <bruno@clisp.org>
39792
39793         * gnulib-tool: When calling func_import more than once, do it in a
39794         subshell.
39795         Reported by Eric Blake <ebb9@byu.net>.
39796
39797 2006-08-31  Bruno Haible  <bruno@clisp.org>
39798
39799         * gnulib-tool (nl): Remove variable.
39800         (sed_transform_lib_file): Use more robust test for config-h module.
39801         (func_import): Fix typo in 2006-08-25 patch.
39802
39803 2006-08-31  Bruno Haible  <bruno@clisp.org>
39804
39805         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
39806         specified, augment Makefile.am variables instead of assigning them.
39807
39808 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
39809
39810         Work around a bug in both the Linux and SunOS 64-bit kernels:
39811         nanosleep mishandles sleeps for longer than 2**31 seconds.
39812         Problem reported by Frank v Waveren in
39813         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
39814         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
39815         Check for nanosleep bug.
39816         (LIB_NANOSLEEP): Append clock_gettime library if needed.
39817
39818 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
39819
39820         Work around a bug in both the Linux and SunOS 64-bit kernels:
39821         nanosleep mishandles sleeps for longer than 2**31 seconds.
39822         Problem reported by Frank v Waveren in
39823         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
39824         * lib/nanosleep.c (BILLION): New constant.
39825         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
39826         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
39827         implementation.
39828
39829 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
39830
39831         * modules/nanosleep (Depends-on): Add gettime.
39832
39833 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
39834         and Simon Josefsson  <jas@extundo.com>
39835         and Oskar Liljeblad  <oskar@osk.mine.nu>
39836
39837         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
39838         * gnulib-tool (func_import): New license type 'unmodifiable license
39839         text'.
39840         * modules/fdl: Use it.  Longer description.
39841         * module/gpl, module/lgpl: New files.
39842
39843 2006-08-30  Jim Meyering  <jim@meyering.net>
39844
39845         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
39846         shadowing the parameter.
39847
39848 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39849
39850         Sync from Libtool:
39851
39852         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39853
39854         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
39855         sharing with gnulib.  Report by Eric Blake.
39856
39857 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
39858
39859         * modules/isapipe: New file.
39860         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
39861
39862 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
39863
39864         * modules/configmake (Makefile.am): Add a comment, and omit
39865         the CONFIGMAKE_ prefix from generated macro names.  Suggested
39866         by Bruno Haible.
39867
39868 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
39869
39870         * m4/isapipe.m4: New file.
39871
39872 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
39873
39874         * lib/isapipe.c, lib/isapipe.h: New files.
39875
39876 2006-08-29  Jim Meyering  <jim@meyering.net>
39877
39878         * modules/configmake (Makefile.am): Make configmake.h depend on
39879         Makefile.  Otherwise, a stale configmake.h could hang around.
39880
39881 2006-08-29  Eric Blake  <ebb9@byu.net>
39882
39883         * lib/error.c (error_at_line, print_errno_message): Match libc, after
39884         resolution of upstream bug 3044.
39885
39886 2006-08-29  Bruno Haible  <bruno@clisp.org>
39887
39888         * modules/localcharset (Depends-on): Add configmake.
39889         (Makefile.am): Remove setting of LIBDIR through DEFS.
39890
39891 2006-08-29  Bruno Haible  <bruno@clisp.org>
39892
39893         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
39894         defined.
39895
39896 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
39897
39898         * modules/fcntl: New file.
39899         * modules/chdir-safer (Depends-on): Add fcntl.
39900         * modules/fts: Likewise.
39901         * modules/mkdir-p: Likewise.
39902
39903         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
39904         This undoes the most recent change, since we're now addressing the
39905         problem in a different way.
39906
39907         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
39908         into output, since the output might be called Makefile.am even
39909         if $makefile_name is something different.
39910         (func_import): Use $makefile_am rather than
39911         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
39912         empty.
39913
39914         * modules/inttypes (Files): Add m4/inttypes-h.m4.
39915
39916 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
39917
39918         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
39919         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
39920         recent change to stdint.m4, since we're now addressing the problem in a
39921         different way.
39922
39923 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
39924
39925         * m4/fcntl_h.m4: New file.
39926
39927 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
39928
39929         * lib/fcntl_.h: New file.
39930         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
39931         the fcntl module.
39932         * lib/dirchownmod.c: Likewise.
39933         * lib/fts.c: Likewise.
39934
39935         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
39936         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
39937         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
39938         just before including <inttypes.h>, to avoid circular inclusion.
39939
39940 2006-08-28  Jim Meyering  <jim@meyering.net>
39941
39942         * doc/visibility.texi: Actually read and correct the grammar of the
39943         sentence affected by yesterday's change.
39944
39945 2006-08-28  Eric Blake  <ebb9@byu.net>
39946
39947         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
39948         needs wrapper.
39949
39950 2006-08-28  Eric Blake  <ebb9@byu.net>
39951
39952         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
39953
39954 2006-08-28  Eric Blake  <ebb9@byu.net>
39955
39956         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
39957
39958 2006-08-28  Bruno Haible  <bruno@clisp.org>
39959
39960         * modules/c-strstr: New file, from GNU gettext.
39961         * MODULES.html.sh (String handling): Add c-strstr.
39962
39963 2006-08-28  Bruno Haible  <bruno@clisp.org>
39964
39965         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
39966         macros.
39967         Reported by Eric Blake.
39968
39969 2006-08-28  Bruno Haible  <bruno@clisp.org>
39970
39971         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
39972         (VASNPRINTF): Return a string of length > INT_MAX without failing.
39973         * lib/vasprintf.c: Include errno.h, limits.h.
39974         (EOVERFLOW): New fallback definition.
39975         (vasprintf): Test here whether the string length is > INT_MAX.
39976         * lib/vsnprintf.c: Include errno.h, limits.h.
39977         (EOVERFLOW): New fallback definition.
39978         (vsnprintf): Fix bug when generated string was too long for the buffer.
39979         Test here whether the string length is > INT_MAX.
39980
39981 2006-08-28  Bruno Haible  <bruno@clisp.org>
39982
39983         * lib/inttypes_.h (SCNX*): Remove definitions.
39984         Reported by Eric Blake.
39985
39986 2006-08-28  Bruno Haible  <bruno@clisp.org>
39987
39988         * lib/c-strstr.h: New file, from GNU gettext.
39989         * lib/c-strstr.c: New file, from GNU gettext.
39990
39991 2006-08-28  Bruno Haible  <bruno@clisp.org>
39992
39993         * gnulib-tool: Reorder some statements.
39994
39995 2006-08-28  Bruno Haible  <bruno@clisp.org>
39996
39997         * gnulib-tool: New option --makefile-name.
39998         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
39999         $makefile_name.
40000         (func_import): Write $makefile_name to the cache file, and read it from
40001         there unless explicitly specified. Use $makefile_name as file name
40002         instead of Makefile.am. Adjust the recommendations accordingly.
40003
40004 2006-08-28  Bruno Haible  <bruno@clisp.org>
40005
40006         * gnulib-tool (func_verify_module): Check against misapplying patch.
40007
40008 2006-08-28  Bruno Haible  <bruno@clisp.org>
40009
40010         * gnulib-tool (func_relativize, func_relconcat): New functions.
40011         Give an error if --local-dir is given with --update.
40012         Remove trailing slashes from $local_gnulib_dir.
40013         (func_import): Store the relativized $local_gnulib_dir in
40014         gnulib-cache.m4, and read it from there if not specified explicitly.
40015
40016 2006-08-28  Bruno Haible  <bruno@clisp.org>
40017
40018         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
40019         is the current directory. Respect also $local_gnulib_dir.
40020
40021 2006-08-28  Bruno Haible  <bruno@clisp.org>
40022             Simon Josefsson  <jas@extundo.com>
40023
40024         BeOS portability.
40025         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
40026
40027 2006-08-27  Jim Meyering  <jim@meyering.net>
40028
40029         * doc/visibility.texi: Remove duplicate word: "pointer".
40030
40031 2006-08-26  Bruno Haible  <bruno@clisp.org>
40032
40033         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
40034         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
40035         (Makefile.am): Create inttypes.h from inttypes_.h.
40036         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
40037
40038         * modules/imaxabs: New file.
40039
40040         * modules/imaxdiv: New file.
40041
40042 2006-08-26  Bruno Haible  <bruno@clisp.org>
40043
40044         * m4/inttypes.m4: New file.
40045         * m4/_inttypes_h.m4: Remove file.
40046         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
40047         PRI_MACROS_BROKEN.
40048         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
40049
40050         * m4/imaxabs.m4: New file.
40051
40052         * m4/imaxdiv.m4: New file.
40053
40054 2006-08-26  Bruno Haible  <bruno@clisp.org>
40055
40056         * lib/inttypes_.h: New file.
40057         * lib/inttypes.h: Remove file.
40058         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
40059
40060         * lib/imaxabs.c: New file.
40061
40062         * lib/imaxdiv.c: New file.
40063
40064 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40065
40066         New config-h module, so that "make" output needn't be cluttered
40067         by -DHAVE_CONFIG_H.
40068         * MODULES.html.sh (Support for building libraries and executables):
40069         Add config-h.
40070         * modules/config-h: New file.
40071         * gnulib-tool (nl, sed_transform_lib_file): New vars.
40072         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
40073         the config-h module is used.
40074
40075         New configmake module, so that "make" output needn't be cluttered
40076         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
40077         * MODULES.html.sh (Support for building libraries and executables):
40078         Add configmake.
40079         * modules/configmake: New file.
40080
40081 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
40082
40083         * m4/config-h.m4: New file.
40084
40085 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
40086
40087         * config/srclist.txt: Add elisp-comp.
40088
40089 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
40090
40091         * MODULES.html.sh (Support for building libraries and executables):
40092         Add elisp-comp.
40093         * build-aux/elisp-comp: New file.
40094         * modules/elisp-comp: New file.
40095
40096 2006-08-24  Bruno Haible  <bruno@clisp.org>
40097
40098         * gnulib-tool (func_create_testdir): Use non-default values of
40099         sourcebase and m4base.
40100
40101 2006-08-24  Bruno Haible  <bruno@clisp.org>
40102
40103         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
40104         HTML structure.
40105
40106 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
40107
40108         * modules/openat (Depends-on): Add lchown.
40109
40110 2006-08-23  Bruno Haible  <bruno@clisp.org>
40111
40112         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
40113         of gl_LOCK_EARLY instead of gl_LOCK.
40114
40115 2006-08-23  Bruno Haible  <bruno@clisp.org>
40116
40117         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
40118         on OSF/1 to no.
40119         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
40120
40121 2006-08-23  Bruno Haible  <bruno@clisp.org>
40122
40123         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
40124         as unusable.
40125
40126         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
40127         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
40128         (gl_LOCK): New macro.
40129
40130 2006-08-22  Simon Josefsson  <jas@extundo.com>
40131
40132         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
40133         to md5 module.
40134
40135 2006-08-22  Simon Josefsson  <jas@extundo.com>
40136
40137         * MODULES.html.sh: Add "Support for maintaining and release
40138         projects".
40139
40140         * build-aux/gnupload: New file, from coreutils.
40141
40142 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
40143
40144         Avoid the need for AC_LIBSOURCES in m4 macros.
40145         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
40146         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
40147         * modules/check-version (EXTRA_DIST): Add check-version.h.
40148         * modules/crc (EXTRA_DIST): Add crc.h.
40149         * modules/des (EXTRA_DIST): Add des.h.
40150         * modules/gc (EXTRA_DIST): Add gc.h.
40151         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
40152         * modules/getline (EXTRA_DIST): Add getline.h.
40153         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
40154         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
40155         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
40156         * modules/md2 (EXTRA_DIST): Add md2.h.
40157         * modules/md4 (EXTRA_DIST): Add md4.h.
40158         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
40159         * modules/read-file (EXTRA_DIST): Add read-file.h.
40160         * modules/readline (EXTRA_DIST): Add readline.h.
40161         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
40162         rijndael-api-fst.h.
40163
40164 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
40165
40166         * m4/rijndael.m4 (gl_ARCFOUR):
40167         * m4/arctwo.m4 (gl_ARCTWO):
40168         * m4/check-version.m4 (gl_CHECK_VERSION):
40169         * m4/crc.m4 (gl_CRC):
40170         * m4/des.m4 (gl_DES):
40171         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
40172         * m4/gc.m4 (gl_GC):
40173         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
40174         * m4/getline.m4 (gl_FUNC_GETLINE):
40175         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
40176         * m4/hmac-md5.m4 (gl_HMAC_MD5):
40177         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
40178         * m4/md2.m4 (gl_MD2):
40179         * m4/md4.m4 (gl_MD4):
40180         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
40181         * m4/read-file.m4 (gl_FUNC_READ_FILE):
40182         * m4/readline.m4 (gl_FUNC_READLINE):
40183         * m4/rijndael.m4 (gl_RIJNDAEL):
40184         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
40185         to get the necessary .h files and whatnot.
40186
40187 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
40188
40189         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
40190         gnulib rather than the other way around.
40191         * config/srclistvars.sh (COREUTILS): Remove.
40192
40193 2006-08-22  Jim Meyering  <jim@meyering.net>
40194
40195         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
40196
40197         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
40198
40199 2006-08-22  Eric Blake  <ebb9@byu.net>
40200
40201         * modules/regexprops-generic: New file.
40202         * MODULES.html.sh (Support for building documentation): List it.
40203
40204 2006-08-22  Eric Blake  <ebb9@byu.net>
40205
40206         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
40207         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
40208         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
40209         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
40210
40211 2006-08-22  Bruno Haible  <bruno@clisp.org>
40212
40213         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
40214         and lib_LTLIBRARIES like the other lib_* variables.
40215
40216 2006-08-22  Bruno Haible  <bruno@clisp.org>
40217
40218         * build-aux/x-to-1.in: New file, from GNU gettext.
40219
40220 2006-08-22  Bruno Haible  <bruno@clisp.org>
40221
40222         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
40223         <utmpx.h> exists.
40224
40225 2006-08-22  Bruno Haible  <bruno@clisp.org>
40226
40227         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
40228         <utmpx.h> exists.
40229
40230 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
40231
40232         BeOS portability.
40233         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
40234         exist.
40235         Problem reported by Bruno Haible.
40236
40237 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
40238
40239         Avoid the need for AC_LIBSOURCES in m4 macros.
40240         * modules/acl (EXTRA_DIST): Add acl.h.
40241         * modules/argmatch (Files): Add m4/argmatch.m4.
40242         (configure.ac): Add gl_ARGMATCH.
40243         (EXTRA_DIST): Renamed from lib_SOURCES, for
40244         consistency with the other modules.  Remove argmatch.c.
40245         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
40246         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
40247         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
40248         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
40249         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
40250         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
40251         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
40252         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
40253         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
40254         * modules/closeout (EXTRA_DIST): Add closeout.h.
40255         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
40256         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
40257         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
40258         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
40259         dirname.h; remove basename.c and stripslash.c.
40260         * modules/exclude (EXTRA_DIST): Add exclude.h.
40261         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
40262         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
40263         * modules/file-type (EXTRA_DIST): Add file-type.h.
40264         * modules/filemode (EXTRA_DIST): Add filemode.h.
40265         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
40266         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
40267         * modules/fpending (EXTRA_DIST): Add __fpending.h.
40268         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
40269         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
40270         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
40271         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
40272         * modules/getdate (EXTRA_DIST): Add getdate.c.
40273         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
40274         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
40275         * modules/getpass (EXTRA_DIST): Add getpass.h.
40276         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
40277         * modules/group-member (EXTRA_DIST): Add group-member.h.
40278         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
40279         * modules/hash (EXTRA_DIST): Add hash.h.
40280         * modules/human (EXTRA_DIST): Add human.h.
40281         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
40282         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
40283         * modules/lchown (EXTRA_DIST): Add lchown.h.
40284         * modules/long-options (EXTRA_DIST): Add long-options.h.
40285         * modules/lstat (EXTRA_DIST): Add lstat.h.
40286         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
40287         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
40288         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
40289         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
40290         * modules/memxor (EXTRA_DIST): Add memxor.h.
40291         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
40292         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
40293         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
40294         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
40295         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
40296         * modules/physmem (EXTRA_DIST): Add physmem.h.
40297         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
40298         * modules/posixver (EXTRA_DIST): Add posixver.h.
40299         * modules/quote (EXTRA_DIST): Add quote.h.
40300         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
40301         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
40302         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
40303         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
40304         regex_internal.h regexec.c.
40305         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
40306         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
40307         * modules/same (EXTRA_DIST): Add same.h.
40308         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
40309         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
40310         * modules/savedir (EXTRA_DIST): Add savedir.h.
40311         * modules/sha1 (EXTRA_DIST): Add sha1.h.
40312         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
40313         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
40314         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
40315         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
40316         * modules/strdup (EXTRA_DIST): Add strdup.h.
40317         * modules/strftime (EXTRA_DIST): Add strftime.h.
40318         * modules/strndup (EXTRA_DIST): Add strndup.h.
40319         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
40320         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
40321         * modules/time_r (EXTRA_DIST): Add time_r.h.
40322         * modules/timespec (EXTRA_DIST): Add timespec.h.
40323         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
40324         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
40325         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
40326         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
40327         * modules/userspec (EXTRA_DIST): Add userspec.h.
40328         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
40329         * modules/utimens (EXTRA_DIST): Add utimens.h.
40330         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
40331         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
40332         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
40333         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
40334         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
40335         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
40336         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
40337         * modules/yesno (EXTRA_DIST): Add yesno.h.
40338
40339 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
40340
40341         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
40342
40343         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
40344         * m4/dev-ino.m4, same-inode.m4: Remove.
40345
40346         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
40347         * m4/acl.m4 (AC_FUNC_ACL):
40348         * m4/backupfile.m4 (gl_BACKUPFILE):
40349         * m4/c-strtod.m4 (gl_C99_STRTOLD):
40350         * m4/canon-host.m4 (gl_CANON_HOST):
40351         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
40352         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
40353         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
40354         * m4/cloexec.m4 (gl_CLOEXEC):
40355         * m4/close-stream.m4 (gl_CLOSE_STREAM):
40356         * m4/closeout.m4 (gl_CLOSEOUT):
40357         * m4/dirfd.m4 (gl_FUNC_DIRFD):
40358         * m4/dirname.m4 (gl_DIRNAME):
40359         * m4/exclude.m4 (gl_EXCLUDE):
40360         * m4/exitfail.m4 (gl_EXITFAIL):
40361         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
40362         * m4/file-type.m4 (gl_FILE_TYPE):
40363         * m4/filemode.m4 (gl_FILEMODE):
40364         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
40365         * m4/fpending.m4 (gl_FUNC_FPENDING):
40366         * m4/fprintftime.m4 (gl_FPRINTFTIME):
40367         * m4/fts.m4 (gl_FUNC_FTS):
40368         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
40369         * m4/getdate.m4 (gl_GETDATE):
40370         * m4/gethrxtime.m4 (gl_GETHRXTIME):
40371         * m4/getpagesize.m4 (gl_GETPAGESIZE):
40372         * m4/getpass.m4 (gl_FUNC_GETPASS):
40373         * m4/gettime.m4 (gl_GETTIME):
40374         * m4/getugroups.m4 (gl_GETUGROUPS):
40375         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
40376         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
40377         * m4/hard-locale.m4 (gl_HARD_LOCALE):
40378         * m4/hash.m4 (gl_HASH):
40379         * m4/idcache.m4 (gl_IDCACHE):
40380         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
40381         * m4/lchown.m4 (gl_FUNC_LCHOWN):
40382         * m4/long-options.m4 (gl_LONG_OPTIONS):
40383         * m4/lstat.m4 (gl_FUNC_LSTAT):
40384         * m4/md5.m4 (gl_MD5):
40385         * m4/memcasecmp.m4 (gl_MEMCASECMP):
40386         * m4/memcoll.m4 (gl_MEMCOLL):
40387         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
40388         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
40389         * m4/memxor.m4 (gl_MEMXOR):
40390         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
40391         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
40392         * m4/modechange.m4 (gl_MODECHANGE):
40393         * m4/mountlist.m4 (gl_MOUNTLIST):
40394         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
40395         * m4/openat.m4 (gl_FUNC_OPENAT):
40396         * m4/pathmax.m4 (gl_PATHMAX):
40397         * m4/physmem.m4 (gl_PHYSMEM):
40398         * m4/posixtm.m4 (gl_POSIXTM):
40399         * m4/posixver.m4 (gl_POSIXVER):
40400         * m4/quote.m4 (gl_QUOTE):
40401         * m4/quotearg.m4 (gl_QUOTEARG):
40402         * m4/readtokens.m4 (gl_READTOKENS):
40403         * m4/readutmp.m4 (gl_READUTMP):
40404         * m4/regex.m4 (gl_REGEX):
40405         * m4/safe-read.m4 (gl_SAFE_READ):
40406         * m4/safe-write.m4 (gl_SAFE_WRITE):
40407         * m4/same.m4 (gl_SAME):
40408         * m4/save-cwd.m4 (gl_SAVE_CWD):
40409         * m4/savedir.m4 (gl_SAVEDIR):
40410         * m4/settime.m4 (gl_SETTIME):
40411         * m4/sha1.m4 (gl_SHA1):
40412         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
40413         * m4/stat-macros.m4 (gl_STAT_MACROS):
40414         * m4/stat-time.m4 (gl_STAT_TIME):
40415         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
40416         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
40417         * m4/strdup.m4 (gl_FUNC_STRDUP):
40418         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
40419         * m4/strndup.m4 (gl_FUNC_STRNDUP):
40420         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
40421         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
40422         * m4/time_r.m4 (gl_TIME_R):
40423         * m4/timespec.m4 (gl_TIMESPEC):
40424         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
40425         * m4/unlinkdir.m4 (gl_UNLINKDIR):
40426         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
40427         * m4/userspec.m4 (gl_USERSPEC):
40428         * m4/utimecmp.m4 (gl_UTIMECMP):
40429         * m4/utimens.m4 (gl_UTIMENS):
40430         * m4/xalloc.m4 (gl_XALLOC):
40431         * m4/xgetcwd.m4 (gl_XGETCWD):
40432         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
40433         * m4/xreadlink.m4 (gl_XREADLINK):
40434         * m4/xstrtod.m4 (gl_XSTRTOD):
40435         * m4/yesno.m4 (gl_YESNO):
40436         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
40437         to get the necessary .h files and whatnot.
40438
40439 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
40440             Bruno Haible  <bruno@clisp.org>
40441
40442         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
40443         /bin/sh understanding of '!' conditional negation.
40444
40445 2006-08-21  Jim Meyering  <jim@meyering.net>
40446
40447         * modules/openat (Depends-on): Really alphabetize.
40448
40449         * modules/acl (Depends-on): Add error and quote.
40450
40451         * check-module (find_included_lib_files): Add at-func.c to the
40452         ok-to-include-more-than-once white list.
40453
40454         * modules/openat (Depends-on): Add lstat.  Alphabetize.
40455
40456 2006-08-21  Bruno Haible  <bruno@clisp.org>
40457
40458         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
40459         Emit a pkgdata_DATA variable only if some snippets add contents to it.
40460         Reported by Martin Lambers <marlam@marlam.de>.
40461
40462 2006-08-21  Bruno Haible  <bruno@clisp.org>
40463
40464         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
40465         specify an installation location, don't emit a noinst_LIBRARIES or
40466         noinst_LTLIBRARIES assignment.
40467
40468 2006-08-21  Bruno Haible  <bruno@clisp.org>
40469
40470         BeOS portability.
40471         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
40472         BeOS has mbrtowc() but no <wctype.h>.
40473
40474 2006-08-21  Bruno Haible  <bruno@clisp.org>
40475
40476         BeOS portability.
40477         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
40478         exist.
40479
40480 2006-08-21  Bruno Haible  <bruno@clisp.org>
40481
40482         BeOS portability.
40483         * lib/mbchar.h: Include <wctype.h> only if it exists.
40484
40485 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40486
40487         Remove files that are no longer needed by their respective modules.
40488         * m4/obstack.m4: Remove.
40489         * m4/strerror_r.m4: Remove.
40490         * m4/uint32_t.m4: Remove.
40491         * m4/uintptr_t.m4: Remove.
40492         * m4/ullong_max.m4: Remove.
40493         * m4/xstrtoimax.m4: Remove.
40494         * m4/xstrtoumax.m4: Remove.
40495
40496         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
40497         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
40498         dependencies now capture this.
40499
40500         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
40501         Do not use AC_LIBSOURCES, since gnulib modules now do this.
40502         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
40503         * m4/human.m4 (gl_HUMAN): Likewise.
40504         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
40505         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
40506
40507         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
40508
40509         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
40510         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
40511         stdint.
40512         * m4/human.m4 (gl_HUMAN): Likewise.
40513         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
40514         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
40515         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
40516         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
40517         * m4/xstrtol (gl_XSTRTOL): Likewise.
40518
40519         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
40520         AC_TYPE_LONG_LONG_INT.
40521         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
40522         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
40523         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
40524         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
40525
40526         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
40527         on stdbool.
40528
40529         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
40530         (gl_PREREQ_XSTRTOUL): Remove.
40531
40532         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
40533
40534         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
40535         mode.
40536
40537 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40538
40539         Add and change modules to make it easier for coreutils to use
40540         gnulib-tool.
40541         * modules/backupfile (Files): Remove m4/d-ino.m4.
40542         (Depends-on): Add d-ino.
40543         * modules/cycle-check (Depends-on): Add stdint.
40544         (lib_SOURCES): Add cycle-check.h.
40545         * modules/d-ino: New module.
40546         * modules/d-type: New module.
40547         * modules/error (Files): Remove m4/strerror_r.m4.
40548         * modules/filemode (Files): Add m4/st_dm_mode.m4.
40549         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
40550         m4/inttypes_h.m4, m4/uintmax_t.m4.
40551         (Depends-on): Add stdint.
40552         (lib_SOURCES): Add fsusage.h.
40553         * modules/getcwd (Files): Remove d-ino.m4.
40554         (Depends-on): Add d-ino.
40555         * modules/getndelim2 (Depends-on): Add stdint.
40556         * modules/glob (Files): Remove m4/d-type.m4.
40557         (Depends-on): Add d-type.
40558         * modules/host-os: New module.
40559         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
40560         m4/inttypes_h.m4, m4/uintmax_t.m4.
40561         * Depends-on: Add stdint.
40562         (lib_SOURCES): Add human.h.
40563         * modules/inttostr (Files): Remove m4/intmax_t.m4,
40564         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
40565         m4/uintmax_t.m4, m4/ulonglong.m4.
40566         (Depends-on): Add stdint.
40567         (EXTRA_DIST): Add inttostr.h.
40568         * modules/lchmod: New module.
40569         * modules/link-follow: New module.
40570         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
40571         (Depends-on): Add lchmod.
40572         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
40573         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
40574         (Depends-on): Add stdint.
40575         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
40576         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
40577         (Depends-on): Add stdint.
40578         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
40579         * modules/perl: New module.
40580         * modules/regex (Depends-on): Add stdint.
40581         * modules/rmdir-errno: New module.
40582         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
40583         m4/intmax_t.m4.
40584         (Depends-on): Add stdint.
40585         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
40586         m4/uintmax_t.m4.
40587         (Depends-on): Add stdint.
40588         * modules/unlink-busy: New module.
40589         * modules/utimecmp (Depends-on): Add stdint.
40590         * modules/uptime: New module.
40591         * modules/winsz-ioctl: New module.
40592         * modules/winsz-termios: New module.
40593         * modules/xnanosleep (Depends-on): Add nanosleep.
40594         * modules/ullong_max: Remove.
40595         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
40596         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
40597         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
40598         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
40599         (Depends-on): Add inttypes.
40600         (lib_SOURCES): Add xstrtol.h.
40601         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
40602         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
40603         * MODULES.html.sh: Move 'assert' into the assert section.
40604         Move 'dummy' into the linking section.
40605         Remove ullong_max.
40606         Add section for compatibility checks for POSIX:2001 functions,
40607         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
40608         winsz-ioctl, and winsz-termios into it.
40609         Add lchmod.
40610         Add top-level Misc section and put host-os, perl, and uptime
40611         into it.
40612
40613 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
40614
40615         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
40616         now assume the stdint module.  Do not include inttypes.h.
40617         * lib/fsusage.h: Likewise.
40618         * lib/getndelim2.c: Likewise.
40619         * lib/human.h: Likewise.
40620         * lib/inttostr.h: Likewise.
40621         * lib/obstack.c: Likewise.
40622         * lib/regex_internal.h: Likewise.
40623         * lib/tempname.c: Likewise.
40624         * lib/utimecmp.c: Likewise.
40625         * lib/xstrtol.h: Likewise.
40626
40627         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
40628
40629         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
40630         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
40631         * lib/xtime.h: Likewise.
40632
40633 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40634
40635         * modules/openat (Files): Add lib/fchmodat.c.
40636         Fixes problem reported by Jay Youngman.
40637
40638 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40639
40640         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
40641         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
40642
40643 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
40644             Bruno Haible  <bruno@clisp.org>
40645
40646         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
40647         and is a script that invokes bison. Tighten the code. Add comments.
40648
40649 2006-08-18  Jim Meyering  <jim@meyering.net>
40650
40651         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
40652         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
40653         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
40654         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
40655
40656 2006-08-18  Bruno Haible  <bruno@clisp.org>
40657
40658         * modules/bison-i18n: New file.
40659         * MODULES.html.sh (Internationalization functions): Add it.
40660
40661 2006-08-18  Bruno Haible  <bruno@clisp.org>
40662
40663         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
40664         sys/statvfs.h. When getmntinfo was found, check its declaration and
40665         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
40666
40667 2006-08-18  Bruno Haible  <bruno@clisp.org>
40668
40669         * m4/bison-i18n.m4: New file, from bison.
40670
40671 2006-08-18  Bruno Haible  <bruno@clisp.org>
40672
40673         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
40674         (ME_DUMMY): Treat "kernfs" as a dummy.
40675         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
40676
40677 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
40678
40679         Update from coreutils.
40680
40681         2006-08-15  Jim Meyering  <jim@meyering.net>
40682
40683         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
40684
40685         2006-01-17  Jim Meyering  <jim@meyering.net>
40686
40687         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
40688
40689         2006-01-11  Jim Meyering  <jim@meyering.net>
40690
40691         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
40692         Check for the lchmod function.
40693
40694 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
40695
40696         Update from coreutils.
40697
40698         * lib/__fpending.h: Add copyright notice.
40699         * lib/fprintftime.h: Likewise.
40700         * lib/savedir.c: Use (C) in copyright notice.
40701         * lib/savedir.h: Likewise.
40702
40703         2006-08-15  Jim Meyering  <jim@meyering.net>
40704
40705         * lib/at-func.c: New file, with the logic of all emulated at-functions.
40706         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
40707         in support of the EXPECTED_ERRNO macro.
40708         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
40709         definitions.  Instead, define the appropriate symbols and include
40710         "at-func.c".
40711         * lib/mkdirat.c (mkdirat): Likewise.
40712         * lib/fchmodat.c (fchmodat): Likewise.
40713         (ENOSYS): Remove definition.
40714         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
40715         it.  Don't include "unistd--.h" -- it wasn't ever used.
40716
40717         2006-01-17  Jim Meyering  <jim@meyering.net>
40718
40719         Rewrite fts.c not to change the current working directory,
40720         by using openat, fstatat, fdopendir, etc..
40721
40722         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
40723         (HAVE_OPENAT_SUPPORT): Define.
40724         [_LIBC] (fchdir): Don't undef or define; no longer used.
40725         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
40726         Now, this `function' always succeeds, and consumes its file descriptor
40727         parameter -- so callers must not close such FDs.  Update callers.
40728         (diropen_fd, opendirat, cwd_advance_fd): New functions.
40729         (diropen): Add parameter, SP.  Adjust all callers.
40730         Implement using diropen_fd, rather than open.
40731         (fts_open): Initialize new member, fts_cwd_fd.
40732         Remove fts_rft-setting code.
40733         (fts_close): Close fts_cwd_fd, if necessary.
40734         (__opendir2): Define in terms of opendir or opendirat,
40735         depending on whether the FST_NOCHDIR flag is set.
40736         (fts_build): Since fts_safe_changedir consumes its FD, and since
40737         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
40738         and close the dup'd file descriptor upon failure.
40739         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
40740         (fts_safe_changedir): Tweak semantics to reflect that this function
40741         now calls cwd_advance_fd and hence consumes its FD argument.
40742         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
40743         [struct FTS] (fts_rft): Remove now-unused member.
40744         [struct FTS] (fts_cycle.state): Improve comment.
40745
40746         * lib/openat.c (openat_needs_fchdir): New function.
40747         * lib/openat.h (openat_needs_fchdir): Declare it.
40748
40749 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
40750
40751         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
40752         Problem and fix reported by Pádraig Brady in
40753         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
40754
40755 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
40756
40757         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
40758
40759 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
40760
40761         * lib/memcoll.c (memcoll): Optimize for the common case where the
40762         arguments are bytewise equal.
40763
40764 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
40765
40766         * doc/regexprops-generic.texi: Add a copyright notice.
40767
40768 2006-08-15  Bruno Haible  <bruno@clisp.org>
40769
40770         * modules/tmpdir (License): Change to LGPL.
40771
40772 2006-08-15  Bruno Haible  <bruno@clisp.org>
40773
40774         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
40775         module.
40776
40777 2006-08-14  Simon Josefsson  <jas@extundo.com>
40778
40779         * config/srclist.txt: Add gnupload.
40780
40781 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
40782
40783         Change copyright notice from LGPL 2 to GPL 2, since that's the
40784         standard form used in the gnulib repository.
40785         * tests/test-lock.c: Likewise.
40786         * tests/test-stdint.c: Likewise.
40787         * tests/test-tls.c: Likewise.
40788
40789         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
40790         prelude-manager.  User shorter URLs for GNU projects, without '?'.
40791         Add copyright notice.
40792
40793         * check-module: Add copyright notice.  Output a copyright
40794         notice if "--version" is specified.
40795         * modules/COPYING: New file.
40796         * tests/test-getaddrinfo.c: Add copyright notice.
40797         * tests/test-verify.c: Likewise.
40798
40799 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
40800
40801         Change copyright notice from LGPL 2 to GPL 2, since that's the
40802         standard form used in the gnulib repository.
40803         * lib/lock.c: LGPL -> GPL.
40804         * lib/lock.h: Likewise.
40805         * lib/strnlen1.c: Likewise.
40806         * lib/strnlen1.h: Likewise.
40807         * lib/tls.c: Likewise.
40808         * lib/tls.h: Likewise.
40809         * lib/tmpdir.c: Likewise.
40810
40811         * lib/TODO: Remove; this belongs only in coreutils.
40812
40813 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
40814
40815         Add copyright notices to long-enough files that lack them, since
40816         otherwise the files aren't clearly free.  Use the same notice that
40817         getdate.texi already uses.
40818         * doc/alloca-opt.texi: Add copyright notice.
40819         * doc/alloca.texi: Likewise.
40820         * doc/ctime.texi: Likewise.
40821         * doc/functions.texi: Likewise.
40822         * doc/gcd.texi: Likewise.
40823         * doc/gnulib-tool.texi: Likewise.
40824         * doc/inet_ntoa.texi: Likewise.
40825         * doc/visibility.texi: Likewise.
40826
40827         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
40828         * doc/quote.texi: Add copyright notice.
40829
40830         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
40831         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
40832         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
40833         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
40834         is now obsolete, and give a pointer to the Sun list.
40835         Add copyright notice.
40836
40837 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
40838
40839         * config/srclistvars.sh: Add copyright notice.
40840
40841 2006-08-14  Eric Blake  <ebb9@byu.net>
40842
40843         Import the following change from libc:
40844
40845         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
40846
40847         Upstream bug 2997.
40848         * lib/misc/error.c: Add space between program name and message if file
40849         name is missing.
40850
40851 2006-08-12  Karl Berry  <karl@gnu.org>
40852
40853         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
40854         remove, these originate in gnulib now.
40855
40856 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40857
40858         * doc/Makefile (standards.info standards.html standards.dvi):
40859         Also depend on make-stds.texi.
40860
40861 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
40862
40863         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
40864         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
40865
40866         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
40867         in wchar_t.  Problem reported by Eric Blake.
40868
40869         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
40870         LEN is smaller than SIZE.  Suggested by Bruno Haible.
40871         Also, help the compiler to keep LEN in a register.
40872
40873 2006-08-11  Eric Blake  <ebb9@byu.net>
40874
40875         * users.txt: Sort.  Add tar.
40876
40877 2006-08-11  Bruno Haible  <bruno@clisp.org>
40878
40879         * users.txt: New file.
40880
40881 2006-08-11  Bruno Haible  <bruno@clisp.org>
40882
40883         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
40884         before <wchar.h>. Needed for OSF/1 and BSD/OS.
40885
40886 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
40887
40888         * modules/snprintf (Depends-on): Remove minmax.
40889         (Maintainer): Add self and Bruno.
40890
40891 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
40892
40893         * lib/.cppi-disable: Add snprintf.h, socket_.h.
40894         * lib/snprintf.c: Include <errno.h> and <limits.h>.
40895         (EOVERFLOW): Define if the system does not.
40896         Do not include "minmax.h"; it wasn't used.
40897         (snprintf): Don't assume size_t promotes to an unsigned type.
40898         Fix bug when generated string was too long for the buffer: the
40899         buffer's contents are supposed to be the initial prefix of the
40900         output.  Don't assume vasnprintf returns EOVERFLOW if the size
40901         exceeds INT_MAX; do the check ourselves.
40902
40903         Import the following changes from libc:
40904
40905         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
40906
40907         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
40908         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
40909         set wc to the byte which couldn't be converted.
40910         (re_string_reconstruct): Don't clear valid_raw_len before calling
40911         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
40912         tip_context using re_string_context_at.
40913
40914         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
40915
40916         * lib/posix/regex.h: g++ still cannot handled [restrict].
40917
40918         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
40919
40920         * lib/posix/regex.h: Remove special handling for VMS.
40921
40922 2006-08-10  Jim Meyering  <jim@meyering.net>
40923
40924         * modules/same-inode: New module.
40925         * modules/dev-ino: New module.
40926         * modules/cycle-check: Depend on these modules, rather than simply
40927         including their .h files.
40928         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
40929         required via m4/cycle-check.m4.
40930         * modules/same: Depend on new same-inode module, rather than
40931         including same-inode.h.
40932         * modules/chdir-safer: New file.
40933
40934         * modules/chown (Depends-on): Add stat-macros.
40935
40936 2006-08-10  Jim Meyering  <jim@meyering.net>
40937
40938         * m4/cycle-check.m4: New file.
40939         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
40940         * m4/dev-ino.m4, m4/same-inode.m4: New files.
40941
40942 2006-08-10  Eric Blake  <ebb9@byu.net>
40943
40944         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
40945         in from original proposal.
40946
40947 2006-08-10  Eric Blake  <ebb9@byu.net>
40948         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
40949
40950         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
40951         namespace.
40952
40953 2006-08-10  Bruno Haible  <bruno@clisp.org>
40954
40955         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
40956         as well.
40957
40958 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40959
40960         Sync from coreutils.
40961
40962         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
40963
40964         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
40965         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
40966
40967 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40968
40969         * modules/restrict: Remove; no longer needed now that we assume
40970         Autoconf 2.59 or later.
40971         * MODULES.html.sh: Remove 'restrict'.
40972         * modules/argp (Depends-on): Remove 'restrict'.
40973         * modules/base64 (Depends-on): Likewise.
40974         * modules/gc (Depends-on): Likewise.
40975         * modules/getaddrinfo (Depends-on): Likewise.
40976         * modules/glob (Depends-on): Likewise.
40977         * modules/inet_ntop (Depends-on): Likewise.
40978         * modules/inet_pton (Depends-on): Likewise.
40979         * modules/memxor (Depends-on): Likewise.
40980         * modules/regex (Depends-on): Likewise.
40981         * modules/strtok_r (Depends-on): Likewise.
40982         * modules/time_r (Depends-on): Likewise.
40983
40984 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40985
40986         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
40987         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
40988         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
40989         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
40990         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
40991         * m4/memxor.m4 (gl_MEMXOR): Likewise.
40992         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
40993         gl_C_RESTRICT replaced by AC_C_RESTRICT.
40994
40995         Merge from coreutils.
40996         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
40997         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
40998         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
40999         * m4/time_r.m4 (gl_TIME_R): Likewise.
41000
41001 2006-08-09  Karl Berry  <karl@gnu.org>
41002
41003         * config/srclist.txt: no more gettext-tools, per Bruno.
41004
41005 2006-08-08  Eric Blake  <ebb9@byu.net>
41006
41007         * modules/verror: New module.
41008         * MODULES.html.sh: Document it.
41009
41010 2006-08-08  Eric Blake  <ebb9@byu.net>
41011
41012         * lib/verror.h, lib/verror.c: New files.
41013
41014 2006-08-08  Eric Blake  <ebb9@byu.net>
41015
41016         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
41017         verror_at_line output complies with GNU Coding Standards even when
41018         file is NULL.
41019
41020 2006-08-07  Bruno Haible  <bruno@clisp.org>
41021
41022         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
41023         versions of AIX.
41024         Reported by Ralf Wildenhues.
41025
41026 2006-08-07  Bruno Haible  <bruno@clisp.org>
41027
41028         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
41029         in an AC_DEFUN. Needed so that the autoconf snippets can use
41030         AC_REQUIRE.
41031
41032 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41033
41034         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41035         Initialize pkgdata_DATA.
41036         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
41037         overriding it.
41038
41039 2006-08-06  Eric Blake  <ebb9@byu.net>
41040
41041         * lib/error.h: Fold in some upstream changes from glibc.
41042         * lib/error.c: Likewise.
41043
41044 2006-08-04  Bruno Haible  <bruno@clisp.org>
41045
41046         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41047         Make the mostlyclean-local rule depend on mostlyclean-generic.
41048         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
41049
41050 2006-07-31  Bruno Haible  <bruno@clisp.org>
41051
41052         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
41053         <stdlib.h>, <string.h>.
41054
41055 2006-07-30  Bruno Haible  <bruno@clisp.org>
41056
41057         * modules/readlink (License): Change to LGPL.
41058
41059 2006-07-30  Bruno Haible  <bruno@clisp.org>
41060
41061         * modules/javaversion (Makefile.am): Distribute javaversion.java and
41062         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
41063         set PKGDATADIR to point to it.
41064
41065 2006-07-30  Bruno Haible  <bruno@clisp.org>
41066
41067         * modules/csharpexec (configure.ac): Comment out macro invocation.
41068         * modules/javaexec (configure.ac): Likewise.
41069         * modules/javacomp-script (configure.ac): Likewise.
41070
41071         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
41072
41073 2006-07-30  Bruno Haible  <bruno@clisp.org>
41074
41075         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
41076         linked-list.
41077
41078 2006-07-30  Bruno Haible  <bruno@clisp.org>
41079
41080         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
41081
41082 2006-07-30  Bruno Haible  <bruno@clisp.org>
41083
41084         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41085         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
41086         get removed.
41087
41088 2006-07-29  Bruno Haible  <bruno@clisp.org>
41089
41090         Make it possible for gnulib-tool to work with locally modified or
41091         augmented gnulib repositories.
41092         * gnulib-tool (func_usage): Document --local-dir option.
41093         (local_gnulib_dir): New variable.
41094         Handle --local-dir option.
41095         (func_lookup_file): New function.
41096         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
41097         (func_get_description, func_get_filelist, func_get_description,
41098         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
41099         func_get_automake_snippet, func_get_include_directive,
41100         func_get_license, func_get_maintainer): Use func_lookup_file.
41101         (func_import, func_create_testdir): Use func_lookup_file.
41102
41103 2006-07-29  Bruno Haible  <bruno@clisp.org>
41104
41105         * modules/setenv (Depends-on): Add unistd.
41106
41107 2006-07-29  Bruno Haible  <bruno@clisp.org>
41108
41109         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
41110
41111 2006-07-29  Bruno Haible  <bruno@clisp.org>
41112
41113         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
41114
41115 2006-07-29  Bruno Haible  <bruno@clisp.org>
41116
41117         * gnulib-tool (import, update): If there is no Makefile.am, look at
41118         aclocal.m4, instead of bailing out.
41119
41120 2006-07-29  Bruno Haible  <bruno@clisp.org>
41121
41122         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
41123         Categorize the options by when they are useful.
41124
41125 2006-07-29  Bruno Haible  <bruno@clisp.org>
41126
41127         * gnulib-tool (func_usage): Document option --no-libtool.
41128         Handle option --no-libtool.
41129         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
41130         for changed semantics of $libtool variable.
41131         (func_import): Likewise. If libtool is not used, show this through
41132         an option --no-libtool.
41133         (func_create_testdir): Update.
41134
41135 2006-07-29  Bruno Haible  <bruno@clisp.org>
41136
41137         * gnulib-tool (func_import): Extend error message about missing
41138         --doc-base.
41139
41140 2006-07-29  Bruno Haible  <bruno@clisp.org>
41141
41142         * gnulib-tool (func_import): Don't create the $docbase directory if
41143         there is no file to store there.
41144
41145 2006-07-29  Bruno Haible  <bruno@clisp.org>
41146
41147         * gnulib-tool (autoconf_minversion): If a --dir option is given and
41148         relevant, look for configure.ac there, not in the current directory.
41149         Also use a simple search for AC_PREREQ, not "autoconf --trace".
41150
41151 2006-07-29  Bruno Haible  <bruno@clisp.org>
41152
41153         * gnulib-tool (SORT): New variable.
41154         (func_usage): Undocument --assume-autoconf option.
41155         Remove --assume-autoconf option handling.
41156         (autoconf_minversion): Determine from the contents of configure.ac.
41157         (func_import): Remove autoconf_minversion handling.
41158         Suggested by Eric Blake.
41159
41160 2006-07-29  Bruno Haible  <bruno@clisp.org>
41161
41162         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
41163
41164 2006-07-29  Bruno Haible  <bruno@clisp.org>
41165
41166         * config/srclist.txt (*setenv.[ch]): Remove rules.
41167
41168 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41169
41170         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
41171
41172 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41173
41174         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
41175         arpa/inet.h.
41176
41177 2006-07-28  Simon Josefsson  <jas@extundo.com>
41178
41179         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
41180         * modules/inet_pton (Depends-on): Likewise.
41181
41182 2006-07-28  Simon Josefsson  <jas@extundo.com>
41183
41184         * m4/netinet_in_h.m4: New file.
41185
41186 2006-07-28  Simon Josefsson  <jas@extundo.com>
41187
41188         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
41189         #include's.
41190
41191 2006-07-28  Simon Josefsson  <jas@extundo.com>
41192
41193         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
41194         #include's.
41195
41196 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
41197
41198         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
41199         setgid on directories only if they set these bits.
41200         * lib/modechange.h: Remove obsolete comment about masks.
41201
41202 2006-07-28  Eric Blake  <ebb9@byu.net>
41203
41204         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
41205         macro expansion.
41206
41207 2006-07-28  Bruno Haible  <bruno@clisp.org>
41208
41209         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
41210
41211 2006-07-28  Bruno Haible  <bruno@clisp.org>
41212
41213         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
41214
41215 2006-07-28  Bruno Haible  <bruno@clisp.org>
41216
41217         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
41218         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
41219         Define fallbacks.
41220         Avoids link error on FreeBSD 4.x.
41221         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
41222
41223         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
41224         encoding.
41225         * lib/mbswidth.c (iswcntrl): Likewise.
41226
41227 2006-07-27  Bruno Haible  <bruno@clisp.org>
41228
41229         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
41230         test.
41231
41232 2006-07-27  Bruno Haible  <bruno@clisp.org>
41233
41234         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
41235         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
41236         defined.
41237
41238 2006-07-26  Eric Blake  <ebb9@byu.net>
41239
41240         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
41241
41242 2006-07-26  Eric Blake  <ebb9@byu.net>
41243
41244         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
41245         like mingw that lack mkstemp.
41246         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
41247         avoid compilation warning on mingw.
41248
41249 2006-07-26  Bruno Haible  <bruno@clisp.org>
41250
41251         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
41252         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
41253         INT_FAST*_MIN, INTPTR_MIN.
41254
41255 2006-07-25  Bruno Haible  <bruno@clisp.org>
41256
41257         * modules/version-etc (Depends-on): Add stdarg.
41258
41259 2006-07-25  Bruno Haible  <bruno@clisp.org>
41260
41261         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
41262         complex commands.
41263
41264 2006-07-25  Bruno Haible  <bruno@clisp.org>
41265
41266         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
41267         defined in <stdarg.h> or config.h.
41268
41269 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
41270
41271         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
41272         (gl_STDIO_SAFER): Remove.
41273
41274 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
41275
41276         * MODULES.html.sh (File stream based Input/Output):
41277         Add fopen-safer, tmpfile-safer; remove stdio-safer.
41278         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
41279         * modules/fopen-safer, modules/tmpfile-safer: New files.
41280         * modules/stdio-safer: Remove.
41281
41282 2006-07-24  Bruno Haible  <bruno@clisp.org>
41283
41284         * modules/tmpdir: New file.
41285         * MODULES.html.sh (File system functions): Add it.
41286
41287 2006-07-24  Bruno Haible  <bruno@clisp.org>
41288
41289         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
41290         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
41291
41292 2006-07-24  Bruno Haible  <bruno@clisp.org>
41293
41294         * modules/clean-temp: New file.
41295
41296 2006-07-24  Bruno Haible  <bruno@clisp.org>
41297
41298         * m4/tmpdir.m4: New file, from GNU gettext.
41299
41300 2006-07-24  Bruno Haible  <bruno@clisp.org>
41301
41302         * lib/tmpdir.h: New file, from GNU gettext.
41303         * lib/tmpdir.c: New file, from GNU gettext.
41304
41305 2006-07-24  Bruno Haible  <bruno@clisp.org>
41306
41307         * lib/clean-temp.h: New file, from GNU gettext.
41308         * lib/clean-temp.c: New file, from GNU gettext.
41309
41310 2006-07-23  Eric Blake  <ebb9@byu.net>
41311
41312         * modules/stdio-safer (Files): Add tmpfile-safer.c.
41313         (Depends-on): Add binary-io.
41314
41315 2006-07-23  Eric Blake  <ebb9@byu.net>
41316
41317         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
41318
41319 2006-07-23  Eric Blake  <ebb9@byu.net>
41320
41321         * lib/tmpfile-safer.c: New file.
41322         * lib/stdio-safer.h (fopen_safer): Add prototype.
41323         * lib/stdio--.h (tmpfile): Make safer.
41324
41325 2006-07-23  Bruno Haible  <bruno@clisp.org>
41326
41327         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
41328         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
41329         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
41330         gl_linked_remove_at): Use it.
41331
41332 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41333         and Simon Josefsson <jas@extundo.com>
41334
41335         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
41336
41337         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
41338
41339 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
41340
41341         * modules/close-stream: New file.
41342         * modules/closeout (Description): Make it clear that it exits
41343         with a diagnostic on error.
41344         (Depends-on): Add close-stream.  Remove fpending, stdbool.
41345         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
41346
41347 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
41348
41349         * m4/close-stream.m4: New file.
41350
41351 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
41352
41353         * lib/close-stream.c, lib/close-stream.h: New files.
41354
41355 2006-07-22  Bruno Haible  <bruno@clisp.org>
41356
41357         Merge from GNU gettext 0.15.
41358
41359         2006-05-01  Bruno Haible  <bruno@clisp.org>
41360
41361                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
41362
41363         2006-07-22  Bruno Haible  <bruno@clisp.org>
41364
41365                 * modules/javaversion: New file.
41366                 * MODULES.html.sh (Java): Add javaversion.
41367
41368         2006-03-12  Bruno Haible  <bruno@clisp.org>
41369
41370                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
41371
41372         2005-12-04  Bruno Haible  <bruno@clisp.org>
41373
41374                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
41375                 (untested).
41376
41377         2006-06-21  Bruno Haible  <bruno@clisp.org>
41378
41379                 Avoid warnings from recent versions of mcs.
41380                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
41381                 -o, -L, -r any more. Use options documented since mcs-1.0
41382                 instead. Similarly for -g.
41383
41384         2005-12-04  Bruno Haible  <bruno@clisp.org>
41385
41386                 * build-aux/csharpcomp.sh.in: Suffix for resources is
41387                 .resources, not .resource.
41388
41389         2005-07-09  Bruno Haible  <bruno@clisp.org>
41390
41391                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
41392                 add a .dll suffix.
41393                 Reported by Mark Junker <mjscod@gmx.de>.
41394
41395         2006-07-22  Bruno Haible  <bruno@clisp.org>
41396
41397                 * modules/gettext: Upgrade to gettext-0.15.
41398                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
41399                 m4/visibility.m4.
41400                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
41401
41402 2006-07-22  Bruno Haible  <bruno@clisp.org>
41403
41404         Merge from GNU gettext 0.15.
41405
41406         2006-03-25  Bruno Haible  <bruno@clisp.org>
41407
41408                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
41409
41410         2006-07-21  Bruno Haible  <bruno@clisp.org>
41411
41412                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
41413                 "1.1".
41414
41415         2006-05-09  Bruno Haible  <bruno@clisp.org>
41416
41417                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
41418                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
41419                 for the conftestver execution.
41420
41421         2006-05-01  Bruno Haible  <bruno@clisp.org>
41422
41423                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
41424                 optional target-version argument. Verify that the compiler
41425                 groks source of the specified source-version, or add -source
41426                 option as necessary. Verify that the compiler produces
41427                 bytecode in the specified target-version, or add -target and
41428                 -source options as necessary. Make the result of the test
41429                 available as variable CONF_JAVAC. Also log error output in
41430                 config.log.
41431
41432         2006-03-11  Bruno Haible  <bruno@clisp.org>
41433
41434                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
41435
41436         2006-05-09  Bruno Haible  <bruno@clisp.org>
41437
41438                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
41439                 CLASSPATH_SEPARATOR to a semicolon.
41440
41441         2006-03-12  Bruno Haible  <bruno@clisp.org>
41442
41443                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
41444                 available as variable CONF_JAVA, for subsequent autoconf
41445                 tests. Also log error output in config.log.
41446
41447         2006-07-19  Bruno Haible  <bruno@clisp.org>
41448
41449                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
41450                 that getline works on glibc2 systems. Needed to avoid trouble
41451                 in relocatable.c.
41452                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
41453
41454         2005-12-04  Bruno Haible  <bruno@clisp.org>
41455
41456                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
41457                 launcher (untested).
41458
41459         2005-12-04  Bruno Haible  <bruno@clisp.org>
41460
41461                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
41462
41463         2006-07-22  Bruno Haible  <bruno@clisp.org>
41464
41465                 * gettext.m4: Update from GNU gettext-0.15.
41466                 * nls.m4: Likewise.
41467                 * po.m4: Likewise.
41468                 * inttypes-pri.m4: Likewise.
41469                 * inttypes-h.m4: Renamed from inttypes.m4.
41470                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
41471
41472 2006-07-22  Bruno Haible  <bruno@clisp.org>
41473
41474         Merge from GNU gettext 0.15.
41475
41476         2005-07-05  Bruno Haible  <bruno@clisp.org>
41477
41478                 * printf-args.c (printf_fetchargs): Work around broken
41479                 definition of wint_t on mingw.
41480
41481         2005-02-12  Bruno Haible  <bruno@clisp.org>
41482
41483                 * xallocsa.h: Add extern "C" for C++.
41484
41485         2006-05-17  Bruno Haible  <bruno@clisp.org>
41486
41487                 Cygwin portability.
41488                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
41489
41490         2006-04-30  Bruno Haible  <bruno@clisp.org>
41491
41492                 * progreloc.c: Include <mach-o/dyld.h> if available.
41493                 (find_executable): Use _NSGetExecutablePath when possible.
41494
41495         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41496
41497                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
41498                 function.
41499
41500         2005-12-29  Bruno Haible  <bruno@clisp.org>
41501
41502                 * progreloc.c (set_program_name_and_installdir): Fix
41503                 compilation error.
41504
41505         2005-12-04  Bruno Haible  <bruno@clisp.org>
41506
41507                 Cygwin portability.
41508                 * progreloc.c: Include <windows.h> also on Cygwin.
41509                 (find_executable): Add support for Cygwin.
41510                 (set_program_name_and_installdir): Handle also platforms with
41511                 nonempty EXEEXT.
41512
41513         2006-07-11  Bruno Haible  <bruno@clisp.org>
41514
41515                 * javacomp.c: Fix a comment.
41516                 Reported by Jim Meyering.
41517
41518         2006-04-30  Bruno Haible  <bruno@clisp.org>
41519
41520                 * javacomp.h (compile_java_class): Add source_version,
41521                 target_version arguments.
41522                 * javacomp.c: Rewritten to choose only a compiler that
41523                 respects the specified source_version and target_version.
41524
41525         2006-06-27  Bruno Haible  <bruno@clisp.org>
41526
41527                 Assume correct S_ISDIR macro.
41528                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
41529
41530         2006-07-22  Bruno Haible  <bruno@clisp.org>
41531
41532                 * javaversion.h: New file, from GNU gettext.
41533                 * javaversion.c: New file, from GNU gettext.
41534                 * javaversion.java: New file, from GNU gettext.
41535                 * javaversion.class: New file, from GNU gettext.
41536
41537         2006-05-17  Bruno Haible  <bruno@clisp.org>
41538
41539                 Cygwin portability.
41540                 * javaexec.c (execute_java_class): Test for jview program
41541                 also on Cygwin.
41542
41543         2006-04-09  Bruno Haible  <bruno@clisp.org>
41544
41545                 * fatal-signal.c: Don't include string.h.
41546                 (at_fatal_signal): Use a copying loop instead of memcpy.
41547
41548         2005-12-04  Bruno Haible  <bruno@clisp.org>
41549
41550                 * csharpexec.c: Add support for 'clix' launcher (untested).
41551                 (execute_csharp_using_sscli): New function.
41552                 (execute_csharp_program): Call it.
41553
41554         2006-06-21  Bruno Haible  <bruno@clisp.org>
41555
41556                 Avoid warnings from recent versions of mcs.
41557                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
41558                 -o, -L, -r any more. Use options documented since mcs-1.0
41559                 instead. Similarly for -g.
41560
41561         2005-07-09  Bruno Haible  <bruno@clisp.org>
41562
41563                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
41564                 add a .dll suffix.
41565                 Reported by Mark Junker <mjscod@gmx.de>.
41566
41567         2006-06-17  Bruno Haible  <bruno@clisp.org>
41568
41569                 * config.charset: Update for NetBSD 3.0.
41570
41571         2006-05-17  Bruno Haible  <bruno@clisp.org>
41572
41573                 Cygwin portability.
41574                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
41575
41576         2006-05-16  Bruno Haible  <bruno@clisp.org>
41577
41578                 * localcharset.c [CYGWIN]: Include <windows.h>.
41579                 (get_charset_aliases): For Cygwin, return the same CPxxx
41580                 aliases list as under WIN32.
41581                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
41582                 the environment variables. Fall back to GetACP().
41583
41584         2006-04-05  Bruno Haible  <bruno@clisp.org>
41585
41586                 * config.charset: Update Juan Manuel Guerrero's address.
41587
41588         2005-02-12  Bruno Haible  <bruno@clisp.org>
41589
41590                 * allocsa.h: Add extern "C" for C++.
41591
41592         2005-02-10  Bruno Haible  <bruno@clisp.org>
41593
41594                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
41595                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
41596
41597         2006-07-22  Bruno Haible  <bruno@clisp.org>
41598
41599                 * gettext.h: Update to GNU gettext-0.15.
41600
41601 2006-07-22  Bruno Haible  <bruno@clisp.org>
41602
41603         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
41604         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
41605         lib-prefix.m4, longdouble.m4, ssize_t.m4.
41606
41607 2006-07-21  Eric Blake  <ebb9@byu.net>
41608
41609         * modules/stdlib-safer: New file.
41610         * MODULES.html.sh (File stream based Input/Output): Add
41611         stdlib-safer.
41612
41613 2006-07-21  Eric Blake  <ebb9@byu.net>
41614
41615         * lib/stdlib-safer.h: New file from coreutils, required by
41616         stdlib--.h.
41617
41618 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
41619
41620         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
41621
41622 2006-07-20  Bruno Haible  <bruno@clisp.org>
41623
41624         * gnulib-tool: Recognize new option --assume-autoconf.
41625         (autoconf_minversion): New variable.
41626         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
41627
41628 2006-07-20  Bruno Haible  <bruno@clisp.org>
41629
41630         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
41631
41632 2006-07-19  Derek R. Price  <derek@ximbiot.com>
41633
41634         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
41635         Reindent and repaginate.
41636
41637 2006-07-19  Derek Price  <derek@ximbiot.com>
41638
41639         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
41640         Correct grammar.
41641
41642 2006-07-17  Bruno Haible  <bruno@clisp.org>
41643
41644         * modules/list: New file.
41645         * modules/array-list: New file.
41646         * modules/carray-list, modules/carray-list-tests: New files.
41647         * modules/linked-list, modules/linked-list-tests: New files.
41648         * modules/avltree-list, modules/avltree-list-tests: New files.
41649         * modules/rbtree-list, modules/rbtree-list-tests: New files.
41650         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
41651         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
41652         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
41653         * modules/oset: New file.
41654         * modules/array-oset: New file.
41655         * modules/avltree-oset, modules/avltree-oset-tests: New files.
41656         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
41657         * tests/test-carray_list.c: New file.
41658         * tests/test-linked_list.c: New file.
41659         * tests/test-avltree_list.c: New file.
41660         * tests/test-rbtree_list.c: New file.
41661         * tests/test-linkedhash_list.c: New file.
41662         * tests/test-avltreehash_list.c: New file.
41663         * tests/test-rbtreehash_list.c: New file.
41664         * tests/test-avltree_oset.c: New file.
41665         * tests/test-rbtree_oset.c: New file.
41666         * MODULES.html.sh (Container data structures): New section.
41667
41668 2006-07-17  Bruno Haible  <bruno@clisp.org>
41669
41670         * m4/gl_list.m4: New file.
41671
41672 2006-07-17  Bruno Haible  <bruno@clisp.org>
41673
41674         * lib/gl_list.h: New file.
41675         * lib/gl_list.c: New file.
41676         * lib/gl_array_list.h: New file.
41677         * lib/gl_array_list.c: New file.
41678         * lib/gl_carray_list.h: New file.
41679         * lib/gl_carray_list.c: New file.
41680         * lib/gl_linked_list.h: New file.
41681         * lib/gl_linked_list.c: New file.
41682         * lib/gl_anylinked_list1.h: New file.
41683         * lib/gl_anylinked_list2.h: New file.
41684         * lib/gl_avltree_list.h: New file.
41685         * lib/gl_avltree_list.c: New file.
41686         * lib/gl_anyavltree_list1.h: New file.
41687         * lib/gl_anyavltree_list2.h: New file.
41688         * lib/gl_rbtree_list.h: New file.
41689         * lib/gl_rbtree_list.c: New file.
41690         * lib/gl_anyrbtree_list1.h: New file.
41691         * lib/gl_anyrbtree_list2.h: New file.
41692         * lib/gl_anytree_list1.h: New file.
41693         * lib/gl_anytree_list2.h: New file.
41694         * lib/gl_linkedhash_list.h: New file.
41695         * lib/gl_linkedhash_list.c: New file.
41696         * lib/gl_anyhash_list1.h: New file.
41697         * lib/gl_anyhash_list2.h: New file.
41698         * lib/gl_avltreehash_list.h: New file.
41699         * lib/gl_avltreehash_list.c: New file.
41700         * lib/gl_rbtreehash_list.h: New file.
41701         * lib/gl_rbtreehash_list.c: New file.
41702         * lib/gl_anytreehash_list1.h: New file.
41703         * lib/gl_anytreehash_list2.h: New file.
41704
41705         * lib/gl_oset.h: New file.
41706         * lib/gl_oset.c: New file.
41707         * lib/gl_array_oset.h: New file.
41708         * lib/gl_array_oset.c: New file.
41709         * lib/gl_avltree_oset.h: New file.
41710         * lib/gl_avltree_oset.c: New file.
41711         * lib/gl_rbtree_oset.h: New file.
41712         * lib/gl_rbtree_oset.c: New file.
41713         * lib/gl_anytree_oset.h: New file.
41714
41715 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
41716
41717         * m4/mkancesdirs.m4: New file.
41718         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
41719         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
41720         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
41721         it.
41722
41723 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
41724
41725         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
41726         * lib/mkancesdirs.h: New files.
41727         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
41728         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
41729         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
41730         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
41731         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
41732         callers changed.  Revamp internals significantly, by not
41733         attempting to create directories that are temporarily more
41734         permissive than the final results.  Do not attempt to use
41735         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
41736         This removes some race conditions, fixes some bugs, and simplifies
41737         things.  Use new dirchownmod function to do owner and mode changes.
41738         * lib/mkdir-p.h: Likewise.
41739         * lib/modechange.c (octal_to_mode): New function.
41740         (struct mode_change): New member mentioned.
41741         (make_node_op_equals): New arg mentioned.  All callers changed.
41742         (mode_compile): Keep track of which mode bits the user has explicitly
41743         mentioned.
41744         (mode_adjust): New arg DIR, so that we implement the X op correctly.
41745         New arg PMODE_BITS, to keep track of which mode bits the user
41746         mentioned; it treats S_ISUID and S_ISGID speciall.
41747         All callers changed.
41748         * lib/modechange.h: Likewise.
41749
41750 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
41751
41752         * MODULES.html.sh: Add mkancestors.
41753         * modules/mkancesdirs: New module.
41754         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
41755         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
41756         The chdir-safer and afs files are now orphans; I'll remove them
41757         unless someone speaks up.
41758         Add lib/dirchownmod.c, lib/dirchownmod.h.
41759         (Depends-on): Remove alloca, chown, save-cwd, dirname.
41760         Add lchown, mkancesdirs.
41761         (Maintainer): Add self.
41762
41763 2006-07-15  Karl Berry  <karl@gnu.org>
41764
41765         * gnulib-tool: help message wording/arrangement.
41766
41767 2006-07-14  Simon Josefsson  <jas@extundo.com>
41768
41769         * doc/gnulib.texi (Libtool and Windows): New section.
41770
41771 2006-07-12  Simon Josefsson  <jas@extundo.com>
41772
41773         * modules/gendocs (License): Fix license, approved by Karl.
41774
41775 2006-07-12  Eric Blake  <ebb9@byu.net>
41776
41777         * MODULES.html.sh: Add gendocs.
41778
41779 2006-07-11  Eric Blake  <ebb9@byu.net>
41780
41781         * modules/fdl: New module, to install doc/fdl.texi.
41782         * MODULES.html.sh: Add new section for documentation modules.
41783         * gnulib-tool: Avoid space-tab.
41784         (--doc-base): New option, to manage files from doc.
41785
41786 2006-07-11  Eric Blake  <ebb9@byu.net>
41787
41788         * m4/absolute-header.m4: Fix comments to match recent change.
41789
41790 2006-07-11  Eric Blake  <ebb9@byu.net>
41791
41792         * gnulib-tool: List --doc-base before --tests-base.
41793
41794 2006-07-11  Derek R. Price  <derek@ximbiot.com>
41795
41796         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
41797
41798 2006-07-11  Bruno Haible  <bruno@clisp.org>
41799
41800         * README: Mention where to put documentation.
41801
41802 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41803
41804         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
41805
41806 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
41807
41808         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
41809         to stdint.m4.
41810
41811 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
41812
41813         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
41814         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
41815         "no/such/file/stdint.h" when there is no such file, so that
41816         the resulting C code can be parsed by dodgy compilers.
41817         Problems reported by Bob Proulx.
41818
41819 2006-07-10  Derek R. Price  <derek@ximbiot.com>
41820
41821         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
41822         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
41823         macros into the GNU _D_EXACT_NAMLEN.
41824         * lib/savedir.c:  Likewise.
41825         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
41826
41827 2006-07-10  Derek R. Price  <derek@ximbiot.com>
41828         and Paul Eggert  <eggert@cs.ucla.edu>
41829
41830         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
41831         * m4/savedir.m4:
41832         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
41833         macros into the GNU _D_EXACT_NAMLEN.
41834
41835 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
41836
41837         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
41838         around the absolute name, to work around a problem with the HP-UX
41839         11.23 native C compiler, reported by Bob Proulx.
41840
41841 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
41842
41843         * doc/maintain.texi, make-stds.texi: Sync from
41844         <http://savannah.gnu.org/projects/gnustandards>.
41845
41846 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
41847
41848         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
41849
41850 2006-07-09  Jim Meyering  <jim@meyering.net>
41851
41852         * m4/glob.m4: Remove a doubled word in a comment.
41853
41854 2006-07-09  Jim Meyering  <jim@meyering.net>
41855
41856         * lib/argp-pv.c: Remove a doubled word in a comment.
41857         * lib/check-version.c (check_version): Likewise.
41858         * lib/javacomp.c (compile_java_class): Likewise.
41859
41860 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
41861
41862         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
41863         for the benefit of people using Autoconf 2.60.  If you want to
41864         support older Autoconf versions you can copy m4/onceonly_2_57.m4
41865         (or m4/onceonly.m4, if pre-2.57) manually.
41866
41867 2006-07-08  Jim Meyering  <jim@meyering.net>
41868
41869         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
41870         comment.
41871         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
41872         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
41873         comment.
41874
41875 2006-07-08  Jim Meyering  <jim@meyering.net>
41876
41877         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
41878
41879 2006-07-07  Simon Josefsson  <jas@extundo.com>
41880
41881         * tests/test-crc.c: Change expected crc value, the test vector
41882         were probably computed using the old broken crc.c?
41883
41884 2006-07-06  Simon Josefsson  <jas@extundo.com>
41885
41886         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
41887         now the canonical place for the M4 file).
41888
41889         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
41890         from the sys_socket dependency now.
41891
41892         * modules/inet_pton (Files): Ditto.
41893
41894         * modules/inet_ntop (Files): Ditto.
41895
41896 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41897
41898         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
41899         not gl_PREREQ_GETUSERSHELL.
41900
41901 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41902
41903         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
41904         with only one argument, for Autoconf 2.60.
41905         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
41906         expand to nothing, so add a shell command to avoid syntax error.
41907         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
41908
41909 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41910
41911         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
41912
41913 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
41914
41915         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
41916         no longer needed.  Check for isblank decl.
41917         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
41918         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
41919         of existence.
41920
41921 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
41922
41923         * lib/getloadavg.c: Use __VMS, not VMS.
41924         * lib/getopt.c: Likewise.
41925         * lib/getpagesize.h: Likewise.
41926         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
41927         and probably does not work.
41928
41929 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
41930
41931         * lib/.cppi-disable: Add wcwidth.
41932         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
41933         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
41934         (ISGRAPH): Remove.  All uses changed to isgraph.
41935         (FOLD) [!defined _LIBC]: Remove special case.
41936         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
41937         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
41938         HAVE_ISBLANK.
41939         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
41940         case.
41941
41942 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
41943
41944         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
41945         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
41946         brackets.  Other minor changes to suppress some compiler
41947         warnings.
41948
41949 2006-07-06  Derek R. Price  <derek@ximbiot.com>
41950         and Paul Eggert  <eggert@cs.ucla.edu>
41951
41952         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
41953         of invoking obsolescent AC_HEADER_DIRENT macro.
41954         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
41955         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
41956         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
41957         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
41958         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
41959         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
41960         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
41961         * m4/readdir.m4: Remove; no longer needed.
41962
41963 2006-07-06  Derek R. Price  <derek@ximbiot.com>
41964         and Paul Eggert  <eggert@cs.ucla.edu>
41965
41966         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
41967         Don't worry about this obsolete case any more.
41968         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
41969         directories.
41970         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
41971         worry about this obsolete case any more.
41972         * lib/fts.c: Likewise.
41973         * lib/getcwd.c: Likewise.
41974         * lib/glob.h: Likewise.
41975         * lib/savedir.c: Likewise.
41976
41977 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
41978
41979         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
41980         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
41981         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
41982         needed.
41983         All uses removed.
41984         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
41985         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
41986         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
41987         needed.
41988         * m4/getdate.m4 (gl_GETDATE): Likewise.
41989         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
41990         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
41991         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
41992         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
41993         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
41994         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
41995         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
41996         needed.
41997
41998 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
41999
42000         * lib/memcasecmp.c: Include <limits.h>.
42001         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
42002         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
42003         Don't assume isdigit succeeds only on '0' through '9'.
42004
42005 2006-07-05  Eric Blake  <ebb9@byu.net>
42006
42007         * modules/getaddrinfo (Depends-on): Add snprintf.
42008
42009 2006-07-05  Eric Blake  <ebb9@byu.net>
42010
42011         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
42012         to avoid 'header present but could not be compiled' on cygwin.
42013
42014 2006-07-05  Eric Blake  <ebb9@byu.net>
42015
42016         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
42017         missing from netdb.h.
42018         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
42019
42020 2006-07-05  Derek R. Price  <derek@ximbiot.com>
42021
42022         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
42023         no longer needed.
42024         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
42025         * m4/getdate.m4 (gl_GETDATE): Likewise.
42026         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
42027         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
42028         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
42029         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
42030         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
42031
42032 2006-07-05  Derek R. Price  <derek@ximbiot.com>
42033
42034         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
42035         All uses of is_space replaced by isspace.
42036         * lib/exit.h: Don't talk about STDC_HEADERS.
42037         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
42038         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
42039         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
42040         replaced by isprint etc.
42041         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
42042         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
42043         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
42044         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
42045         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
42046         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
42047
42048 2006-07-05  Bruno Haible  <bruno@clisp.org>
42049
42050         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
42051         the function exists, before testing against AIX.
42052         Reported by Martin Lambers <marlam@marlam.de>.
42053
42054 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
42055
42056         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
42057         From Mark D. Baushke.
42058
42059 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
42060
42061         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
42062         to the absolute name, not just one, to bypass Sun C 5.8's
42063         "warning: #include of /usr/include/... may be non-portable".
42064
42065 2006-07-04  Eric Blake  <ebb9@byu.net>
42066
42067         * modules/dirname-tests: New test module.
42068         * tests/test-dirname.c: New file, replacing dirname.c
42069         TEST_DIRNAME section that was recently deleted.
42070
42071 2006-07-04  Bruno Haible  <bruno@clisp.org>
42072
42073         Assume ANSI C header files and <ctype.h> functions.
42074         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
42075         (mbsnwidth): Use isprint, iscntrl instead.
42076
42077 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42078
42079         Merge from coreutils.
42080         * MODULES.html.sh: Add xstrtold.
42081         * modules/xstrtold: New file.
42082         * modules/cycle-check (Files): Add lib/same-inode.h.
42083         * modules/dirname (Files): Add m4/double-slash-root.m4.
42084         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
42085         * modules/mkdir-p (Files): Add lib/same-inode.h.
42086         * modules/same (Files): Add lib/same-inode.h.
42087
42088 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42089
42090         * m4/absolute-header.m4: Renamed from full-header-path.m4.
42091         This is to keep the terminology clean; POSIX talks about
42092         "absolute pathnames", not "full pathnames", but the GNU
42093         Coding Standards say to use "path" for something else;
42094         so use "absolute" to keep both sides happy.
42095         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
42096         Set gl_absolute_header, not gl_full_header_path.
42097         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
42098         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
42099         All uses changed.
42100
42101         Merge from coreutils.
42102
42103         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
42104
42105         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
42106         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
42107         want to require the building of c-strtod.o.
42108         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
42109         needs -lm directly.
42110         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
42111
42112         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
42113
42114         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
42115         --as-needed option if available.  Problem reported by Albert Chin in
42116         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
42117         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
42118         cc merely issues a bunch of annoying warnings for --as-needed
42119         (this problem was reported by Bob Proulx).  Also, try linking with
42120         -lm to detect a bug in binutils 2.16 (this problem was reported
42121         by Ralf Wildenhues).
42122
42123         2006-06-18  Jim Meyering  <jim@meyering.net>
42124
42125         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
42126         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
42127         macro.
42128         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
42129         also check for glibc-2.4's abort-inducing bug.
42130
42131         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
42132         Low-probability clean-up should be to use rmdir to get rid of
42133         the just-created directory, not unlink.
42134
42135         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
42136         configure fail, and request a bug report to inform us about it.
42137         Add a comment that, barring reports to the contrary, in 2007 we'll
42138         assume ftruncate is universally available.
42139
42140         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
42141
42142         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
42143
42144         2006-03-12  Jim Meyering  <jim@meyering.net>
42145
42146         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
42147         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
42148         * m4/same.m4 (gl_SAME): Likewise.
42149         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
42150
42151         2006-03-11  Eric Blake  <ebb9@byu.net>
42152
42153         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
42154         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
42155         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
42156         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
42157
42158 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42159
42160         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
42161         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
42162         reported by Mark D. Baushke, one in
42163         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
42164
42165         Merge from coreutils.
42166
42167         * lib/.cppi-disable: Add stdint_.h.
42168         * lib/.cvsignore: Add stdint.h.
42169
42170         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
42171
42172         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
42173         both double and long double versions.
42174         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
42175         * lib/xstrtold.c: New file.
42176         * lib/xstrtod.h (xstrtold): New decl.
42177
42178         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
42179
42180         * lib/filemode.c (setst): Remove.
42181         (strmode): Rewrite to avoid setst.  This makes the code shorter,
42182         (arguably) clearer, and the generated code is a bit smaller on my
42183         Debian GNU/Linux stable x86 host.
42184
42185         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
42186
42187         * lib/filemode.c: Include "filemode.h" first, to test the interface.
42188         Assume that filemode.h includes sys/types.h and sys/stat.h.
42189         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
42190         (ftypelet): Reorder to put common cases first, for efficiency.
42191         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
42192         to do 'M'.
42193         (strmode): Renamed from mode_string, and now stores 12 bytes instead
42194         of 10, for compatibility with FreeBSD.  All callers changed.
42195         (filemodestring): Now stores 12 bytes instead of 10, and sets file
42196         types that can't be deduced solely from st_mode.  First arg is now a
42197         const pointer.
42198         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
42199         (strmode): Renamed from mode_string.
42200         (filemodestring): New decl.
42201         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
42202         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
42203         needed.
42204         (S_ISPORT, S_ISWHT): New macros, if not already defined.
42205
42206         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
42207
42208         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
42209         fsusage.h now does that.  Include fsusage.h first, to test interface.
42210         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
42211         at most one method (the old code could have generated decls that
42212         didn't conform to C89, not that this was ever exercised).
42213         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
42214
42215         2006-03-19  Jim Meyering  <jim@meyering.net>
42216
42217         Work even in a chroot where d_ino values for entries in "/"
42218         don't match the stat.st_ino values for the same names.
42219         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
42220         number, iterate through all entries again, using lstat instead.
42221         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
42222         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
42223
42224         * lib/getcwd.c (__getcwd): Clarify a comment.
42225         Use memcpy in place of a call to strcpy.
42226
42227         2006-03-12  Jim Meyering  <jim@meyering.net>
42228
42229         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
42230         matches that of the current directory (which we're about to chdir ".."
42231         out of), then save the dev-ino of the parent, instead.
42232
42233         * lib/same-inode.h (SAME_INODE): New file/macro.
42234         * lib/chdir-safer.c (SAME_INODE): Remove definition.
42235         Include "same-inode.h", instead.
42236         * lib/same.c: Likewise.
42237         * lib/cycle-check.h: Include "same-inode.h".
42238         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
42239         * lib/cycle-check.c (SAME_INODE): Remove definition.
42240         * lib/root-dev-ino.h: Include "same-inode.h".
42241
42242         2006-03-11  Eric Blake  <ebb9@byu.net>
42243
42244         * lib/same.c (same_name): s/base_name/last_component/
42245         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
42246         * lib/filenamecat.c (file_name_concat): Likewise.
42247
42248         2006-03-11  Eric Blake  <ebb9@byu.net>,
42249                     Paul Eggert  <eggert@cs.ucla.edu>
42250
42251         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
42252         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
42253         drive prefix.
42254         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
42255         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
42256         (last_component): New method.
42257         * lib/dirname.c (dir_len): Determine when drive letters need a
42258         subsequent slash.  Preserve // when it is special.
42259         (dir_name): Don't append dot when drive letter is absolute.
42260         [TEST_DIRNAME]: Move into a full-blown gnulib test.
42261         * lib/basename.c (base_name): New semantics - malloc the result.
42262         Preserve // when it is special.  Preserve relative files that look
42263         like drive letters.
42264         (base_len): Preserve // when it is special.
42265         (last_component): New method, similar to old base_name semantics.
42266         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
42267         base_name.  Strip redundant slashes from ///.
42268
42269 2006-07-03  Jim Meyering  <jim@meyering.net>
42270
42271         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
42272         macro is used before the first cycle_check call.
42273
42274 2006-07-03  Eric Blake  <ebb9@byu.net>
42275
42276         * modules/dirname (Depends-on): Add xstrndup.
42277
42278 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
42279
42280         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
42281         test cases, so that config.log is a bit easier to follow.
42282
42283 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
42284
42285         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
42286         both are 64 bits, since this seems to be the tradition, and this
42287         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
42288         we ever run into a host that prefers long long to long in this
42289         case, we'll need another configure-time test.  Problem reported by
42290         Jim Meyering.
42291
42292 2006-07-02  Eric Blake  <ebb9@byu.net>
42293
42294         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
42295
42296 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
42297
42298         * modules/inttypes (Depends-on): No longer depends on stdint.
42299         * modules/stdint (Description): Say more about assumptions.
42300         Say that the fast types might differ.  Say macros are used.
42301         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
42302         (Makefile.am): Revise list of substituted symbols to match
42303         new stdint.m4.
42304         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
42305         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
42306         * tests/test-stdint.c (verify_same_types)
42307         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
42308         the code conforms to C99/C89.
42309         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
42310         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
42311
42312 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
42313
42314         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
42315         but fix a bug, by requiring at least 64 bits.
42316         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
42317         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
42318         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
42319         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
42320
42321         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
42322         changes.  Make 2.59 a prerequisite.  Check and substitute for
42323         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
42324         inttypes.h.  Do not use special include files; just use the
42325         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
42326         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
42327         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
42328         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
42329         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
42330         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
42331         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
42332         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
42333         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
42334         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
42335         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
42336         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
42337         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
42338         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
42339         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
42340         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
42341         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
42342         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
42343         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
42344         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
42345         WINT_MAX.  Check for C99 conformance more strictly, by detecting
42346         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
42347         not check for things that C99 does not require, e.g., int8_t.  If
42348         a test isn't needed unless <stdint.h> isn't working, and is
42349         unlikely to be needed for any other reason, then don't do it
42350         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
42351         size_t, since we assume C89 freestanding at least.  Do not check
42352         for sig_atomic_t, wchar_t, or wint_t, since the code now does
42353         the right thing even if the types are not defined.  Instead use:
42354         (gl_STDINT_TYPE_PROPERTIES): New macro.
42355         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
42356         testing whether <sys/types.h> clashes, as Autoconf does this for
42357         us now.  All uses removed.
42358         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
42359         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
42360         (gl_CHECK_TYPE_SAME):
42361         Remove; no longer needed.
42362         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
42363         exists, since we'll return 0 anyway in that case.
42364         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
42365
42366 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
42367
42368         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
42369         possible collision with system files.
42370         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
42371         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
42372         WCHAR_MIN and WCHAR_MAX in this case.
42373         (<stddef.h>): Do not include; no longer needed.
42374         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
42375         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
42376         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
42377         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
42378         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
42379         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
42380         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
42381         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
42382         !defined(__c99))]: Include in this case too, since it's harmless
42383         now.
42384         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
42385         dangerous to do so.
42386         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
42387         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
42388         (_STDINT_MIN, _STDINT_MAX): New macros.
42389         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
42390         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
42391         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
42392         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
42393         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
42394         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
42395         macros, not typedefs; this simplifies things quite a bit.
42396         Use long int for all types narrower than int64_t.
42397         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
42398         Define in terms of long long int or int64_t or long int,
42399         not int64_t or int32_t.  This saves some compile-time testing.
42400         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
42401         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
42402         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
42403         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
42404         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
42405         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
42406         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
42407         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
42408         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
42409         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
42410         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
42411         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
42412         undef any previous version and define our own version, for
42413         simplicity and consistency with the new macros for types.
42414         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
42415         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
42416         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
42417         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
42418         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
42419         @WINT_T_SUFFIX@ to keep things simple here.
42420         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
42421         Simplify by assuming typical 8/16/32/64 host, since we're
42422         already doing that elsewhere anyway.
42423         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
42424         and assume long long int is 64 bits if available.  This
42425         speeds up 'configure'.
42426
42427 2006-07-01  Eric Blake  <ebb9@byu.net>
42428
42429         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
42430         Reported by Andreas Buening.
42431
42432 2006-07-01  Eric Blake  <ebb9@byu.net>
42433
42434         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
42435
42436 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
42437
42438         * lib/getaddrinfo.c: fixed typo
42439
42440 2006-06-29  Jim Meyering  <jim@meyering.net>
42441
42442         * modules/strftime (Maintainer): Add my name, since with the
42443         FPRINTFTIME changes strftime.c has forked from glibc.
42444
42445 2006-06-29  Eric Blake  <ebb9@byu.net>
42446
42447         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
42448
42449 2006-06-29  Eric Blake  <ebb9@byu.net>
42450
42451         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
42452
42453 2006-06-29  Eric Blake  <ebb9@byu.net>
42454
42455         * lib/stat_.h: New file.
42456
42457 2006-06-29  Eric Blake  <ebb9@byu.net>
42458
42459         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
42460         unused static function.
42461
42462 2006-06-29  Eric Blake  <ebb9@byu.net>
42463
42464         * doc/functions.texi (Function Portability): Document missing lstat
42465         on mingw.
42466
42467 2006-06-29  Eric Blake  <ebb9@byu.net>
42468
42469         * MODULES.html.sh: Add sys_stat.
42470         * modules/sys_stat: New module.
42471         * modules/mkstemp (Depends-on): Add sys_stat.
42472
42473 2006-06-29  Derek R. Price  <derek@ximbiot.com>
42474
42475         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
42476
42477 2006-06-29  Derek R. Price  <derek@ximbiot.com>
42478
42479         * m4/c-bs-a.m4: Removed.
42480
42481 2006-06-29  Derek R. Price  <derek@ximbiot.com>
42482
42483         * lib/strftime.c: Assume strftime() exists.
42484
42485 2006-06-29  Derek Price  <derek@ximbiot.com>
42486
42487         * modules/c-bs-a: Removed - \a is C89.
42488         * MODULES.html.sh: Remove c-bs-a.
42489
42490 2006-06-29  Bruno Haible  <bruno@clisp.org>
42491
42492         * modules/wcwidth (License): Change to LGPL.
42493
42494 2006-06-28  Simon Josefsson  <jas@extundo.com>
42495
42496         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
42497         on _WIN32.
42498
42499         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
42500         getnameinfo.
42501
42502 2006-06-28  Simon Josefsson  <jas@extundo.com>
42503
42504         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
42505
42506 2006-06-28  Simon Josefsson  <jas@extundo.com>
42507
42508         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
42509         functions there.  It will succeed on Windows XP, but on Windows
42510         2000 and (presumably) earlier, it will fail, and use the internal
42511         re-implementation.
42512         (use_win32_p): New function.
42513         (getaddrinfo): Use strtoul on servname, to support numeric ports.
42514         Support AI_NUMERICSERV to disable getservbyname.
42515         (getnameinfo): New function, only supports
42516         NI_NUMERICHOST|NI_NUMERICSERV for now.
42517
42518         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
42519         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
42520         getnameinfo.
42521
42522 2006-06-28  Eric Blake  <ebb9@byu.net>
42523
42524         * modules/wcwidth: New file.
42525         * modules/mbchar (Depends-on): Add wcwidth.
42526         * modules/mbswidth (Depends-on): Add wcwidth.
42527         * MODULES.html.sh: Add wcwidth.
42528
42529 2006-06-28  Eric Blake  <ebb9@byu.net>
42530
42531         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
42532         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
42533
42534 2006-06-28  Eric Blake  <ebb9@byu.net>
42535
42536         * lib/xvasprintf.h: Fix comments.
42537
42538 2006-06-28  Eric Blake  <ebb9@byu.net>
42539
42540         * lib/mbchar.h (wcwidth): Include wcwidth.h.
42541         * lib/mbswidth.c (wcwidth): Move from here...
42542         * lib/wcwidth.h: ...to this new file.
42543
42544 2006-06-28  Derek R. Price  <derek@ximbiot.com>
42545
42546         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
42547
42548         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
42549         it's obsolete.
42550         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
42551
42552 2006-06-28  Derek R. Price  <derek@ximbiot.com>
42553
42554         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
42555         Autoconf 2.60 says this stuff was obsolete.
42556
42557 2006-06-28  Bruno Haible  <bruno@clisp.org>
42558
42559         * modules/wcwidth (Files): Add m4/wchar_t.m4.
42560
42561 2006-06-28  Bruno Haible  <bruno@clisp.org>
42562
42563         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
42564         gt_TYPE_WCHAR_T.
42565
42566 2006-06-28  Bruno Haible  <bruno@clisp.org>
42567
42568         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
42569         declaration for wcwidth.
42570         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
42571
42572 2006-06-28  Bruno Haible  <bruno@clisp.org>
42573
42574         * lib/mkdtemp.c [MINGW]: Include <io.h>.
42575         (mkdir): Define using _mkdir.
42576
42577 2006-06-28  Bruno Haible  <bruno@clisp.org>
42578
42579         * lib/getaddrinfo.h: Fix POSIX URL.
42580         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
42581         _WIN32.
42582         (use_win32_p): Make static.
42583         (getaddrinfo): Reject service name if it is empty or does not consist
42584         solely of decimal digits, or if its value is > 65535.
42585         (getnameinfo): Remove useless casts.
42586
42587 2006-06-27  Simon Josefsson  <jas@extundo.com>
42588
42589         * modules/sys_select: New file, suggested by Bruno Haible, Paul
42590         Eggert and Martin Lambers.
42591
42592 2006-06-27  Simon Josefsson  <jas@extundo.com>
42593
42594         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
42595         Eggert and Martin Lambers.
42596
42597 2006-06-27  Bruno Haible  <bruno@clisp.org>
42598
42599         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
42600         result to 0, not to empty.
42601         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
42602
42603 2006-06-27  Bruno Haible  <bruno@clisp.org>
42604
42605         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
42606
42607 2006-06-26  Simon Josefsson  <jas@extundo.com>
42608
42609         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
42610         present.
42611
42612 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
42613
42614         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
42615         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
42616         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
42617
42618 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
42619
42620         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
42621
42622 2006-06-26  Bruno Haible  <bruno@clisp.org>
42623
42624         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
42625
42626 2006-06-26  Bruno Haible  <bruno@clisp.org>
42627
42628         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
42629
42630 2006-06-26  Bruno Haible  <bruno@clisp.org>
42631
42632         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
42633         SGI C compiler in pre-C99 mode.
42634         Suggested by Mark D. Baushke and Larry Jones.
42635
42636 2006-06-26  Bruno Haible  <bruno@clisp.org>
42637
42638         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
42639         WCHAR_MAX.
42640         Reported by Mark D. Baushke and Larry Jones.
42641
42642 2006-06-26  Bruno Haible  <bruno@clisp.org>
42643
42644         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
42645         in pre-C99 mode.
42646         Suggested by Mark D. Baushke and Larry Jones.
42647
42648 2006-06-23  Simon Josefsson  <jas@extundo.com>
42649             Bruno Haible  <bruno@clisp.org>
42650
42651         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
42652         Emit mostlyclean-local rule.
42653         (func_emit_tests_Makefile_am): Likewise.
42654         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
42655
42656 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
42657
42658         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
42659
42660 2006-06-23  Bruno Haible  <bruno@clisp.org>
42661
42662         * tests/test-stdint.c: Update to match ISO C 99 Technical
42663         Corrigendum 1.
42664
42665 2006-06-23  Bruno Haible  <bruno@clisp.org>
42666
42667         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
42668
42669 2006-06-23  Bruno Haible  <bruno@clisp.org>
42670
42671         * lib/stdint_.h: Treat IRIX like OpenBSD.
42672
42673 2006-06-23  Bruno Haible  <bruno@clisp.org>
42674
42675         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
42676         ISO C 99 Technical Corrigendum 1.
42677
42678 2006-06-22  Simon Josefsson  <jas@extundo.com>
42679
42680         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
42681         MinGW.
42682
42683 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42684
42685         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
42686         needed.  Some compiler complained about some of them.  Problem reported
42687         by Larry Jones in
42688         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
42689
42690 2006-06-21  Simon Josefsson  <jas@extundo.com>
42691
42692         * tests/test-getaddrinfo.c: New file.
42693
42694         * modules/getaddrinfo-tests: New file.
42695
42696         * MODULES.html.sh: Add inet_pton.
42697
42698         * modules/inet_pton: New file.
42699
42700 2006-06-21  Simon Josefsson  <jas@extundo.com>
42701
42702         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
42703         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
42704         of using the (limited) gnulib implementation on Windows XP.
42705
42706         * m4/inet_pton.m4: New file.
42707
42708 2006-06-21  Simon Josefsson  <jas@extundo.com>
42709
42710         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
42711         variable.
42712
42713         * lib/socket_.h: Don't define WINVER.
42714
42715         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
42716         slightly modified to work in gnulib.
42717
42718 2006-06-21  Simon Josefsson  <jas@extundo.com>
42719
42720         * doc/gnulib.texi (Windows sockets): Add.
42721
42722 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
42723
42724         * lib/read-file.c (fread_file): Start with buffer allocation of
42725         0 bytes rather than 1 byte; this simplifies the code.
42726         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
42727         code to free buffer and save/restore errno.
42728         (internal_read_file): Remove unused local.
42729
42730 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
42731
42732         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
42733         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
42734         Problem reported by Denis Excoffier in
42735         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
42736
42737 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
42738
42739         * modules/sys_socket, modules/socklen: Include sys/types since
42740         FreeBSD 4.x's sys/socket.h needs it.
42741
42742 2006-06-19  Simon Josefsson  <jas@extundo.com>
42743
42744         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
42745
42746 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
42747
42748         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
42749
42750 2006-06-19  Bruno Haible  <bruno@clisp.org>
42751
42752         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
42753         and FULL_PATH_INTTYPES_H in angle brackets.
42754         Reported by Mark D. Baushke <mdb@gnu.org>.
42755
42756 2006-06-17  Eric Blake  <ebb9@byu.net>
42757
42758         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
42759         errno.
42760
42761 2006-06-17  Bruno Haible  <bruno@clisp.org>
42762
42763         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
42764         <sys/inttypes.h>.
42765
42766 2006-06-17  Bruno Haible  <bruno@clisp.org>
42767
42768         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
42769         whether errno is declared. Assume <errno.h> declares errno.
42770
42771 2006-06-17  Bruno Haible  <bruno@clisp.org>
42772
42773         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
42774
42775 2006-06-17  Bruno Haible  <bruno@clisp.org>
42776
42777         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
42778         problem on Solaris 2.5.1.
42779
42780 2006-06-16  Eric Blake  <ebb9@byu.net>
42781
42782         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
42783         * lib/unicodeio.c [!defined errno]: Likewise.
42784         * lib/strtol.c [!defined errno]: Likewise.
42785         * lib/strtod.c [!defined errno]: Likewise.
42786
42787 2006-06-15  Eric Blake  <ebb9@byu.net>
42788
42789         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
42790
42791 2006-06-15  Eric Blake  <ebb9@byu.net>
42792
42793         * config/srclist.txt (ssize_t.m4): Lose sync.
42794
42795 2006-06-15  Bruno Haible  <bruno@clisp.org>
42796
42797         * modules/stdint (Files): Include m4/full-header-path.m4,
42798         m4/size_max.m4, m4/wchar_t.m4.
42799         (Makefile.am): Many more substitutions.
42800         * modules/stdint-tests: New file.
42801         * tests/test-stdint.c: New file.
42802
42803 2006-06-15  Bruno Haible  <bruno@clisp.org>
42804
42805         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
42806         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
42807         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
42808         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
42809         gl_CHECK_TYPE_SAME): New macros.
42810
42811 2006-06-15  Bruno Haible  <bruno@clisp.org>
42812
42813         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
42814
42815 2006-06-15  Bruno Haible  <bruno@clisp.org>
42816
42817         * lib/stdint_.h: Rewritten to be fully auto-configured.
42818         Fixes bug on HP-UX/IA64.
42819
42820 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
42821
42822         * lib/getdate.y (__attribute__): Don't define if already defined.
42823         Problem reported by Larry Jones.
42824         * lib/utimens.c (__attribute__): Likewise.
42825
42826 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
42827
42828         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
42829         reported by Andreas Schwab.
42830
42831 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42832             Bruno Haible  <bruno@clisp.org>
42833
42834         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
42835         check for the declaration of strnlen and a run test that exposes the
42836         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
42837         rpl_strndup.
42838
42839 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42840             Bruno Haible  <bruno@clisp.org>
42841
42842         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
42843
42844 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42845
42846         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
42847         compile test, for Tru64 4.0D.
42848
42849 2006-05-28  Karl Berry  <karl@gnu.org>
42850
42851         * config/srclist.txt (printf-args.c): lose sync.
42852
42853 2006-05-26  Martin Lambers  <marlam@marlam.de>
42854
42855         * lib/getpass.c: Updates the test for the native W32 API, and adds
42856         missing includes, thus fixing compilation warnings.
42857
42858 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
42859
42860         * lib/exclude.c (exclude_fnmatch): New function.
42861         (excluded_file_name): Call exclude_fnmatch.
42862         * lib/exclude.h (excluded_file_name): New prototype
42863
42864 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
42865
42866         * lib/tempname.c (small_open, large_open): New macros.
42867         (__open, __open64) [!_LIBC]: Remove.
42868         (__gen_tempname): Use small_open and large_open instead of __open
42869         and __open64.  This fixes a portability bug on HP-UX 11.11i
42870         reported by Simon Wing-Tang in
42871         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
42872
42873 2006-05-24  Bruno Haible  <bruno@clisp.org>
42874
42875         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
42876         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
42877         Reported by Thorsten Maerz <torte@netztorte.de> via
42878         Aaron Stone <aaron@serendipity.cx>.
42879
42880 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
42881
42882         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
42883         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
42884         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
42885         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
42886         not really conditional on the cache.
42887         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
42888
42889 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
42890
42891         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
42892         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
42893         (my_usleep): Don't mishandle maximum value.
42894
42895 2006-05-19  Jim Meyering  <jim@meyering.net>
42896
42897         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
42898
42899 2006-05-17  Bruno Haible  <bruno@clisp.org>
42900
42901         Cygwin portability.
42902         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
42903
42904 2006-05-17  Bruno Haible  <bruno@clisp.org>
42905
42906         * lib/stdint_.h: Fix recognition of Cygwin.
42907
42908 2006-05-15  Bruno Haible  <bruno@clisp.org>
42909
42910         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
42911         on libtool patch by Ralf Wildenhues.
42912
42913 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
42914
42915         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
42916         test for C99 conformance; (bool) 0.5 is an integer constant
42917         expression, but (bool) -0.5 is not.  Problem reported by Fedor
42918         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
42919
42920 2006-05-11  Simon Josefsson  <jas@extundo.com>
42921
42922         * m4/xvasprintf.m4: Fix obvious typo.
42923
42924 2006-05-11  Jim Meyering  <jim@meyering.net>
42925
42926         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
42927         James Lemley.
42928
42929 2006-05-10  Simon Josefsson  <jas@extundo.com>
42930
42931         * lib/md4.c: Typo fix, update copyright years.
42932         (K1, K2): Don't use L because it turn computations into 64-bit on
42933         64-bit platforms.
42934
42935 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
42936
42937         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
42938         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
42939         unwanted sign propagation, e.g., on hosts with 64-bit int.
42940         There still are some problems with reeelly weird theoretical hosts
42941         (e.g., 33-bit int) but it's not worth worrying about now.
42942         * lib/sha1.c (rol): Likewise.
42943         (K1, K2, K3, K4): Remove unnecessary L suffix.
42944
42945 2006-05-10  Bruno Haible  <bruno@clisp.org>
42946
42947         * lib/des.c: Cast to avoid warnings.
42948
42949 2006-05-09  Bruno Haible  <bruno@clisp.org>
42950
42951         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
42952         (Depends-on): Depend also on xsize, stdarg.
42953         (configure.ac): Add gl_XVASPRINTF.
42954
42955 2006-05-09  Bruno Haible  <bruno@clisp.org>
42956
42957         * m4/xvasprintf.m4: New file.
42958
42959 2006-05-09  Bruno Haible  <bruno@clisp.org>
42960
42961         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
42962         (EOVERFLOW): Define fallback value.
42963         (xstrcat): New function.
42964         (xvasprintf): Recognize the special case of a string concatenation.
42965
42966 2006-05-08  Eric Blake  <ebb9@byu.net>
42967
42968         * gnulib-tool (func_version): Base copyright year on CVS date.
42969         (func_emit_copyright_notice): New function.
42970         (func_emit_lib_Makefile_am): Use it.
42971         (func_emit_tests_Makefile_am): Likewise.
42972         (func_import): Likewise.
42973
42974 2006-05-08  Bruno Haible  <bruno@clisp.org>
42975
42976         * modules/stdarg: New file.
42977         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
42978
42979 2006-05-08  Bruno Haible  <bruno@clisp.org>
42980
42981         * m4/stdarg.m4: New file, from GNU gettext.
42982
42983 2006-05-08  Bruno Haible  <bruno@clisp.org>
42984
42985         * config/srclist.txt (build-aux/config.rpath): different from latest
42986         release.
42987
42988 2006-05-08  Bruno Haible  <bruno@clisp.org>
42989
42990         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
42991
42992 2006-05-05  Jim Meyering  <jim@meyering.net>
42993
42994         * m4/warning.m4: New file, derived from bison's file by the same name.
42995
42996 2006-05-03  Bruno Haible  <bruno@clisp.org>
42997
42998         * lib/stdint_.h: Shorter URL.
42999         * lib/inttypes.h: Likewise.
43000
43001 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
43002
43003         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
43004
43005 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
43006
43007         * lib/verify.h: Document the internals better.  Most of this change
43008         was written by Bruno Haible.
43009
43010 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
43011
43012         * doc/verify.texi: New file, partly based on a proposal by
43013         Bruno Haible.
43014
43015 2006-05-02  Bruno Haible  <bruno@clisp.org>
43016
43017         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
43018         test from here...
43019         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
43020
43021 2006-04-29  Bruno Haible  <bruno@clisp.org>
43022
43023         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
43024         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
43025
43026 2006-04-29  Bruno Haible  <bruno@clisp.org>
43027
43028         * gnulib-tool: Make --update option actually work.
43029
43030 2006-04-29  Bruno Haible  <bruno@clisp.org>
43031
43032         * doc/gcd.texi: New file.
43033         * doc/gnulib.texi: Include it.
43034
43035 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
43036
43037         * lib/getdate.y (get_date): When adding relative date, start with the
43038         initial time, not with the result of the first mktime call.
43039
43040 2006-04-25  Bruno Haible  <bruno@clisp.org>
43041
43042         * gnulib-tool (func_import): Output the include directives in three
43043         blocks, sorted separately.
43044         Reported by Ben Pfaff <blp@cs.stanford.edu>.
43045
43046 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
43047
43048         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
43049         to define main with arguments, for C++.  Reported by Eric Blake.
43050         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
43051         Prefer 'int main ()' to 'int main (void)', for C++.
43052         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
43053         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
43054         for 'main', for C99 and C++.
43055
43056 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
43057
43058         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
43059         Don't assume that exit status -1 is valid.
43060         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
43061         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
43062         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
43063         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
43064         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
43065         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
43066         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
43067         functions can be used without declaring them, or that you can
43068         exit with status -1.
43069         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
43070
43071 2006-04-24  Karl Berry  <karl@gnu.org>
43072
43073         * config/srclist.txt (longdouble.m4): sync lost.
43074
43075 2006-04-24  Eric Blake  <ebb9@byu.net>
43076
43077         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
43078
43079 2006-04-24  Bruno Haible  <bruno@clisp.org>
43080
43081         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
43082         poll() implementation in AIX.
43083         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43084
43085 2006-04-24  Bruno Haible  <bruno@clisp.org>
43086
43087         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
43088         assigned exactly once.
43089
43090 2006-04-23  Claudio Fontana  <claudio@gnu.org>
43091             Bruno Haible  <bruno@clisp.org>
43092
43093         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
43094         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
43095         for AM_CPPFLAGS.
43096
43097 2006-04-23  Bruno Haible  <bruno@clisp.org>
43098
43099         * modules/copy-file: Depend on unistd.
43100         * modules/execute: Likewise.
43101         * modules/fatal-signal: Likewise.
43102         * modules/findprog: Likewise.
43103         * modules/mkdtemp : Likewise.
43104         * modules/pipe: Likewise.
43105         * modules/wait-process: Likewise.
43106
43107 2006-04-23  Bruno Haible  <bruno@clisp.org>
43108
43109         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
43110         condition was already detected.
43111         Reported by Ben Pfaff <blp@cs.stanford.edu>.
43112
43113 2006-04-23  Bruno Haible  <bruno@clisp.org>
43114
43115         * lib/copy-file.c: Include <unistd.h> unconditionally.
43116         * lib/execute.c: Likewise.
43117         * lib/fatal-signal.c: Likewise.
43118         * lib/findprog.c: Likewise.
43119         * lib/mkdtemp.c: Likewise.
43120         * lib/pipe.h: Likewise.
43121         * lib/pipe.c: Likewise.
43122         * lib/wait-process.h: Likewise.
43123
43124 2006-04-23  Bruno Haible  <bruno@clisp.org>
43125
43126         * gnulib-tool (func_usage): Fix --import description. Document
43127         --update.
43128         (func_import): Create temporary file in a temporary directory, if
43129         --dry-run is specified. Silence errors from 'grep' when there are no
43130         m4 files in $m4dir.
43131         (func_create_testdir): Silence errors from 'grep' when there are no
43132         m4 files in $m4dir.
43133         Reported by Karl Berry <karl@freefriends.org>.
43134
43135 2006-04-20  Bruno Haible  <bruno@clisp.org>
43136
43137         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
43138         one argument, so that the code will be portable to Autoconf 2.60.
43139         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
43140         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
43141         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
43142
43143 2006-04-19  Derek Price  <derek@ximbiot.com>
43144             Eric Blake  <ebb9@byu.net>
43145
43146         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
43147         rather than "/full/path.h".  Update comment to match.  Shorten &
43148         generalize m4_translit call via AS_TR_CPP.
43149
43150 2006-04-19  Derek Price  <derek@ximbiot.com>
43151             Eric Blake  <ebb9@byu.net>
43152
43153         * lib/inttypes.h: Correct grammar in comment.
43154
43155 2006-04-18  Derek Price  <derek@ximbiot.com>
43156             Paul Eggert  <eggert@cs.ucla.edu>
43157
43158         * modules/inttypes: New file.
43159         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
43160
43161 2006-04-18  Derek Price  <derek@ximbiot.com>
43162             Paul Eggert  <eggert@cs.ucla.edu>
43163
43164         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
43165         New files.
43166
43167 2006-04-18  Derek Price  <derek@ximbiot.com>
43168             Paul Eggert  <eggert@cs.ucla.edu>
43169
43170         * lib/inttypes.h: New file.
43171         * lib/strtoimax.c: Assume <inttypes.h>.
43172
43173 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
43174
43175         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
43176         isn't mounted.  Problem reported by Kir Kolyshkin.
43177
43178 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
43179
43180         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
43181         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
43182         Derek R. Price.
43183         * lib/regex.h (RE_DUP_MAX): Update comment to match current
43184         implementation.
43185
43186 2006-04-12  Eric Blake  <ebb9@byu.net>
43187
43188         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
43189         is now done automatically by the corresponding Autoconf macro.
43190
43191 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
43192
43193         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
43194         time_r.h.
43195
43196 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
43197
43198         Merge regex changes from libc, removing some of our
43199         POSIX-conformance changes that were rejected and redoing them in a
43200         less-intrusive way.
43201
43202         * lib/regcomp.c (re_compile_internal, init_dfa):
43203         Length arg is now size_t, not Idx.  All uses changed.
43204         (peek_token): Forward decl now says internal_function.
43205         (__re_error_msgid, __re_error_msgid_idx):
43206         Now static rather than extern with attribute_hidden.
43207         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
43208         For some reason libc prefers K&R style defns for external functions.
43209         (regerror) [!defined _LIBC]: Likewise.
43210         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
43211         (seek_collating_symbol_entry, lookup_collation_sequence_value):
43212         (build_range_exp, build_collating_symbol):
43213         Use K&R-style defn.
43214         (re_compile_fastmap): Use '\0' to memset, not 0.
43215         (utf8_sb_map): Make the calculations more obvious.
43216         (init_dfa, parse_bracket_exp, build_charclass_op):
43217         Call calloc and cast result, as glibc does.
43218         (init_word_char, fetch_token, peek_token, peek_token_bracket):
43219         (build_range_exp, build_collating_symbol):
43220         Now internal functions.
43221
43222         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
43223
43224         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
43225         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
43226         Don't depend on VMS; depend on __VMS instead, for POSIX
43227         namespace cleanness.
43228         (regoff_t): Define to ssize_t, not long int.
43229
43230         Remove the REG_ macros named below.  Instead, make the old names
43231         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
43232         __USE_GNU_REGEX.
43233         (REG_BACKSLASH_ESCAPE_IN_LISTS):
43234         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
43235         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
43236         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
43237         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
43238         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
43239         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
43240         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
43241         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
43242         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
43243         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
43244         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
43245         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
43246         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
43247         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
43248         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
43249         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
43250         (REG_NREGS):
43251         Remove.  All uses replaced by the old RE_* names.
43252         (RE_BACKSLASH_ESCAPE_IN_LISTS):
43253         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
43254         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
43255         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
43256         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
43257         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
43258         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
43259         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
43260         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
43261         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
43262         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
43263         Don't bother having these macros be independent of each others'
43264         values, since they no longer exist in the POSIX name space.
43265
43266         Rename the following member names back to their old names,
43267         unless !__USE_GNU_REGEX.  All uses changed back.
43268         (buffer): Renamed from re_buffer.
43269         (allocated): Renamed from re_allocated.
43270         (used): Renamed from re_used.
43271         (syntax): Renamed from re_syntax.
43272         (fastmap): Renamed from re_fastmap.
43273         (translate): Renamed from re_translate.
43274         (can_be_null): Renamed from re_can_be_null.
43275         (regs_allocated): Renamed from re_regs_allocated.
43276         (fastmap_accurate): Renamed from re_fastmap_accurate.
43277         (no_sub): Renamed from re_no_sub.
43278         (not_bol): Renamed from re_not_bol.
43279         (not_eol): Renamed from re_not_eol.
43280         (newline_anchor): Renamed from re_newline_anchor.
43281         (num_regs): Renamed from rm_num_regs.
43282         (start): Renamed from rm_start.
43283         (end): Renamed from rm_end.
43284
43285         (free_state): Move up a bit.
43286
43287         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
43288         #define to be empty.
43289         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
43290         when that is what is intended.
43291         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
43292         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
43293         (MAX): New macro.
43294         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
43295         All uses changed back to re_malloc, etc.  It's now the caller's
43296         responsibility to check for overflow; all callers changed.
43297         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
43298         (re_x2nrealloc): Remove.
43299         (free_state): Remove decl.
43300
43301         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
43302         (re_set_registers, re_exec):
43303         Use K&R-style defn.
43304
43305         2006-01-31  Roland McGrath  <roland@redhat.com>
43306
43307         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
43308         Reported by Mike Frysinger <vapier@gentoo.org>.
43309
43310         2006-01-15  Andreas Jaeger  <aj@suse.de>
43311
43312         [BZ #1950]
43313         * lib/regex_internal.c (re_string_reconstruct): Adjust for
43314         build_wcs_upper_buffer change.
43315         (build_wcs_upper_buffer): Change return type.
43316
43317         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
43318
43319         * lib/regex_internal.h: Include <stdint.h> if available.
43320
43321         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
43322
43323         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
43324
43325         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
43326
43327         * lib/regcomp.c: Adjust for changed secondary hash function.
43328
43329         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
43330
43331         * lib/regex.h: Pretty printing.
43332         Clean up namespace a bit.
43333
43334         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
43335
43336         * lib/regexec.c (update_cur_sifted_state, check_arrival,
43337         check_arrival_add_next_nodes): Avoid using uninitialized variable.
43338
43339         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43340                     Ulrich Drepper  <drepper@redhat.com>
43341
43342         [BZ #1302]
43343         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
43344         changed.
43345         (bitset_word_t): Renamed from bitset_word.  All uses changed.
43346
43347         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
43348
43349         [BZ #281]
43350         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
43351         * lib/regcomp.c: Remove unnecessary uses of
43352         unsigned RE_TRANSLATE_TYPE.
43353         * lib/regex_internal.h: Likewise.
43354         * lib/regex_internal.c: Likewise.
43355         * lib/regexec.c: Likewise.
43356         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
43357
43358         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
43359
43360         * lib/regexec.c (find_recover_state): Remove unnecessary
43361         initialization.
43362         (transit_state_bkref): Make DFA a const pointer.
43363         (get_subexp): Likewise.
43364         (check_arrival): Likewise.
43365         (update_cur_sifted_state): Likewise.
43366         (re_search_internal): Likewise.
43367         (prune_impossible_nodes): Likewise.
43368         (acquire_init_state_context): Likewise.
43369         (proceed_next_node): Likewise.
43370         (set_regs): Likewise.
43371         (free_fail_stack_return): Likewise.
43372         (check_arrival_expand_ecl): Mark DFA parameter as const.
43373         (check_arrival_expand_ecl_sub): Likewise.
43374         (check_subexp_limits): Likewise.
43375         (sub_epsilon_src_nodes):  Likewise.
43376         (add_epsilon_src_nodes):  Likewise.
43377         (merge_state_array): Likewise.
43378         (update_regs): Likewise.
43379         (build_trtable): Likewise.
43380         (sift_states_backward): Mark MCTX parameter as const.
43381         (build_sifted_states): Likewise.
43382         (update_cur_sifted_state): Likewise.
43383         (sift_states_mkref): Likewise.
43384         (check_arrival_expand_ecl): Mark eclosure as const.
43385         (check_dst_limits_calc_pos_1): Likewise.
43386         * lib/regex_internal.h (re_match_context_t): Make dfa a const
43387         pointer.
43388
43389         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
43390
43391         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
43392         (transit_state_sb): Likewise.
43393         (transit_state_mb): Likewise.
43394         (sift_states_iter_mb): Likewise.
43395         (check_arrival_add_next_nodes): Likewise.
43396         (check_node_accept_bytes): Change first parameter to pointer-to-const.
43397         [_LIBC] (re_search_2_stub): Use mempcpy.
43398
43399         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
43400         mbrtowc for very simple UTF-8 case.
43401
43402         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
43403         a pointer-to-const.
43404         (re_acquire_state_context): Likewise.
43405         * lib/regex_internal.h: Adjust prototypes.
43406
43407         * lib/regex.c: Prevent using C++ compilers.
43408
43409         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
43410         (re_acquire_state_context): Likewise.
43411
43412 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
43413
43414         * modules/regex (Depends-on): Add ssize_t.
43415
43416 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
43417
43418         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
43419         translation table.
43420
43421 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
43422
43423         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
43424
43425 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
43426             Bruno Haible  <bruno@clisp.org>
43427
43428         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
43429         <sys/types.h> and <inttypes.h>.
43430
43431 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43432
43433         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
43434         `__error_t_defined', so argp.h will not typedef the former.
43435
43436 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
43437
43438         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
43439         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
43440         glibc names.  Even if glibc is changed to conform to POSIX, the
43441         traditional names will be available anyway, since regex depends on
43442         the extensions module.  Also, fix a longstanding typo in the
43443         implementation of Spencer ERE test #75 from grep 2.3.  Problems
43444         reported by Emanuele Giaquinta.  Also, change sense of cached
43445         variable, so that the message makes sense.
43446
43447 2006-03-24  Simon Josefsson  <jas@extundo.com>
43448
43449         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
43450         including some doc fixes.
43451         (base64_encode_alloc): Fix +1 bug on allocation failures.
43452
43453 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43454
43455         * lib/base64.c (base64_encode): Do not read past end of array with
43456         unsanitized input on systems with CHAR_BIT > 8.
43457
43458 2006-03-24  Eric Blake  <ebb9@byu.net>
43459
43460         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
43461
43462 2006-03-22  Karl Berry  <karl@gnu.org>
43463
43464         * config/srclist.txt (*setenv.[ch]): get from coreutils.
43465         * config/srclistvars.sh (COREUTILS): new var.
43466
43467 2006-03-17  Jim Meyering  <jim@meyering.net>
43468
43469         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
43470         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
43471
43472 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
43473
43474         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
43475         no longer needs it.  Instead, check that regoff_t is as least
43476         as wide as ptrdiff_t.
43477
43478         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
43479         so that our regex.h stays compatible with the installed regex.
43480         This is helpful for installers who configure --without-included-regex.
43481         Problem reported by Emanuele Giaquinta.
43482
43483 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
43484
43485         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
43486         Typedef to long int, not to off_, as POSIX will likely change
43487         in that direction.
43488
43489 2006-03-15  Eric Blake  <ebb9@byu.net>
43490
43491         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
43492
43493 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
43494
43495         * lib/argp-help.c (validate_uparams): Fix typo
43496         * lib/argp-parse.c (argp_default_options): Consistently begin help
43497         messages with a lowercase letter.
43498
43499 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
43500
43501         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
43502         overrun buffers and shouldn't be used (much as gets shouldn't be
43503         used).
43504         * lib/time_r.c (asctime_r, ctime_r): Likewise.
43505
43506 2006-03-08  Simon Josefsson  <jas@extundo.com>
43507
43508         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
43509         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43510
43511 2006-03-08  Simon Josefsson  <jas@extundo.com>
43512
43513         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
43514         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43515
43516 2006-03-08  Simon Josefsson  <jas@extundo.com>
43517
43518         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
43519         signal that configure disabled the device.
43520
43521 2006-03-08  Simon Josefsson  <jas@extundo.com>
43522
43523         * build-aux/maint.mk: Fix refresh-po, to handle no translated
43524         languages.
43525
43526 2006-03-07  Simon Josefsson  <jas@extundo.com>
43527
43528         * modules/getopt (Depends-on): Add unistd.
43529
43530         * modules/unistd: New file.
43531
43532 2006-03-07  Simon Josefsson  <jas@extundo.com>
43533
43534         * modules/gc-random: New file.
43535
43536 2006-03-07  Simon Josefsson  <jas@extundo.com>
43537
43538         * m4/unistd_h.m4: New file.
43539
43540 2006-03-07  Simon Josefsson  <jas@extundo.com>
43541
43542         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
43543         test to be side-effect free by storing the result in the cache
43544         variable gl_cv_lib_readline, and moving the assignment of
43545         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
43546         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43547
43548 2006-03-07  Simon Josefsson  <jas@extundo.com>
43549
43550         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
43551         error on missing devices (the functions will return an error).
43552
43553         * m4/gc.m4: Move random stuff to gc-random.m4
43554
43555 2006-03-07  Simon Josefsson  <jas@extundo.com>
43556
43557         * lib/unistd_.h: New file.
43558
43559 2006-03-07  Simon Josefsson  <jas@extundo.com>
43560
43561         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
43562
43563 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
43564
43565         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
43566         Problem reported by Juan Manuel Guerrero.
43567
43568 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
43569
43570         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
43571         the unistd module.
43572         * lib/getlogin_r.c: Likewise.
43573         * lib/getlogin_r.h: Likewise.
43574         * lib/glob.c: Likewise.
43575         * lib/pagealign_alloc.c: Likewise.
43576         * lib/unistd_.h: Remove; no longer needed.
43577
43578 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
43579
43580         * MODULES.html.sh (Support for systems lacking POSIX:2001):
43581         Add unistd.
43582         * modules/c-stack (Depends-on): Add unistd.
43583         * modules/getlogin_r: Likewise.
43584         * modules/glob: Likewise.
43585         * modules/pagealign_alloc: Likewise.
43586         * modules/unistd (Files): Remove lib/unistd_.h.
43587         (EXTRA_DIST): Remove.
43588         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
43589         need unistd_.h.
43590         (MOSTLYCLEANFILES): Remove unistd.h-t.
43591
43592 2006-03-03  Simon Josefsson  <jas@extundo.com>
43593
43594         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
43595
43596 2006-03-03  Simon Josefsson  <jas@extundo.com>
43597
43598         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
43599         libidn and bison.
43600
43601 2006-03-03  Simon Josefsson  <jas@extundo.com>
43602
43603         * build-aux/maint.mk: Add indent target.
43604
43605 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
43606
43607         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
43608         our replacement poll.h in any case, to avoid a differing
43609         declaration from a system header.  Seen on AIX.
43610
43611 2006-03-01  Simon Josefsson  <jas@extundo.com>
43612
43613         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
43614         <kasal@ucw.cz>.
43615
43616 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
43617
43618         * modules/gettime (Depends-on): Add extensions module.
43619         * modules/nanosleep (Depends-on): Likewise.
43620         * modules/settime (Depends-on): Likewise.
43621
43622 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
43623
43624         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
43625         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
43626         pedantically.
43627         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
43628         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
43629
43630         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
43631         not "==".  Reported by Ralf Wildenhues.
43632
43633 2006-03-01  Karl Berry  <karl@gnu.org>
43634
43635         * doc/Copyright/request-*: new files, synced from gnuorg.
43636
43637 2006-03-01  Karl Berry  <karl@gnu.org>
43638
43639         * config/srclist.txt (Copyright/*): new entries.
43640
43641 2006-02-28  Simon Josefsson  <jas@extundo.com>
43642
43643         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
43644
43645 2006-02-27  Simon Josefsson  <jas@extundo.com>
43646
43647         * lib/base64.h: Indent #define's.  From Jim Meyering
43648         <jim@meyering.net>.
43649
43650 2006-02-27  Jim Meyering  <jim@meyering.net>
43651
43652         Revert the change of 2006-02-24, so these files can continue
43653         to be sync'd from gettext.
43654         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
43655         of `config.h'.
43656
43657 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
43658
43659         * modules/intprops: New file.
43660         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
43661         Add intprops.
43662         * modules/getloadavg (Files): Remove lib/intprops.h.
43663         (Depends-on): Add intprops.
43664         * modules/human: Likewise.
43665         * modules/inttostr: Likewise.
43666         * modules/openat: Likewise.
43667         * modules/sig2str: Likewise.
43668         * modules/userspec: Likewise.
43669         * modules/utimecmp: Likewise.
43670         * modules/xnanosleep: Likewise.
43671         * modules/xstrtol: Likewise.
43672
43673 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
43674
43675         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
43676         * modules/lock-tests (TESTS): Use $(EXEEXT).
43677         * modules/tls-tests: Likewise.
43678         * modules/argp-tests: Likewise.
43679         (check_PROGRAMS): New var, replacing...
43680         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
43681
43682 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43683
43684         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
43685         `config.h'.
43686
43687 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
43688
43689         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
43690
43691 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43692
43693         Sync from coreutils.
43694         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
43695         gl_CHDIR_SAFER.
43696
43697 2006-02-22  Jim Meyering  <jim@meyering.net>
43698
43699         Sync from coreutils.
43700         * m4/chdir-safer.m4: New file.
43701
43702 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
43703
43704         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
43705         AT_FDCWD exceeds INT_MAX.
43706         * lib/openat.h (AT_FDCWD): Likewise.
43707
43708 2006-02-17  Eric Blake  <address@hidden>
43709
43710         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
43711
43712 2006-02-16  Simon Josefsson  <jas@extundo.com>
43713
43714         * modules/getaddrinfo (Depends-on): Add sys_socket.
43715
43716 2006-02-15  Simon Josefsson  <jas@extundo.com>
43717
43718         * build-aux/maint.mk: Add dsyntax-check rule.
43719
43720 2006-02-15  Eric Blake  <ebb9@byu.net>
43721
43722         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
43723         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
43724         'present but cannot compile' warnings on cygwin.
43725         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
43726         use ws2tcpip.h if sys/socket.h works.
43727         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
43728         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
43729
43730 2006-02-14  Simon Josefsson  <jas@extundo.com>
43731
43732         * modules/maintainer-makefile (Files): Rename.
43733
43734         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
43735         and (the local) Makefile.cfg to maint-cfg.mk.
43736
43737         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
43738         to the latter.
43739
43740         * modules/maintainer-makefile: New module.
43741
43742         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
43743         severaly stripped to make it possible to build it up from scratch
43744         with reliable tests.
43745
43746         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
43747         fixes to permit overriding the default actions when configure and
43748         makefile are not available.
43749
43750 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
43751
43752         Sync from coreutils.
43753         * modules/lstat (Depends-on): Don't depend on xalloc.
43754         (License): Change from GPL to LGPL, since this is now simply a
43755         replacement for a libc function.
43756
43757 2006-02-14  Jim Meyering  <jim@meyering.net>
43758
43759         Sync from coreutils.
43760
43761         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
43762         failure on deficient systems, and simplify gnulib lgpl dependencies.
43763         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
43764         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
43765
43766         * lib/xalloc-die.c: Remove unused definition of N_.
43767
43768 2006-02-14  Jim Meyering  <jim@meyering.net>
43769
43770         Sync from coreutils.
43771         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
43772         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
43773         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
43774         double-quote uses of that variable, to accommodate the rare case in
43775         which getmntent is available in none of the libraries checked.  This
43776         happens at least on FreeBSD 5.0.
43777
43778 2006-02-13  Simon Josefsson  <jas@extundo.com>
43779
43780         * gnulib-tool (Usage): Fix --import, from
43781         karl@freefriends.org (Karl Berry).
43782
43783 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
43784
43785         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
43786
43787 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
43788
43789         * lib/argp-namefrob.h: Restore changes accidentally lost during the
43790         "autoupdate" on 2005-12-12.
43791
43792 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
43793
43794         * modules/closeout (Depends-on): Remove atexit.
43795
43796 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
43797
43798         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
43799         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
43800
43801 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
43802
43803         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
43804         __EXTENSIONS__ if this causes compilation to fail.  Problem
43805         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
43806         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
43807
43808 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
43809
43810         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
43811         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
43812         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
43813         All uses changed.
43814
43815 2006-01-26  Simon Josefsson  <jas@extundo.com>
43816
43817         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
43818         prototype is visible on mingw32.
43819
43820         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
43821         for mingw32.
43822
43823         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
43824         mingw32).
43825
43826 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
43827
43828         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
43829         attempt to open for write; this always fails, at least on POSIX
43830         hosts.  This reinstates the 2006-01-09 change, which was
43831         inadvertently removed.
43832
43833 2006-01-26  Bruno Haible  <bruno@clisp.org>
43834
43835         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
43836         Reported by Paul Eggert.
43837
43838 2006-01-26  Bruno Haible  <bruno@clisp.org>
43839             Paul Eggert  <eggert@cs.ucla.edu>
43840
43841         * lib/stdbool_.h (_Bool)
43842         [(! (defined __cplusplus || defined __BEOS__)
43843           && !defined __GNUC__
43844           && !(defined __HP_cc || defined __xlc__
43845                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
43846                || defined __sgi))]:
43847         #define to signed char in these cases too; this simplifies
43848         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
43849         etc., separately) and makes it more conservative.
43850
43851 2006-01-25  Simon Josefsson  <jas@extundo.com>
43852
43853         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
43854         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
43855         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
43856
43857 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
43858
43859         * lib/argp-namefrob.h: Bugfix. Remove stray #
43860
43861 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
43862
43863         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
43864         so that we test the test.
43865         Check for yet another HP-UX cc bug involving *bool |= bool.
43866
43867 2006-01-25  Karl Berry  <karl@gnu.org>
43868
43869         * config/srclist.txt (vasnprintf.c): sync lost.
43870
43871 2006-01-25  Jim Meyering  <jim@meyering.net>
43872
43873         Sync from the stable (b5) branch of coreutils:
43874
43875         * lib/fts.c (fts_children): Don't let close() clobber errno from
43876         failed fchdir().
43877
43878         * lib/fts.c (fts_stat): When following a symlink-to-directory,
43879         don't necessarily interpret stat-fails+lstat-succeeds as indicating
43880         a dangling symlink.  That can also happen at least for ELOOP.
43881         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
43882         FYI, this bug predates the inclusion of fts.c in coreutils.
43883
43884         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
43885         in their own block, so pre-c99 compilers don't object.
43886
43887         Avoid the double-free (first in fts_read, second in fts_close) that
43888         would occur when an `active' directory is made inaccessible (e.g.,
43889         via chmod a-x) during a traversal.
43890         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
43891         before returning.  Reproduce this failure by
43892         mkdir -p a/b; cd a; chmod a-x . b
43893         Reported by Stavros Passas.
43894
43895 2006-01-25  Jim Meyering  <jim@meyering.net>
43896
43897         * lib/fileblocks.c: Remove more useless parentheses.
43898         * lib/readutmp.h: Likewise.
43899
43900 2006-01-25  Bruno Haible  <bruno@clisp.org>
43901
43902         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
43903         warnings.
43904         Reported by Paul Eggert.
43905
43906 2006-01-25  Bruno Haible  <bruno@clisp.org>
43907
43908         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
43909         rid of a trap command. For Solaris sh.
43910         Reported by Mark D. Baushke <mdb@gnu.org>.
43911
43912 2006-01-24  Simon Josefsson  <jas@extundo.com>
43913
43914         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
43915         Bruno.
43916
43917 2006-01-24  Karl Berry  <karl@gnu.org>
43918
43919         * config/srclist.txt (argp-namefrob.h): sync lost.
43920
43921 2006-01-24  Jim Meyering  <jim@meyering.net>
43922
43923         * modules/openat (Files): Add lib/intprops.h.
43924         From Mark D. Baushke.
43925
43926 2006-01-24  Jim Meyering  <jim@meyering.net>
43927
43928         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
43929         Reported by Mark D. Baushke.
43930
43931 2006-01-24  Jim Meyering  <jim@meyering.net>
43932
43933         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
43934
43935 2006-01-24  Bruno Haible  <bruno@clisp.org>
43936
43937         * modules/strnlen (Maintainer): Change from glibc to all.
43938
43939 2006-01-24  Bruno Haible  <bruno@clisp.org>
43940
43941         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
43942         Patch by Paul Eggert.
43943
43944 2006-01-24  Bruno Haible  <bruno@clisp.org>
43945
43946         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
43947         already has it.
43948         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
43949         2005-11-26.
43950
43951         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
43952         'signed char' to avoid problems with the built-in _Bool type.
43953         Reported by Paul Eggert on 2005-11-26.
43954
43955 2006-01-24  Bruno Haible  <bruno@clisp.org>
43956
43957         * gnulib-tool (func_import): Avoid constructing complicated sed
43958         expressions inside backquote.
43959         Report and solution by Mark D. Baushke <mdb@gnu.org>.
43960
43961 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
43962
43963         These changes imported from libc.
43964         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
43965         test and two separate function calls.
43966         * lib/strndup.c (__strndup): Add libc_hidden_def.
43967
43968 2006-01-23  Simon Josefsson  <jas@extundo.com>
43969
43970         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
43971         Remove the test_*_SOURCES variable: automake infers it by default.
43972         * modules/tls-tests: Likewise.
43973
43974 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
43975
43976         Work around porting bugs reported by Dieter in
43977         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
43978         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
43979         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
43980         Include "getopt.h" first, to check interface.
43981         (getenv): Declare only if defined HAVE_DECL_GETENV &&
43982         !HAVE_DECL_GETENV.
43983         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
43984         (__strndup): Revert to K&R-style function dfns, the glibc style.
43985         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
43986         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
43987         Include strnlen.h first, to get prototype properly.
43988         (strnlen): Renamed from __strnlen.
43989         Remove weak alias.
43990
43991 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
43992
43993         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
43994
43995 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
43996
43997         * config/srclist.txt: Adjust to reflect glibc reorganization.
43998         This affects only comments.
43999
44000 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44001
44002          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
44003          Reported by Bruce Korb <bkorb@gnu.org>.
44004
44005 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
44006
44007         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
44008         to pacify gcc -Wswitch-default.
44009
44010 2006-01-22  Bruno Haible  <bruno@clisp.org>
44011
44012         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
44013         temporary buffer for sprintf, take into account the precision also
44014         for 'd', 'i', 'u', 'o', 'x', 'X'.
44015
44016 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
44017
44018         * modules/argp-tests: New module
44019         * tests/test-argp.c: New file
44020         * tests/test-argp-2.sh: New file
44021
44022 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
44023
44024         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
44025         (__argp_base_name): Removed
44026         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
44027         typo.
44028         (__argp_base_name): Provide macro definition or extern declaration
44029         depending on the configuration
44030
44031 2006-01-20  Simon Josefsson  <jas@extundo.com>
44032
44033         * modules/inet_ntop (Depends-on): Depend on sys_socket.
44034
44035 2006-01-20  Simon Josefsson  <jas@extundo.com>
44036
44037         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
44038
44039 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
44040
44041         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
44042         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
44043         Suggested by Bruno Haible.
44044
44045 2006-01-20  Karl Berry  <karl@gnu.org>
44046
44047         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
44048         until changes propagate, I guess.
44049
44050 2006-01-19  Simon Josefsson  <jas@extundo.com>
44051
44052         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
44053
44054 2006-01-19  Simon Josefsson  <jas@extundo.com>
44055
44056         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
44057
44058 2006-01-19  Simon Josefsson  <jas@extundo.com>
44059
44060         * gnulib-tool: Set check_PROGRAMS.
44061
44062         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
44063         modules/des-tests, modules/gc-arcfour-tests,
44064         modules/gc-arctwo-tests, modules/gc-des-tests,
44065         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
44066         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
44067         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
44068         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
44069         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
44070         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
44071         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
44072         test_*_SOURCES.
44073
44074 2006-01-18  Simon Josefsson  <jas@extundo.com>
44075
44076         * modules/socklen (Depends-on): Depend on sys_socket.
44077
44078 2006-01-18  Simon Josefsson  <jas@extundo.com>
44079
44080         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
44081         modules/des-tests, modules/gc-arcfour-tests,
44082         modules/gc-arctwo-tests, modules/gc-des-tests,
44083         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
44084         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
44085         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
44086         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
44087         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
44088         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
44089         $(EXEEXT) to automake TESTS variable, for mingw32.
44090
44091 2006-01-17  Simon Josefsson  <jas@extundo.com>
44092
44093         * modules/socklen (Include): Need sys/socket.h.
44094
44095 2006-01-17  Bruno Haible  <bruno@clisp.org>
44096
44097         * modules/ssize_t (Include): Add <sys/types.h>.
44098
44099 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
44100
44101         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
44102         it's not portable and it doesn't work with cross-compiles.
44103         Problem reported by Bruno Haible.  Fix missing-$ typo in
44104         'test "gl_cv_ignore_unused_libraries" ...' that prevented
44105         -zignore from being used with Sun's C compiler.
44106
44107 2006-01-12  Simon Josefsson  <jas@extundo.com>
44108
44109         * lib/base64.c: Fix warning, reported by Bruno Haible
44110         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
44111
44112 2006-01-12  Bruno Haible  <bruno@clisp.org>
44113
44114         * modules/ldd: New file.
44115         * build-aux/ldd.sh.in: New file.
44116         * MODULES.html.sh (Support for building libraries and executables): Add
44117         ldd.
44118
44119 2006-01-12  Bruno Haible  <bruno@clisp.org>
44120
44121         * m4/ldd.m4: New file.
44122
44123 2006-01-12  Bruno Haible  <bruno@clisp.org>
44124
44125         * gnulib-tool (func_import, func_create_testdir): Don't go into an
44126         endless loop while replacing $auxdir with build-aux.
44127
44128 2006-01-11  Simon Josefsson  <jas@extundo.com>
44129
44130         * lib/stdint_.h (SIZE_MAX): Add missing (.
44131
44132 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
44133
44134         Sync from coreutils.
44135         * lib/md5.c: Fix commentary typos.
44136         (alignof, UNALIGNED_P): No need for a GCC-specific version.
44137         * lib/md5.h (__attribute__): Remove; unused.
44138         * lib/sha1.c: Fix commentary to match md5 better.
44139         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
44140         so that we don't need to worry about alignment.  All uses changed.
44141         This merges the 2005-10-28 md5 change into sha1.
44142
44143 2006-01-11  Jim Meyering  <jim@meyering.net>
44144
44145         Sync from coreutils.
44146         * lib/md5.c (OP): Fix spacing.
44147
44148 2006-01-11  Bruno Haible  <bruno@clisp.org>
44149
44150         Ensure automatic ordering between gl_LOCK and gl_ARGP.
44151         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
44152         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
44153
44154 2006-01-11  Bruno Haible  <bruno@clisp.org>
44155
44156         Ensure automatic ordering between gl_LOCK and gl_ARGP.
44157         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
44158         the "early" section as well.
44159
44160 2006-01-11  Bruno Haible  <bruno@clisp.org>
44161
44162         Avoid "ar: no archive members specified" error on MacOS X.
44163         * gnulib-tool (func_modules_add_dummy): New function.
44164         (func_import, func_create_testdir): Invoke it.
44165
44166 2006-01-11  Bruno Haible  <bruno@clisp.org>
44167
44168         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
44169         with $auxdir in AC_CONFIG_FILES statements.
44170
44171 2006-01-11  Bruno Haible  <bruno@clisp.org>
44172
44173         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44174         Initialize also noinst_HEADERS to empty.
44175
44176 2006-01-11  Bruno Haible  <bruno@clisp.org>
44177
44178         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
44179         variables.
44180         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
44181         autoreconf.
44182
44183 2006-01-11  Bruno Haible  <bruno@clisp.org>
44184
44185         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
44186         overridable by the user.
44187         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44188
44189 2006-01-10  Simon Josefsson  <jas@extundo.com>
44190
44191         * modules/sys_socket: New file.
44192
44193 2006-01-10  Simon Josefsson  <jas@extundo.com>
44194
44195         * m4/sys_socket_h.m4: New file.
44196
44197 2006-01-10  Simon Josefsson  <jas@extundo.com>
44198
44199         * lib/socket_.h: New file.
44200
44201 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
44202
44203         * modules/readutmp (Maintainer): Add myself.
44204
44205 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
44206
44207         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
44208         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
44209         People who are still concerned with buggy memcmp implementations
44210         can invoke gl_FUNC_MEMCMP themselves.
44211
44212 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
44213
44214         * lib/regex_internal.h (BITSET_WORD_BITS):
44215         Work around a bug in 64-bit PGC (before version 6.1-2), where the
44216         preprocessor mishandles large unsigned values as if they were signed.
44217         Problem reported by Claudio Fontana in
44218         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
44219
44220 2006-01-10  Jim Meyering  <jim@meyering.net>
44221
44222         Avoid the double-free (first in fts_read, second in fts_close) that
44223         would occur when an `active' directory is made inaccessible (e.g.,
44224         via chmod a-x) during a traversal.
44225         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
44226         before returning.  Reproduce this failure by
44227         mkdir -p a/b; cd a; chmod a-x . b
44228         Reported by Stavros Passas.
44229
44230         Sync from coreutils.
44231         * lib/sha1.c: Tweak grammar in a comment.
44232
44233 2006-01-10  Jim Meyering  <jim@meyering.net>
44234
44235         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
44236         Patch by Joerg Sonnenberger.
44237
44238 2006-01-10  Bruno Haible  <bruno@clisp.org>
44239
44240         * modules/readutmp: Depend on module free.
44241         * modules/strtok_r: Depend on module restrict.
44242
44243 2006-01-10  Bruno Haible  <bruno@clisp.org>
44244
44245         * modules/gettext (configure.ac): Add an invocation of
44246         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
44247
44248 2006-01-10  Bruno Haible  <bruno@clisp.org>
44249
44250         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
44251         Reported by Werner Lemberg <wl@gnu.org>.
44252
44253 2006-01-10  Bruno Haible  <bruno@clisp.org>
44254
44255         * lib/localcharset.c: Update from GNU gettext.
44256
44257 2006-01-10  Bruno Haible  <bruno@clisp.org>
44258
44259         * lib/argp.h (__const): Remove macro. Use const instead.
44260         * lib/argp-fmtstream.h (__const): Likewise.
44261         * lib/glob_.h (__const): Remove macro.
44262         * lib/glob-libc.h: Use const instead of __const.
44263
44264 2006-01-10  Bruno Haible  <bruno@clisp.org>
44265
44266         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
44267         variable.
44268         Needed to avoid an automake error regarding the 'gettext' module.
44269
44270 2006-01-09  Simon Josefsson  <jas@extundo.com>
44271
44272         * modules/inet_ntop (Depends-on): Add restrict.
44273
44274 2006-01-09  Simon Josefsson  <jas@extundo.com>
44275
44276         * modules/gc-rijndael-tests (License): Put under LGPL.
44277
44278         * modules/gc-des-tests (License): Likewise.
44279
44280         * modules/gc-arcfour-tests (License): Likewise.
44281
44282         * modules/gc-arctwo-tests (License): Likewise.
44283
44284         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
44285
44286         * modules/gc-hmac-sha1-tests (Files): Likewise.
44287
44288         * modules/gc-hmac-md5-tests (License): Likewise.
44289
44290         * modules/gc-sha1-tests (License): Likewise.
44291
44292         * modules/gc-md5-tests (License): Likewise.
44293
44294         * modules/gc-md4-tests (License): Likewise.
44295
44296         * modules/gc-md2-tests (License): Likewise.
44297
44298         * modules/gc-tests (License): Likewise.
44299
44300         * modules/des-tests (License): Likewise.
44301
44302         * modules/md4-tests (License): Likewise.
44303
44304         * modules/md2-tests (License): Likewise.
44305
44306 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
44307
44308         Sync from coreutils:
44309
44310         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
44311         * modules/lib-ignore: New file.
44312         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
44313         chdir-safer.m4, lchmod.m4.
44314         * modules/openat: Add mkdirat.c, openat-priv.h.
44315
44316 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
44317
44318         Sync from coreutils.
44319         * m4/lib-ignore.m4: New file.
44320         * m4/lchmod.m4: New file.
44321
44322 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
44323
44324         Sync from coreutils.
44325         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
44326         for write access: POSIX says that must fail.
44327         * lib/fts.c (diropen): Likewise.
44328         * lib/save-cwd.c (save_cwd): Likewise.
44329         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
44330         well, for minor improvements on hosts that lack O_DIRECTORY.
44331         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
44332         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
44333         Fall back on chown if open failed with EACCES.
44334
44335         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
44336         Report an error at compile-time if only a 1-second nominal clock
44337         resolution is found.
44338
44339         * lib/lchmod.h: New file.
44340         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
44341         (make_dir_parents): Use lchown rather than chown, and
44342         lchmod rather than chmod.
44343
44344         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
44345         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
44346         "proc" reported by n0dalus.
44347
44348         * lib/mountlist.c: Include <limits.h>.
44349         (dev_from_mount_options)
44350         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
44351         New function.  It no longer assumes "dev=" has the System V meaning
44352         on Linux (since it doesn't).  It also parses "dev=" more carefully.
44353         (read_file_system_list)
44354         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
44355         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
44356         dev= in that case.
44357
44358         * lib/posixtm.h (PDS_PRE_2000): New macro.
44359         * lib/posixtm.c (year): Arg is now syntax_bits rather than
44360         allow_century.  All usages changed.  Reject dates outside the range
44361         1969-1999 if PDS_PRE_2000 is used.
44362
44363 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
44364
44365         Sync from coreutils.
44366         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
44367         (Time of day items): Mention the possibility of leap seconds.
44368         Problem reported by Dr. David Alan Gilbert.
44369
44370 2006-01-09  Jim Meyering  <jim@meyering.net>
44371
44372         Sync from coreutils.
44373
44374         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
44375
44376         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
44377
44378         * lib/modechange.c (mode_compile): Reject an invalid mode string
44379         that starts with an octal digit.  From Andreas Gruenbacher.
44380
44381         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
44382         and dup to open_safer and dup_safer, respectively.
44383         (openat_permissive): Fix typo in comment.
44384
44385         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
44386         "gettext.h"; either no longer needed or are guaranteed by openat.h.
44387         (_): Remove; no longer needed.
44388         (openat): Renamed from rpl_openat; no need for rpl_openat
44389         since openat.h renames openat for us.
44390         Replace most of the body with a call to openat_permissive,
44391         to avoid duplicate code.
44392         Port to (probably hypothetical) environments were mode_t is
44393         wider than int.
44394         (openat_permissive): Require mode arg, so that we can check
44395         types better.  Put it just after flags.  Change cwd failure
44396         indicator from pointer-to-bool to pointer-to-errno-value.
44397         All callers changed.
44398         Invoke openat_save_fail and/or openat_restore_fail if
44399         cwd_errno is null, so that openat can call us.
44400         (openat_permissive, fdopendir, fstatat, unlinkat):
44401         Simplify errno handling to avoid some duplicate code,
44402         as it's OK to set errno on success.
44403         * lib/openat.h: Revamp code so that function macros depend on
44404         __OPENAT_PREFIX only, not also on AT_FDCWD.
44405         (openat_ro): Remove.  Caller changed to use openat_permissive.
44406         (openat_permissive): Now a macro, if not a function.
44407         (openat_restore_fail, openat_save_fail): Now always functions,
44408         since mkdirat needs them even if __OPENAT_PREFIX is defined.
44409
44410         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
44411         and openat.c.
44412         * lib/mkdirat.c: Include openat-priv.h.
44413         Remove definitions of macros defined therein.
44414         * lib/openat.c: Likewise.
44415
44416         * lib/mkdirat.c (mkdirat): New file and function.
44417         * lib/openat.h (mkdirat): Declare.
44418
44419         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
44420
44421         * lib/openat.h (openat_permissive): Declare.
44422         (openat_ro): Define.
44423
44424         * lib/openat.c (EXPECTED_ERRNO): New macro.
44425         (openat_permissive): New function -- used in remove.c rewrite.
44426         (all functions): Set errno just before returning, only if there
44427         was an actual failure.
44428         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
44429
44430         Emulate openat-family functions using Linux's procfs, if possible.
44431         Idea and some code based on Ulrich Drepper's glibc changes.
44432
44433         * lib/openat.c: (BUILD_PROC_NAME): New macro.
44434         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
44435         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
44436         before falling back on save_cwd and restore_cwd.
44437         (fdopendir, fstatat, unlinkat): Likewise.
44438
44439         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
44440         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
44441
44442         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
44443         as second argument to va_arg.  Otherwise, some versions of gcc
44444         warn that `if this code is reached, the program will abort'.
44445
44446 2006-01-09  Jim Meyering  <jim@meyering.net>
44447
44448         Sync from coreutils.
44449         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
44450         Require openat-priv.h.
44451
44452 2006-01-09  Bruno Haible  <bruno@clisp.org>
44453
44454         * modules/strnlen (Include): Use strnlen.h.
44455
44456 2006-01-09  Bruno Haible  <bruno@clisp.org>
44457
44458         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
44459
44460 2006-01-09  Bruno Haible  <bruno@clisp.org>
44461
44462         * lib/sysexit_.h (EX_OK): New macro.
44463         Suggested by Martin Lambers <marlam@marlam.de>.
44464
44465 2006-01-09  Bruno Haible  <bruno@clisp.org>
44466
44467         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
44468         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
44469
44470 2006-01-09  Bruno Haible  <bruno@clisp.org>
44471
44472         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
44473         numbers.
44474
44475 2006-01-09  Bruno Haible  <bruno@clisp.org>
44476
44477         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
44478         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
44479         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
44480         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
44481
44482 2006-01-09  Bruno Haible  <bruno@clisp.org>
44483
44484         * build-aux/javacomp.sh.in: New file, moved from lib/.
44485         * modules/javacomp-script (Files): Update.
44486         (configure.ac): Add AC_CONFIG_FILES invocation.
44487         (EXTRA_DIST): Remove variable.
44488
44489         * build-aux/javaexec.sh.in: New file, moved from lib/.
44490         * modules/javaexec (Files): Update.
44491         (configure.ac): Add AC_CONFIG_FILES invocation.
44492         (EXTRA_DIST): Remove javaexec.sh.in.
44493
44494         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
44495         * modules/csharpcomp-script (Files): Update.
44496         (configure.ac): Add AC_CONFIG_FILES invocation.
44497         (EXTRA_DIST): Remove variable.
44498
44499         * build-aux/csharpexec.sh.in: New file, moved from lib/.
44500         * modules/csharpexec (Files): Update.
44501         (configure.ac): Add AC_CONFIG_FILES invocation.
44502         (EXTRA_DIST): Remove csharpexec.sh.in.
44503
44504 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
44505
44506         Sync from coreutils.
44507
44508         Add POSIX ACL support
44509         * lib/acl.h (copy_acl, set_acl): Add declarations.
44510         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
44511         systems other than Linux.
44512         (chmod_or_fchmod): New function: use fchmod when possible,
44513         and chmod otherwise.
44514         (file_has_acl): Add a POSIX ACL implementation, with a
44515         Linux-specific subcase.
44516         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
44517         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
44518         acls are unsupported.
44519         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
44520         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
44521         are unsupported.
44522
44523 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
44524
44525         Sync from coreutils.
44526         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
44527
44528 2006-01-07  Bruno Haible  <bruno@clisp.org>
44529
44530         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
44531         gl_EARLY.
44532
44533 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
44534
44535         * lib/strftime.c (tzname): Don't declare if it is already #defined.
44536         Problem reported for Mingw by Mark Junker.
44537
44538 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
44539
44540         * README: Gnulib normally doesn't generate a tarball.
44541
44542 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
44543
44544         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
44545         long int, not int, for nanosecond counts, so that people who are
44546         used to POSIX struct timespec won't be surprised.  Reported by Jim
44547         Meyering.
44548
44549 2005-12-28  Bruno Haible  <bruno@clisp.org>
44550
44551         * build-aux/config.rpath: Update from GNU gettext.
44552
44553 2005-12-16  Jim Meyering  <jim@meyering.net>
44554
44555         * modules/fprintftime: New module.
44556         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
44557
44558 2005-12-16  Jim Meyering  <jim@meyering.net>
44559
44560         * m4/fprintftime.m4: New file.
44561
44562 2005-12-16  Jim Meyering  <jim@meyering.net>
44563
44564         * lib/fprintftime.c, lib/fprintftime.h: New files.
44565
44566 2005-12-15  Simon Josefsson  <jas@extundo.com>
44567
44568         * modules/socklen (configure.ac): Fix M4 macro name, to align with
44569         new m4/socklen.m4.
44570
44571 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
44572
44573         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
44574         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
44575
44576 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
44577
44578         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
44579         * lib/argp-help.c (fill_in_uparams): Check if the constructed
44580         struct uparams is valid. Fall back to the default values if it is
44581         not.
44582
44583 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44584
44585         * modules/argp (Files): Add argp-pin.c
44586         (Depends-on): dirname
44587         (lib_SOURCES): Add argp-pin.c
44588
44589 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44590
44591         * m4/argp.m4:  Check if program_invocation_name and
44592         program_invocation_short_name are declared and define appropriate
44593         macros if they are not.
44594
44595 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44596
44597         * lib/argp-help.c (__argp_base_name): New function
44598         (__argp_short_program_name): Rewrite using __argp_base_name
44599         * lib/argp-namefrob.h: Define program_invocation_name and
44600         program_invocation_short_name if requested
44601         (__argp_base_name): Add prototype
44602         * lib/argp-parse.c (argp_def): Use gettext wrappers
44603         (argp_default_parser): Use __argp_base_name
44604         * lib/argp-pin.c: New file. Defines program_invocation_name and
44605         program_invocation_short_name on systems that lack them.
44606
44607 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
44608
44609         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
44610         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
44611         porting problem reported by Georg Schwarz in
44612         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
44613
44614 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
44615
44616         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
44617         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
44618         porting problem reported by Georg Schwarz in
44619         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
44620
44621 2005-12-05  Bruno Haible  <bruno@clisp.org>
44622
44623         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
44624         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
44625         Reported by Mark Junker <mjscod@gmx.de>.
44626
44627 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
44628
44629         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
44630         Use implementation from Albert Chin, with some
44631         comments/corrections by Stepan Kasal and myself.
44632
44633 2005-12-02  Bruno Haible  <bruno@clisp.org>
44634
44635         * gnulib-tool (func_import): Accept GPLed build tool modules when
44636         --lgpl is given.
44637         * modules/csharpcomp-script: New file.
44638         * modules/csharpcomp: Depend on it.
44639         * modules/javacomp-script: New file.
44640         * modules/javacomp: Depend on it.
44641         Suggested by Simon Josefsson.
44642
44643 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
44644
44645         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
44646         statement, to work around an HP-UX 10.20 compiler bug reported by
44647         Peter O'Gorman.
44648
44649 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
44650
44651         * modules/savedir (Depends-on): Add openat.
44652
44653 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
44654
44655         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
44656         (uintmax_t) [defined uintmax_t]: Do not declare.
44657         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
44658         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
44659         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
44660         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
44661         sake of portability to weird hosts that C allows (though we don't
44662         know of any practical examples).
44663
44664         * lib/savedir.h (fdsavedir): New decl.
44665         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
44666         contains most of the former guts of savedir.
44667         (savedir): Use savedirstream.
44668         Include "openat.h".
44669
44670 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
44671
44672         * modules/obstack (Files): Add m4/ulonglong.m4.
44673         Problem reported by Davide Angelocola.
44674
44675 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
44676
44677         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
44678         coreutils no longer futzes with rounding modes.
44679
44680 2005-11-14  Jim Meyering  <jim@meyering.net>
44681
44682         * lib/mkstemp-safer.c: Include <config.h>, required for possible
44683         replacement of mkstemp.
44684
44685 2005-11-10  Simon Josefsson  <jas@extundo.com>
44686
44687         * lib/readline.c: Remove EOL.
44688
44689 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
44690
44691         * modules/gethrxtime (Depends-on): Add gettime.
44692
44693 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
44694
44695         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
44696         or gettimeofday; no longer needed.
44697
44698 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
44699
44700         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
44701         time business.
44702         (gethrxtime) [! (HAVE_NANOUPTIME
44703         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
44704         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
44705         our own approximation.
44706
44707 2005-11-08  Eric Blake  <ebb9@byu.net>
44708
44709         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
44710
44711 2005-11-08  Eric Blake  <ebb9@byu.net>
44712
44713         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
44714
44715 2005-11-04  Bruno Haible  <bruno@clisp.org>
44716
44717         * gnulib-tool: Implement --update mode.
44718
44719 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
44720
44721         Fix porting problem reported by Theodoros V. Kalamatianos.
44722         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
44723         Don't assume that futimes failing means we must fail.
44724
44725 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
44726
44727         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
44728         variables to suggest the intended function of the PATH_MAX check.
44729
44730 2005-10-30  Kean Johnston  <jkj@sco.com>
44731
44732         Trivial changes to support SCO systems.
44733         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
44734         as PATH_MAX.
44735         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
44736         where __ptr is null when no I/O is pending.
44737
44738 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
44739
44740         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
44741         leave errno alone.  Problem reported by Dmitry V. Levin.
44742
44743 2005-10-28  Simon Josefsson  <jas@extundo.com>
44744
44745         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
44746         Test more.
44747
44748         * tests/test-gc-md2.c, tests/test-md2.c: New files.
44749
44750         * modules/md2, modules/md2-tests: New files.
44751
44752 2005-10-28  Simon Josefsson  <jas@extundo.com>
44753
44754         * m4/inet_ntop.m4: More tests.
44755
44756         * m4/gc-md2.m4, md2.m4: New file.
44757
44758 2005-10-28  Simon Josefsson  <jas@extundo.com>
44759
44760         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
44761         "restrict" keywords, as per POSIX.  Protect the function
44762         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
44763         Don't use K&R prototypes.  Check the sprintf return values.
44764         Re-define EAFNOSUPPORT if not present.  Indent.
44765
44766         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
44767         suggested by Bruno Haible <bruno@clisp.org>.
44768
44769         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
44770
44771         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
44772
44773         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
44774         libgcrypt).
44775
44776         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
44777
44778         * lib/md2.h, lib/md2.c: New files.
44779
44780 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
44781
44782         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
44783         errno alone.  Problem reported by Frederic Jolliton.
44784
44785 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
44786
44787         * modules/verify (License): Change from GPL to LGPL.  This is a
44788         tiny module and there are apparently near-equivalents that are
44789         under the BSD license.
44790
44791 2005-10-24  Simon Josefsson  <jas@extundo.com>
44792
44793         * modules/sha1: Relicense to LGPL.
44794
44795 2005-10-24  Simon Josefsson  <jas@extundo.com>
44796
44797         * lib/md4.h: Shrink buffer size, now that we changed the type.
44798
44799 2005-10-23  Simon Josefsson  <jas@extundo.com>
44800
44801         * gnulib-tool (func_import): Fix --tests-base.
44802
44803 2005-10-22  Simon Josefsson  <jas@extundo.com>
44804
44805         * modules/arcfour (Depends-on): Need stdint.
44806
44807 2005-10-22  Simon Josefsson  <jas@extundo.com>
44808
44809         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
44810         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
44811
44812 2005-10-22  Simon Josefsson  <jas@extundo.com>
44813
44814         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
44815         suggested by Bruno Haible <bruno@clisp.org>.
44816
44817 2005-10-22  Simon Josefsson  <jas@extundo.com>
44818
44819         * lib/crc.h: Include stddef.h, for size_t.
44820
44821 2005-10-22  Simon Josefsson  <jas@extundo.com>
44822
44823         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
44824         arcfour_context struct (simplify test vector testing in GNU
44825         Shishi).
44826
44827 2005-10-21  Simon Josefsson  <jas@extundo.com>
44828
44829         * modules/des, modules/des-tests: New files.
44830
44831         * modules/gc-des, modules/gc-des-tests: New files.
44832
44833         * tests/test-des.c, tests/test-gc-des.c: New file.
44834
44835 2005-10-21  Simon Josefsson  <jas@extundo.com>
44836
44837         * modules/arctwo, modules/arctwo-tests: New files.
44838
44839         * tests/test-arctwo.c: New file.
44840
44841         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
44842
44843         * tests/test-gc-arctwo.c: New file.
44844
44845 2005-10-21  Simon Josefsson  <jas@extundo.com>
44846
44847         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
44848         Bruno Haible <bruno@clisp.org>.
44849
44850         * m4/gc-des.m4: New file.
44851
44852 2005-10-21  Simon Josefsson  <jas@extundo.com>
44853
44854         * m4/arctwo.m4: New file.
44855
44856         * m4/gc-arctwo.m4: New file.
44857
44858 2005-10-21  Simon Josefsson  <jas@extundo.com>
44859
44860         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
44861         block.
44862
44863 2005-10-21  Simon Josefsson  <jas@extundo.com>
44864
44865         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
44866         <bruno@clisp.org>.
44867
44868         * lib/hmac-sha1.c (hmac_sha1): Likewise.
44869
44870         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
44871         Bruno Haible <bruno@clisp.org>.
44872
44873         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
44874         <bruno@clisp.org>.
44875
44876 2005-10-21  Simon Josefsson  <jas@extundo.com>
44877
44878         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
44879
44880 2005-10-21  Simon Josefsson  <jas@extundo.com>
44881
44882         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
44883
44884 2005-10-21  Simon Josefsson  <jas@extundo.com>
44885
44886         * lib/des.h, lib/des.c: New files.
44887
44888         * lib/gc-gnulib.c: Support DES.c
44889
44890 2005-10-21  Simon Josefsson  <jas@extundo.com>
44891
44892         * lib/arctwo.h, lib/arctwo.c: New files.
44893
44894         * lib/gc-gnulib.c: Support ARCTWO.
44895
44896 2005-10-21  Simon Josefsson  <jas@extundo.com>
44897
44898         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
44899         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44900
44901 2005-10-21  Simon Josefsson  <jas@extundo.com>
44902
44903         * gnulib-tool (func_import, func_create_testdir): Define automake
44904         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
44905         Makefile.am snippet),
44906         suggested by Bruno Haible <bruno@clisp.org>.
44907
44908         * modules/gc (Makefile.am): Use it.
44909
44910 2005-10-21  Bruno Haible  <bruno@clisp.org>
44911
44912         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
44913         patch.
44914
44915 2005-10-19  Simon Josefsson  <jas@extundo.com>
44916
44917         * tests/test-gc-rijndael.c: New file.
44918
44919         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
44920
44921 2005-10-19  Simon Josefsson  <jas@extundo.com>
44922
44923         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
44924         interface too.
44925
44926 2005-10-19  Simon Josefsson  <jas@extundo.com>
44927
44928         * tests/test-gc-arcfour.c: New file.
44929
44930         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
44931
44932 2005-10-19  Simon Josefsson  <jas@extundo.com>
44933
44934         * modules/gc-md4, modules/gc-md4-tests: New file.
44935
44936         * tests/test-gc-md4.c: New file.
44937
44938 2005-10-19  Simon Josefsson  <jas@extundo.com>
44939
44940         * m4/gc-md4.m4: New file.
44941
44942 2005-10-19  Simon Josefsson  <jas@extundo.com>
44943
44944         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
44945         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
44946         <kasal@ucw.cz>.
44947
44948 2005-10-19  Simon Josefsson  <jas@extundo.com>
44949
44950         * m4/gc-arcfour.m4: New file.
44951
44952         * m4/gc-rijndael.m4: New file.
44953
44954 2005-10-19  Simon Josefsson  <jas@extundo.com>
44955
44956         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
44957
44958 2005-10-19  Simon Josefsson  <jas@extundo.com>
44959
44960         * lib/gc-gnulib.c: Support ARCFOUR.
44961
44962 2005-10-19  Simon Josefsson  <jas@extundo.com>
44963
44964         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
44965         support.
44966
44967         * lib/gc.h: Add ECB enum type.
44968
44969         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
44970
44971 2005-10-18  Simon Josefsson  <jas@extundo.com>
44972
44973         * tests/test-md5.c: New file.
44974
44975         * modules/md5-tests: New file.
44976
44977 2005-10-18  Simon Josefsson  <jas@extundo.com>
44978
44979         * tests/test-md4.c: New file.
44980
44981         * modules/md4, modules/md4-tests: New files.
44982
44983 2005-10-18  Simon Josefsson  <jas@extundo.com>
44984
44985         * m4/md4.m4: New file.
44986
44987 2005-10-18  Simon Josefsson  <jas@extundo.com>
44988
44989         * lib/md4.h, lib/md4.c: New files, based on md5.?.
44990
44991 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
44992
44993         * gnulib-tool (func_create_testdir): Omit the second check whether
44994         BUILT_SOURCES in nonempty.
44995
44996 2005-10-17  Simon Josefsson  <jas@extundo.com>
44997
44998         * tests/test-rijndael.c: New file.
44999
45000 2005-10-17  Simon Josefsson  <jas@extundo.com>
45001
45002         * modules/sha1: Depend on stdint instead of md5.
45003
45004         * modules/md5: Depend on stdint, remove uint32_t.
45005
45006 2005-10-17  Simon Josefsson  <jas@extundo.com>
45007
45008         * modules/gc-sha1-tests: New file.
45009
45010         * tests/test-gc-sha1.c: New file.
45011
45012 2005-10-17  Simon Josefsson  <jas@extundo.com>
45013
45014         * m4/md5.m4: Remove call to uint32_t.m4.
45015
45016 2005-10-17  Simon Josefsson  <jas@extundo.com>
45017
45018         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
45019
45020         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
45021         md5.h.
45022
45023         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
45024
45025         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
45026
45027 2005-10-17  Simon Josefsson  <jas@extundo.com>
45028
45029         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
45030
45031 2005-10-17  Simon Josefsson  <jas@extundo.com>
45032
45033         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
45034
45035 2005-10-17  Simon Josefsson  <jas@extundo.com>
45036
45037         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
45038
45039         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
45040
45041 2005-10-17  Bruno Haible  <bruno@clisp.org>
45042
45043         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
45044         that it can also be used in a test.
45045
45046 2005-10-16  Bruno Haible  <bruno@clisp.org>
45047
45048         * gnulib-tool (func_emit_tests_Makefile_am): Also define
45049         TESTS_ENVIRONMENT, so that individual tests can augment it.
45050
45051         * gnulib-tool (func_create_testdir): Use an intermediate target for
45052         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
45053         macros, like $(ALLOCA_H), which cannot be passed through the command
45054         line.
45055
45056 2005-10-15  Simon Josefsson  <jas@extundo.com>
45057
45058         * modules/rijndael-tests: New file.
45059
45060         * modules/rijndael: New file.
45061
45062 2005-10-15  Simon Josefsson  <jas@extundo.com>
45063
45064         * m4/rijndael.m4: New file.
45065
45066 2005-10-15  Simon Josefsson  <jas@extundo.com>
45067
45068         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
45069
45070         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
45071
45072 2005-10-14  Simon Josefsson  <jas@extundo.com>
45073
45074         * tests/test-arcfour.c: New file.
45075
45076         * modules/arcfour, modules/arcfour-tests: New files.
45077
45078 2005-10-14  Simon Josefsson  <jas@extundo.com>
45079
45080         * m4/arcfour.m4: New file.
45081
45082 2005-10-14  Simon Josefsson  <jas@extundo.com>
45083
45084         * lib/arcfour.h, lib/arcfour.c: New files.
45085
45086 2005-10-14  Roland McGrath  <roland@redhat.com>
45087
45088         Import from libc.  [BZ #1331]
45089         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
45090         macro argument.
45091         Reported by Matej Vela <vela@debian.org>.
45092
45093 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
45094
45095         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
45096         include <wchar.h>; no longer needed.
45097
45098 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
45099
45100         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
45101
45102 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
45103         and  Ulrich Drepper  <drepper@redhat.com>
45104
45105         Import from libc.
45106         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
45107         instead of inline stream orientation test and two separate
45108         function calls.  Pay no attention to USE_IN_LIBIO.
45109
45110 2005-10-13  Simon Josefsson  <jas@extundo.com>
45111
45112         * modules/gc-hmac-md5-tests: New file.
45113
45114         * tests/test-gc-hmac-sha1.c: New file.
45115
45116         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
45117
45118         * modules/gc-hmac-md5-tests: New file.
45119
45120         * tests/test-gc-md5.c: New file.
45121
45122         * modules/gc-md5-tests: New file.
45123
45124 2005-10-13  Simon Josefsson  <jas@extundo.com>
45125
45126         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
45127         Move memory allocation outside of loop.
45128
45129 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
45130
45131         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
45132         intermediate directory is in a read-only file system.  Problem
45133         reported by Eric Blake.
45134
45135 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
45136
45137         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
45138
45139 2005-10-12  Simon Josefsson  <jas@extundo.com>
45140
45141         * tests/test-hmac-sha1.c: New file.
45142
45143         * modules/hmac-sha1-tests: New file.
45144
45145         * modules/hmac-sha1: New file.
45146
45147 2005-10-12  Simon Josefsson  <jas@extundo.com>
45148
45149         * modules/gc-sha1: New file.
45150
45151 2005-10-12  Simon Josefsson  <jas@extundo.com>
45152
45153         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
45154
45155         * tests/test-gc-pbkdf2-sha1.c: New file.
45156
45157 2005-10-12  Simon Josefsson  <jas@extundo.com>
45158
45159         * modules/gc-md5, modules/gc-hmac-md5: New files.
45160
45161         * modules/gc (Files): Remove md5, memxor and hmac files.
45162
45163 2005-10-12  Simon Josefsson  <jas@extundo.com>
45164
45165         * m4/gc-pbkdf2-sha1.m4: New file.
45166
45167         * m4/gc-hmac-sha1.m4: New file.
45168
45169         * m4/gc-sha1: New file.
45170
45171         * m4/hmac-sha1.m4: New file.
45172
45173 2005-10-12  Simon Josefsson  <jas@extundo.com>
45174
45175         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
45176
45177         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
45178
45179 2005-10-12  Simon Josefsson  <jas@extundo.com>
45180
45181         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
45182         suggested by Bruno Haible <bruno@clisp.org>.
45183
45184 2005-10-12  Simon Josefsson  <jas@extundo.com>
45185
45186         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
45187
45188 2005-10-12  Simon Josefsson  <jas@extundo.com>
45189
45190         * lib/gc-pbkdf2-sha1.c: New file.
45191
45192         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
45193
45194 2005-10-12  Simon Josefsson  <jas@extundo.com>
45195
45196         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
45197
45198         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
45199
45200 2005-10-12  Simon Josefsson  <jas@extundo.com>
45201
45202         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
45203         GC_USE_HMAC_MD5, respectively.
45204
45205         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
45206         (gc_md5): Fix typo.
45207
45208         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
45209
45210         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
45211
45212         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
45213
45214 2005-10-12  Bruno Haible  <bruno@clisp.org>
45215
45216         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
45217         Reported by Stepan Kasal <kasal@ucw.cz>.
45218
45219 2005-10-11  Simon Josefsson  <jas@extundo.com>
45220
45221         * tests/test-crc.c: New file.
45222
45223         * modules/crc, modules/crc-tests: New files.
45224
45225 2005-10-11  Simon Josefsson  <jas@extundo.com>
45226
45227         * m4/crc.m4: New file.
45228
45229 2005-10-11  Simon Josefsson  <jas@extundo.com>
45230
45231         * lib/gc.h: Add gc_hash and gc_hash_buffer.
45232
45233         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
45234
45235         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
45236
45237 2005-10-11  Simon Josefsson  <jas@extundo.com>
45238
45239         * lib/crc.h, lib/crc.c: New files.
45240
45241         * lib/gc.h (gc_hash_buffer): Add doc.
45242
45243 2005-10-11  Bruno Haible  <bruno@clisp.org>
45244
45245         * modules/c-strcasestr: New file.
45246         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
45247
45248 2005-10-11  Bruno Haible  <bruno@clisp.org>
45249
45250         * modules/c-strcase: New file.
45251         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
45252
45253 2005-10-11  Bruno Haible  <bruno@clisp.org>
45254
45255         * lib/strcasecmp.c: Include limits.h.
45256         (strcasecmp): Avoid integer overflow on exotic platforms.
45257         * lib/strncasecmp.c: Include limits.h.
45258         (strncasecmp): Avoid integer overflow on exotic platforms.
45259         Reported by Paul Eggert.
45260
45261 2005-10-11  Bruno Haible  <bruno@clisp.org>
45262
45263         * lib/c-strcasestr.h: New file, from GNU gettext.
45264         * lib/c-strcasestr.c: New file, from GNU gettext.
45265
45266 2005-10-11  Bruno Haible  <bruno@clisp.org>
45267
45268         * lib/c-strcase.h: New file, from GNU gettext.
45269         * lib/c-strcasecmp.c: New file, from GNU gettext.
45270         * lib/c-strncasecmp.c: New file, from GNU gettext.
45271
45272 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
45273
45274         * modules/mempcpy (License): GPL -> LGPL.
45275         * modules/strchrnul (License): Likewise.
45276         * modules/sysexits (License): Likewise.
45277
45278 2005-10-08  Simon Josefsson  <jas@extundo.com>
45279
45280         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
45281
45282 2005-10-07  Simon Josefsson  <jas@extundo.com>
45283
45284         * m4/memxor.m4: Remove gl_C_RESTRICT call.
45285
45286 2005-10-06  Simon Josefsson  <jas@extundo.com>
45287
45288         * tests/test-hmac-md5.c: New file.
45289
45290         * modules/hmac-md5-tests: New file.
45291
45292         * modules/hmac-md5: New file.
45293
45294 2005-10-06  Simon Josefsson  <jas@extundo.com>
45295
45296         * m4/hmac-md5.m4: New file.
45297
45298         * m4/memxor.m4: Require gl_C_RESTRICT.
45299
45300 2005-10-06  Simon Josefsson  <jas@extundo.com>
45301
45302         * lib/memxor.c (memxor): Avoid casts and warnings.
45303
45304 2005-10-06  Simon Josefsson  <jas@extundo.com>
45305
45306         * lib/hmac-md5.c: New file.
45307
45308         * lib/hmac.h: New file.
45309
45310 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
45311
45312         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
45313         promotes to int, not unsigned int, to catch the AIX 5.3
45314         compiler bug.
45315
45316 2005-10-05  Simon Josefsson  <jas@extundo.com>
45317
45318         * modules/memxor: New file.
45319
45320         * modules/iconv (Files): Move config.rpath to havelib, it is used
45321         there.
45322
45323         * modules/havelib (Files): Add config.rpath.
45324
45325 2005-10-05  Simon Josefsson  <jas@extundo.com>
45326
45327         * m4/memxor.m4: New file.
45328
45329 2005-10-05  Simon Josefsson  <jas@extundo.com>
45330
45331         * lib/memxor.c (memxor): Fix compiler error.
45332
45333         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
45334         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
45335
45336         * lib/memxor.h, lib/memxor.c: New files.
45337
45338         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
45339         we assume all systems have it, suggested by Jim Meyering
45340         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
45341         any systems lack sys/socket.h; mingw32 is known to lack it, but we
45342         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
45343         same reasons.
45344
45345 2005-10-05  Simon Josefsson  <jas@extundo.com>
45346
45347         * config/srclist.txt: Add glibc bug 1423 for md5.h.
45348
45349 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
45350
45351         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
45352         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
45353         needed, since the source code now assumes these .h files.
45354
45355 2005-10-05  Derek Price  <derek@ximbiot.com>
45356
45357         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
45358
45359 2005-10-05  Bruno Haible  <bruno@clisp.org>
45360
45361         * modules/stdint (License): Change to LGPL.
45362
45363 2005-10-04  Simon Josefsson  <jas@extundo.com>
45364
45365         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
45366         D. Baushke" <mdb@gnu.org>.
45367
45368 2005-10-04  Bruno Haible  <bruno@clisp.org>
45369
45370         * lib/verify.h (verify_true): Provide alternative definition for C++.
45371
45372 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
45373
45374         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
45375         (SSIZE_MAX): New macro, if not already defined.
45376         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
45377         than 2 GiB.
45378
45379 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
45380
45381         Sync from coreutils.
45382         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
45383         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
45384         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
45385         ULLONG_MAX doesn't work with 2.7.2.1.
45386
45387 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
45388
45389         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
45390         From Ben Pfaff.
45391
45392         * modules/exclude (Depends-on): Depend on verify.
45393         * modules/strtoimax (Depends-on): Likewise.
45394         * modules/utimecmp (Depends-on): Likewise.
45395
45396 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
45397
45398         * lib/exclude.c: Include verify.h.
45399         (verify): Remove.  All callers changed to use verify.h's version.
45400         * lib/strtoimax.c: Likewise.
45401         * lib/utimecmp.c: Likewis.e
45402
45403         Sync from coreutils.
45404         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
45405         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
45406         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
45407         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
45408         bother returning ENOSYS if settimeofday or stime fails; just let
45409         them return whatever errno they want to return.
45410         * lib/utimens.c: Include unistd.h, for dup2.
45411         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
45412         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
45413
45414 2005-10-02  Jim Meyering  <jim@meyering.net>
45415
45416         Sync from coreutils.
45417         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
45418         from glibc-2.2.5 that fails for read-only files.
45419
45420 2005-10-02  Jim Meyering  <jim@meyering.net>
45421
45422         Sync from coreutils.
45423         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
45424         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
45425         `#if HAVE_CONFIG_H'.
45426         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
45427         Remove AT_FDCWD test.
45428         Do not consume the fd unless successful.
45429         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
45430         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
45431         block, so that we don't even try to compile it if settimeofday is
45432         available.  This works around a compilation failure on OSF1 V5.1,
45433         due to stime requiring a `long int*' while tv_sec is `int'.
45434
45435 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
45436
45437         Sync from coreutils.
45438         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
45439         against `yes', rather than just testing for nonempty.
45440
45441 2005-10-01  Simon Josefsson  <jas@extundo.com>
45442
45443         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
45444         and Darwin.
45445
45446         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
45447         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
45448         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
45449         freeaddrinfo and gai_strerror are declared by the POSIX headers.
45450         Check if struct addrinfo is declared.
45451
45452 2005-10-01  Simon Josefsson  <jas@extundo.com>
45453
45454         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
45455         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
45456         AI_* and EAI_* definitions.  Protect function declarations.
45457
45458 2005-10-01  Jim Meyering  <jim@meyering.net>
45459
45460         Sync from coreutils.
45461
45462         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
45463         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
45464         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
45465         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
45466         in the inet and nsl libraries.  Required on Solaris 5.7.
45467
45468 2005-10-01  Jim Meyering  <jim@meyering.net>
45469
45470         Sync from coreutils.
45471         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
45472         in the inet and nsl libraries.  Required on Solaris 5.7.
45473
45474 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
45475
45476         * lib/getdelim.c (getdelim): Remove unused variables.
45477
45478 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
45479
45480         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
45481         so that the code works even with ancient cpp.  Portability problem
45482         with GCC 2.7.2.1 reported by Thomas M.Ott.
45483
45484 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
45485
45486         * modules/regex (Depends-on): Add strcase.
45487
45488         * modules/gethostname (Licence): Change from GPL to LGPL, since
45489         gethostname.c is a trivial implementation of a standard library
45490         function.
45491         * modules/poll (License): Change from GPL to LGPL, since it's
45492         derived from LGPL code.
45493
45494 2005-09-27  Jim Meyering  <jim@meyering.net>
45495
45496         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
45497         HAVE_CONFIG_H.
45498
45499         * lib/intprops.h (signed_type_or_expr__): Define.
45500         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
45501         for unsigned types.
45502
45503 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
45504
45505         * lib/verify.h (verify_expr): Remove, replacing with:
45506         (verify_true): New macro that returns true instead of void.
45507         (verify_type__): Remove.
45508         (verify): Use verify_true rather than verify_type__.
45509
45510 2005-09-26  Bruno Haible  <bruno@clisp.org>
45511
45512         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
45513         is necessary.
45514         (lib_SOURCES): Remove mbchar.c.
45515         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
45516         (Files): Add m4/mbrtowc.m4.
45517         * modules/mbiter: Likewise.
45518         * modules/mbuiter: Likewise.
45519
45520 2005-09-26  Bruno Haible  <bruno@clisp.org>
45521
45522         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
45523         compile mbchar.c if they are not both present.
45524         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
45525         * m4/mbiter.m4 (gl_MBITER): Likewise.
45526         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
45527         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
45528         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
45529
45530 2005-09-25  Jim Meyering  <jim@meyering.net>
45531
45532         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
45533         also uses socklen_t.
45534
45535 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
45536
45537         * lib/utimens.c (ENOSYS): Define if not already defined.
45538         (futimens): Support having a null PATH if the file descriptor
45539         is nonnegative.
45540
45541         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
45542         Remove.
45543         (__attribute): Define to empty unless GCC 3.1 or later.
45544         This works around a core dump on OpenBSD 3.4, which has GCC
45545         2.95.3, which dumps core when given __attribute__(()).  It also
45546         simplifies other tests, since we really don't want to bother with
45547         worrying about which ancient version of GCC supported what.
45548         Original problem reported by Yoann Vandoorselaere, with part of
45549         the fix suggested by Derek Price.
45550
45551 2005-09-24  Jim Meyering  <jim@meyering.net>
45552
45553         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
45554         so we can once again use a positive bitfield width of 1 -- now we
45555         don't have to explain why we were using a bitfield width of 2.
45556
45557 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
45558
45559         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
45560         and similarly for the other external symbols.  Problem reported
45561         by James Gallager.
45562
45563         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
45564         bug reported by Jim Meyering.
45565
45566         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
45567         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
45568         not needed, since socklen is a prerequisite module.
45569
45570 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
45571
45572         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
45573         Problem reported by Eric Blake.
45574         (getaddrinfo): Initialize se so that it's not garbage.
45575         Redo internal storage allocation so that it doesn't make unportable
45576         assumptions about alignment.
45577         Fix a memory leak.
45578
45579         * lib/utimens.c (futimens): Use futimesat if available.
45580         Prefer it to futimes since it doesn't have the futimes bug.
45581
45582         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
45583         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
45584         Instead, declare a function that returns a pointer to an array,
45585         and use verify_type__ to declare the size of the array.
45586         Problem and germ of a solution reported by Bruno Haible.
45587         (verify_type__): Use 2, not 1, for bitfield size, to avoid
45588         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
45589
45590 2005-09-23  Jim Meyering  <jim@meyering.net>
45591
45592         Sync from coreutils.
45593         Correct build failure (socklen_t not defined) on at least
45594         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
45595         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
45596
45597 2005-09-23  Jim Meyering  <jim@meyering.net>
45598
45599         * modules/getaddrinfo (Depends-on): Add socklen.
45600
45601 2005-09-23  Bruno Haible  <bruno@clisp.org>
45602
45603         * tests/test-verify.c: New file.
45604
45605 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
45606
45607         Sync from coreutils.
45608
45609         * modules/argmatch (Depends-on): Add verify.
45610         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
45611         unistd-safer.
45612         * modules/save-cwd (Depends-on): Likewise.
45613
45614         * modules/openat (Files): Add lib/openat-die.c.
45615         (Depends-on): Remove error, exitfail.
45616         Add dirname.
45617
45618         * modules/verify: New file.
45619         * MODULES.html.sh (Diagnostics <assert.h>): New section,
45620         with "verify" module.
45621
45622 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
45623
45624         Sync from coreutils.
45625
45626         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
45627         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
45628         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
45629         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
45630         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
45631         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
45632         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
45633         Don't bother checking for string.h, stdlib.h, unistd.h.
45634         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
45635         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
45636         module's job.
45637         * m4/jm-macros.m4 (gl_MACROS): Likewise.
45638         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
45639
45640         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
45641         (gl_GETDATE): Use it.
45642
45643         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
45644
45645 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
45646
45647         Sync from coreutils.
45648
45649         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
45650         stat-time.h.
45651         * lib/argmatch.h: Include verify.h
45652         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
45653         (ARGMATCH_ASSERT): Remove; unused.
45654         * lib/canonicalize.c: Assume STDC_HEADERS.
45655         * lib/exclude.c: Include "strcase.h".
45656         * lib/regex_internal.h [!defined _LIBC]: Likewise.
45657         * lib/getusershell.c: Include stdio--.h rather than stdio.h
45658         and stdio-safer.h.
45659         (getusershell): Call fopen, not fopen_safer.
45660         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
45661         Do not include unistd-safer.h.
45662         (save_cwd): Don't call fd_safer; no longer needed
45663         now that we include fcntl--.h.
45664
45665         * lib/getdate.y (relative_time): New type.
45666         (RELATIVE_TIME_0): New constant.
45667         (parser_control): Use relative_time instead of doing it ourselves.
45668         (%union): Add new relative_time rel member.
45669         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
45670         Now typeless.
45671         (relunit, relunit_snumber): Now of type rel.
45672         (zone, rel, relunit, get_date): Adjust to above changes.
45673
45674         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
45675         Do not include unistd-safer.h.
45676         (getloadavg): Don't call fd_safer; no longer needed
45677         now that we include fcntl--.h.
45678
45679         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
45680         (make_dir_parents): Treat ENOSYS like EEXIST.
45681
45682         Improve quality of diagnostics on restore_cwd failure.
45683         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
45684         (make_dir_parents): Last arg is now int * (for errno), not bool *.
45685         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
45686         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
45687         each time through the loop.  Do not diagnose restore_cwd failure;
45688         that is the caller's job (and perhaps the caller does not care).
45689
45690         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
45691         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
45692         If the file already exists but is not a directory, don't bother
45693         to try to make its parents.
45694         Close potential file descriptor leak if we can't chdir("/") (!).
45695         Don't always return true if chdir($PWD) fails; return true only
45696         if the requested action was done successfully (except for the
45697         chdir($PWD)).
45698         Don't log final directory unless we actually made it.
45699         Refactor to avoid duplicate code to fix up permissions.
45700         Don't attempt to fix up parent permissions if chdir($PWD) fails.
45701
45702         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
45703         to make it a bit faster and (I hope) clearer.
45704         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
45705         Fix bug in formats like %2N.
45706
45707         * lib/verify.h: New file.
45708
45709 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
45710
45711         Sync from coreutils.
45712         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
45713
45714 2005-09-22  Jim Meyering  <jim@meyering.net>
45715
45716         Sync from coreutils.
45717
45718         * m4/lstat.m4 (gl_FUNC_LSTAT):
45719         Use AC_LIBSOURCES to require lstat.c and lstat.h.
45720         Remove obsolete comment.
45721         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
45722         * m4/xstrtod.m4: Likewise.
45723
45724         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
45725
45726 2005-09-22  Jim Meyering  <jim@meyering.net>
45727
45728         Sync from coreutils.
45729
45730         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
45731
45732         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
45733         the .tm_year member, since otherwise gcc-4.0 would now warn about
45734         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
45735
45736         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
45737         order to avoid an unsuppressible warning from gcc on 64-bit systems.
45738
45739         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
45740         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
45741         when run in a time zone for which daylight savings time is in effect
45742         for the starting date.
45743
45744         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
45745         stop us from restricting permissions of just-created absolute-named
45746         directories.
45747         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
45748         to restore initial working directory.
45749         * lib/mkdir-p.c (make_dir_parents): New parameter:
45750         different_working_dir, to tell caller if/when we change the working
45751         directory and are unable to return to the initial one.
45752         * lib/mkdir-p.h (make_dir_parents): Update prototype.
45753         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
45754         `return false'.  This fixes a bug introduced on 2004-07-30.
45755
45756         * lib/openat.c (fdopendir): Be sure to close the supplied
45757         file descriptor before returning.  This makes our replacement
45758         implementation a little closer to Solaris's, where fdopendir
45759         ties the file descriptor to the returned DIR* pointer.
45760         * lib/openat.c (unlinkat): New function.
45761         * lib/openat.h (unlinkat): Add prototype.
45762         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
45763         (openat_restore_fail): Rename from openat_restore_die.
45764         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
45765
45766         Provide an alternative to exiting immediately upon save_cwd or
45767         restore_cwd failure.  Now, an application can arrange e.g.,
45768         to perform a longjump in that case.
45769         * lib/openat.c: Include dirname.h.
45770         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
45771         (rpl_openat, fdopendir, fstatat): Call openat_save_die
45772         and openat_restore_die rather than calling error directly.
45773         Don't include "error.h" or "exitfail.h"; they're no longer needed.
45774
45775         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
45776         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
45777         define.
45778
45779         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
45780         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
45781                             int utc, int nanoseconds);
45782         Background:
45783         date should not have to allocate a megabyte of virtual memory to
45784         handle a format argument like +%1048575T.  When implemented with
45785         strftime, it must allocate such a buffer, use strftime to fill it
45786         in, print it, then free it.
45787         With fprintftime, it simply prints everything and exits.
45788         With no need for memory allocation, that's one fewer way to fail.
45789         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
45790         optional field width, not before, so we accept %9:z, not %:9z.
45791         (my_strftime): Be sure to use L_('x') for literals.
45792
45793         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
45794         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
45795         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
45796         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
45797         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
45798         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
45799         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
45800         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
45801         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
45802         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
45803         * lib/xgethostname.c, lib/xreadlink.c:
45804         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
45805
45806         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
45807         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
45808         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
45809         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45810         and don't include <sys/file.h>).
45811
45812 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
45813
45814         Sync from coreutils.
45815
45816         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
45817         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
45818         [!LDAV_DONE]: Avoid unused variable warning.
45819
45820 2005-09-21  Bruno Haible  <bruno@clisp.org>
45821
45822         * lib/unicodeio.h (unicode_to_mb): New declaration.
45823
45824 2005-09-20  Derek Price  <derek@ximbiot.com>
45825
45826         * lib/getaddrinfo.c: Don't include <netdb.h> included from
45827         getaddrinfo.h.
45828
45829 2005-09-20  Bruno Haible  <bruno@clisp.org>
45830
45831         * gnulib-tool: Remove trailing slashes from the values specified for
45832         --source-base, --m4-base, --tests-base, --aux-dir.
45833         Suggested by Simon Josefsson <jas@extundo.com>.
45834
45835 2005-09-20  Bruno Haible  <bruno@clisp.org>
45836
45837         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
45838         func_modules_to_filelist, func_import, func_create_testdir): Make all
45839         sorting results locale-independent, so that gnulib-cache.m4 doesn't
45840         change when gnulib-tool is invoked in a different locale.
45841
45842 2005-09-19  Simon Josefsson  <jas@extundo.com>
45843
45844         * m4/socklen.m4: Fix typo.
45845
45846 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45847
45848         Use a consistent style for including <config.h>.
45849         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
45850         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
45851         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
45852         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
45853         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
45854         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
45855         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
45856         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
45857         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
45858         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
45859         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
45860         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
45861         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
45862         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
45863         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
45864         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
45865         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
45866         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
45867         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
45868         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
45869         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
45870         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
45871         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
45872         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
45873         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
45874         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
45875         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
45876         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
45877         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
45878         lib/xstrtoumax.c, lib/yesno.c:
45879         Standardize inclusion of config.h.
45880         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
45881         lib/inttostr.h:  Removed inclusion of config.h from header files.
45882         * lib/inttostr.c:  Adjusted in-tree users.
45883         * lib/timespec.h: Remove superfluous warning to include config.h.
45884         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
45885         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
45886         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
45887         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
45888         config.h with HAVE_CONFIG_H.
45889
45890 2005-09-19  Jim Meyering  <jim@meyering.net>
45891
45892         * modules/pathmax (License): Change to LGPL.
45893
45894 2005-09-19  Derek Price  <derek@ximbiot.com>
45895
45896         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
45897
45898 2005-09-19  Bruno Haible  <bruno@clisp.org>
45899
45900         * gnulib-tool (import): Provide default for --tests-base.
45901
45902 2005-09-19  Bruno Haible  <bruno@clisp.org>
45903
45904         * doc/quote.texi: New file, extracted from gnulib.texi.
45905         * doc/ctime.texi: New file, extracted from gnulib.texi.
45906         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
45907         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
45908         * doc/gnulib.texi: Include them.
45909
45910 2005-09-18  Bruno Haible  <bruno@clisp.org>
45911
45912         Portability fix.
45913         * gnulib-tool (func_readlink): New function.
45914         (func_ln_if_changed): Use it.
45915
45916 2005-09-18  Bruno Haible  <bruno@clisp.org>
45917
45918         * gnulib-tool: Support --with-tests also with --import.
45919         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
45920         (func_import): Use variables $testsbase and $inctests. Emit a
45921         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
45922         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
45923         SUBDIRS += $testsdir.
45924         (func_create_testdir): Update.
45925
45926 2005-09-18  Bruno Haible  <bruno@clisp.org>
45927
45928         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
45929         instead of $dry_run.
45930         (func_cp_if_changed, func_mv_if_changed): Remove functions.
45931         (func_ln_if_changed): Don't handle dry-run here.
45932         (func_import): In dry-run mode, detect more precisely which actions
45933         would be performed, and don't use "...ing" verbs.
45934
45935 2005-09-18  Bruno Haible  <bruno@clisp.org>
45936
45937         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
45938         (func_import): Use join on two temporary files instead of three nested
45939         loops, in order to determine which files are new or old.
45940
45941 2005-09-18  Bruno Haible  <bruno@clisp.org>
45942
45943         * gnulib-tool (func_import): Comment out code that spits out the
45944         new files with --dry-run.
45945
45946 2005-09-18  Bruno Haible  <bruno@clisp.org>
45947
45948         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
45949
45950 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
45951
45952         * lib/stat-time.h: New file.
45953         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
45954         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
45955         in a different way.
45956         (timespec_cmp): New function.
45957         * lib/utimecmp.c: Include stat-time.h.
45958         (SYSCALL_RESOLUTION): Depend on whether various struct stat
45959         members exist, not on the obsolescent ST_MTIM_NSEC.
45960         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
45961
45962 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
45963
45964         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
45965
45966 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
45967
45968         * MODULES.html.sh (File system functions): Add stat-time.
45969         * modules/stat-time: New file.
45970         * modules/timespec (Files): Remove m4/st_mtim.m4; this
45971         is now done in a different way, by the stat-time module.
45972         * modules/utimecmp (Depends-on): Add stat-time.
45973
45974 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
45975
45976         * m4/st_mtim.m4: Remove.  Superseded by...
45977         * m4/stat-time.m4: New file.
45978         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
45979         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
45980
45981 2005-09-15  Derek Price  <derek@ximbiot.com>
45982
45983         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
45984
45985 2005-09-15  Derek Price  <derek@ximbiot.com>
45986
45987         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
45988         * lib/regex_internal.c: Ditto, using this...
45989         (__GNUC_PREREQ): ...new macro.
45990         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
45991         using...
45992         (__GNUC_PREREQ): ...this new macro.
45993
45994         * lib/strstr.h: Include string.h. Define strstr as a macro here.
45995
45996 2005-09-15  Derek Price  <derek@ximbiot.com>
45997             Paul Eggert  <eggert@cs.ucla.edu>
45998
45999         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
46000         changes, consolidating in...
46001         * lib/regex_internal.h: ...this file.
46002
46003 2005-09-13  Jim Meyering  <jim@meyering.net>
46004
46005         * lib/canon-host.c: Filter through gnu indent and reword comments
46006         slightly.
46007         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
46008
46009 2005-09-13  Derek Price  <derek@ximbiot.com>
46010
46011         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
46012         failure.
46013         Reported by Jim Meyering  <jim@meyering.net>.
46014
46015 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
46016
46017         * lib/base64.c: Typo.
46018         (base64_encode): Put b64str in initialized data section.
46019
46020 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
46021
46022         Merge glibc and coreutils changes into gnulib, plus a few
46023         extra fixes.
46024         * lib/md5.c: Use #error rather than a string.
46025         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
46026         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
46027         (__attribute__): Define to empty for non recent-GCC.
46028         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
46029         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
46030         Renamed from their non-__ counterparts, with new macros replacing
46031         them if not _LIBC.  Add __THROW attribute.
46032         (rol): Remove.
46033         (struct md5_ctx): Align buffer if using GCC.
46034         * lib/sha1.h (struct sha1_ctx): Likewise.
46035         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
46036         The old name was backwards.
46037         (NOTSWAP): Remove; not used.
46038         (rol): New macro, moved here from md5.h.
46039         (sha1_process_block): Remove a FIXME that doesn't make sense.
46040
46041 2005-09-12  Derek Price  <derek@ximbiot.com>
46042
46043         Return usable errors from canon-host.
46044         * lib/canon-host.h: New file.
46045         * lib/canon-host.c (canon_host): Wrap...
46046         (canon_host_r): ...this new function, which now relies exclusively on
46047         getaddrinfo.
46048         (ch_strerror): New function.
46049         (last_cherror): New global.
46050         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
46051         interface.
46052         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
46053         void *.
46054         (freeaddrinfo): Free ai->ai_canonname when set.
46055
46056 2005-09-12  Derek Price  <derek@ximbiot.com>
46057
46058         Make canon-host require getaddrinfo.
46059         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
46060         AC_LIBSOURCE canon-host.h.  Call...
46061         (gl_PREREQ_CANON_HOST): ...this new function, which requires
46062         gl_GETADDRINFO.
46063         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
46064
46065 2005-09-12  Derek Price  <derek@ximbiot.com>
46066
46067         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
46068         LGPL.
46069         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
46070
46071 2005-09-12  Derek Price  <derek@ximbiot.com>
46072
46073         * lib/gai_strerror.c: Include config.h when available.  Include
46074         getaddrinfo.h before other headers to test interface.
46075         Reported by Larry Jones <lawrence.jones@ugs.com>.
46076
46077 2005-09-12  Derek Price  <derek@ximbiot.com>
46078             Paul Eggert  <eggert@cs.ucla.edu>
46079
46080         * modules/glob (Files): Add glob-libc.h.
46081
46082 2005-09-12  Derek Price  <derek@ximbiot.com>
46083             Paul Eggert  <eggert@cs.ucla.edu>
46084
46085         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
46086         glob_.h, glob-libc.h.
46087         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
46088
46089 2005-09-12  Derek Price  <derek@ximbiot.com>
46090             Paul Eggert  <eggert@cs.ucla.edu>
46091
46092         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
46093         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
46094         protecting things that should be done only in gnulib contexts.
46095         * lib/glob_.h: New file, containing only the glob things needed for
46096         gnulib.
46097         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
46098         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
46099         (glob, globfree, glob_pattern_p): Now defined simply in terms of
46100         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
46101         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
46102         and to respect the namespace rules better.
46103
46104 2005-09-08  Simon Josefsson  <jas@extundo.com>
46105
46106         * modules/socklen: New file.
46107
46108 2005-09-08  Simon Josefsson  <jas@extundo.com>
46109
46110         * m4/socklen.m4: New file.
46111
46112 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
46113
46114         * modules/utimens (Files): Add m4/utimbuf.m4, since
46115         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
46116         Reported by Sergey Poznyakoff.
46117
46118 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
46119
46120         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
46121         definitions, since that's the preferred style in glibc.
46122         Fix a minor spacing issue, and update copyright notice to match
46123         glibc's.
46124
46125 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
46126
46127         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
46128
46129 2005-09-06  Simon Josefsson  <jas@extundo.com>
46130
46131         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
46132         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
46133
46134 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
46135
46136         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
46137         warning.
46138
46139 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
46140
46141         * config/srclist.txt: Add glibc bug 1302.
46142
46143 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
46144
46145         Change bitset word type from unsigned int to unsigned long int,
46146         as this has better performance on typical 64-bit hosts.
46147         Port bitset code to hosts with unusual word sizes.
46148         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
46149         (build_collating_symbol):
46150         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
46151         argument is a bitset.  This is merely a style issue, but it makes
46152         it clearer that an entire array is expected.
46153         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
46154         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
46155         Port to the case where bitset_word is not the same as unsigned int.
46156         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
46157         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
46158         Likewise.
46159         * lib/regexec.c (check_dst_limits_calc_pos_1,
46160         check_subexp_matching_top):
46161         (build_trtable, group_nodes_into_DFAstates):
46162         Likewise.
46163         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
46164         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
46165         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
46166         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
46167         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
46168         * lib/regcomp.c (optimize_subexps, lower_subexp):
46169         Work even if bitset_word has holes in its bitwise representation.
46170         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
46171         * lib/regexec.c (check_dst_limits_calc_pos_1,
46172         check_subexp_matching_top):
46173         Likewise.
46174         * lib/regex_internal.c (re_string_reconstruct):
46175         Don't assume UCHAR_MAX == 255.
46176         * lib/regex_internal.h (bitset_set_all): Likewise.
46177         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
46178         All uses changed.
46179         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
46180         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
46181         All uses changed.
46182         (BITSET_WORD_MAX): New macro.
46183         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
46184         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
46185         (bitset_empty, bitset_copy):
46186         Prefer sizeof (bitset) to multiplying it out ourselves.
46187         (bitset_not_merge): Remove; unused.
46188         (bitset_contain): Return bool, not unsigned int with one bit on.
46189         All callers changed.
46190         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
46191         alignment than re_node_set; do this by defining a new internal
46192         type struct dests_alloc and using it to allocate memory.
46193
46194 2005-09-05  Bruno Haible  <bruno@clisp.org>
46195
46196         * gnulib-tool (func_import): Fix comparison in handling of symbolic
46197         links.
46198
46199 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
46200
46201         * modules/size_max (Makefile.am): Add size_max.h
46202
46203 2005-09-04  Derek Price  <derek@ximbiot.com>
46204
46205         * gnulib-tool (func_import): Fix reversed $symbolic logic.
46206
46207 2005-09-03  Simon Josefsson  <jas@extundo.com>
46208
46209         * gnulib-tool: Fix typo.
46210
46211 2005-09-03  Simon Josefsson  <jas@extundo.com>
46212
46213         * config/srclist.txt: Add glibc bug 1293.
46214
46215 2005-09-03  Derek Price  <derek@ximbiot.com>
46216
46217         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
46218         From Larry Jones <lawrence.jones@ugs.com>.
46219
46220 2005-09-02  Simon Josefsson  <jas@extundo.com>
46221
46222         * modules/socklen: New file.
46223
46224 2005-09-02  Simon Josefsson  <jas@extundo.com>
46225
46226         * modules/havelib: New module.
46227
46228         * modules/gettext, modules/iconv, modules/lock, modules/readline:
46229         Use havelib.
46230
46231 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
46232
46233         Check for arithmetic overflow when calculating sizes, to prevent
46234         some buffer-overflow issues.  These patches are conservative, in the
46235         sense that when I couldn't determine whether an overflow was possible,
46236         I inserted a run-time check.
46237         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
46238         macros.
46239         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
46240         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
46241         (re_xnrealloc, re_x2nrealloc): New inline functions.
46242         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
46243         parse_bracket_exp):
46244         (build_equiv_class, build_charclass): Check for arithmetic overflow
46245         in size expression calculations.
46246         * lib/regex_internal.c (re_string_realloc_buffers):
46247         (build_wcs_upper_buffer, re_node_set_add_intersect):
46248         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
46249         (re_dfa_add_node, register_state): Likewise.
46250         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
46251         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
46252         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
46253         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
46254
46255 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
46256
46257         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
46258         m4/ulonglong.m4.  Problem reported by Martin Lambers.
46259
46260 2005-09-02  Bruno Haible  <bruno@clisp.org>
46261
46262         Support for lib vs. lib64 distinction on biarch platforms.
46263         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
46264         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
46265         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
46266
46267 2005-09-02  Bruno Haible  <bruno@clisp.org>
46268
46269         * gnulib-tool (import): In the other first-use case, provide defaults
46270         as well.
46271
46272 2005-09-02  Bruno Haible  <bruno@clisp.org>
46273
46274         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
46275         patches not yet found in the latest gettext release.
46276
46277 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
46278
46279         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
46280         to avoid a collision with bits/local_lim.h in glibc.
46281         All uses changed.  Problem reported by Dmitry V. Levin in
46282         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
46283
46284         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
46285         bugs in int versus size_t comparisons.
46286         (re_string_context_at): Fix bug where the code assumed that
46287         Idx is signed.
46288
46289         Use bool where appropriate.
46290         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
46291         All callers changed.
46292         (calc_eclosure_iter): Likewise, for ROOT arg.
46293         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
46294         (build_charclass_op): Likewise, for NON_MATCH arg.
46295         * lib/regex_internal.c (re_string_allocate, re_string_construct):
46296         (re_string_construct_common): Likewise, for ICASE arg.
46297         * lib/regexec.c (re_search_2_stub, re_search_stub):
46298         Likewise, for RET_LEN arg.
46299         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
46300         (set_regs): Likewise, for FL_BACKTRACK arg.
46301         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
46302         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
46303         (calc_eclosure_iter, parse_bracket_exp):
46304         Use bool for internal variables that are booleans.
46305         * lib/regexec.c (re_search_internal, check_matching,
46306         proceed_next_node):
46307         (set_regs, build_sifted_states, sift_states_bkref):
46308         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
46309         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
46310         (find_collation_sequence_value):
46311         Likewise.
46312         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
46313         (re_node_set_compare):
46314         Return bool, not int. All callers changed.
46315         * lib/regexec.c (check_halt_node_context, check_dst_limits):
46316         (build_trtable, check_node_accept): Likewise.
46317         * lib/regex_internal.h: Include stdbool.h.
46318
46319         Fix bugs uncovered when converting to bool.
46320         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
46321         failure instead of charging ahead blindly.
46322         * lib/regex_internal.c (register_state): Likewise.
46323         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
46324         for freeing internal storage.
46325         (group_nodes_into_DFA_states): Use unsigned int, not int, for
46326         bitset pieces used as boolean, to avoid undefined behavior
46327         on hosts that do int overflow checking.
46328
46329 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
46330
46331         * config/srclist.txt: Add glibc bugs 1285-1287.
46332
46333 2005-09-01  Jim Meyering  <jim@meyering.net>
46334
46335         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
46336         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
46337         Require gl_STAT_MACROS, too.
46338
46339 2005-09-01  Bruno Haible  <bruno@clisp.org>
46340
46341         * gnulib-tool (import): In the first-use case, provide defaults.
46342
46343 2005-09-01  Bruno Haible  <bruno@clisp.org>
46344
46345         * gnulib-tool (func_import): Remove the .tmp files.
46346
46347 2005-09-01  Bruno Haible  <bruno@clisp.org>
46348
46349         * gnulib-tool (func_import): Fix handling of symbolic links.
46350
46351 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
46352
46353         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
46354         old glibc regex code mishandles strings longer than 2**31 bytes.
46355         This patch fixes this when the regex code is used in gnulib
46356         (i.e., outside glibc).
46357
46358         This patch should not affect the use of the regex code inside
46359         glibc.  No doubt this problem also needs to be handled for glibc
46360         as well, but the result will be an incompatible change to the
46361         glibc ABI, and the old ABI will have to be supported too.  That
46362         can be the the subject for another patch.
46363
46364         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
46365         governing whether the rest of this patch is active.  By default,
46366         the macro is disabled and the patch has no effect.
46367         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
46368         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
46369         (struct re_pattern_buffer, re_search, re_search_2, re_match):
46370         (re_match_2, re_set_registers): Use the new types.
46371         * lib/regex_internal.h (Idx, re_hashval_t): New types.
46372         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
46373         New macros.
46374         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
46375         (re_string_context_at, bin_tree_t, re_dfastate_t):
46376         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
46377         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
46378         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
46379         (re_string_char_size_at, re_string_wchar_at):
46380         (re_string_elem_size_at):
46381         Use the new types and macros to port to 64-bit hosts.
46382         Use unsigned types for internal values, so that the code
46383         mostly works even for arrays larger than SSIZE_MAX.
46384         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
46385         (search_duplicated_node, calc_eclosure_iter, fetch_number):
46386         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
46387         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
46388         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
46389         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
46390         (calc_inveclosure, parse_dup_op, build_range_exp):
46391         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
46392         (fetch_number, create_token_tree, mark_opt_subexp):
46393         Likewise.
46394         * lib/regex_internal.c (re_string_construct_common,
46395         create_ci_newstate):
46396         (create_cd_newstate, re_string_allocate, re_string_construct):
46397         (re_string_realloc_buffers, build_wcs_upper_buffer):
46398         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
46399         (re_string_reconstruct, re_string_peek_byte_case):
46400         (re_string_fetch_byte_case, re_string_context_at):
46401         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
46402         (re_node_set_init_copy, re_node_set_add_intersect):
46403         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
46404         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
46405         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
46406         (re_acquire_state, re_acquire_state_context, register_state):
46407         Likewise.
46408         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
46409         search_cur_bkref_entry):
46410         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
46411         (re_search_internal, re_search_2_stub, re_search_stub)
46412         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
46413         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
46414         (update_cur_sifted_state, check_dst_limits):
46415         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
46416         (check_subexp_limits, sift_states_bkref, merge_state_array):
46417         (check_subexp_matching_top, get_subexp, get_subexp_sub):
46418         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
46419         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
46420         (expand_bkref_cache, check_node_accept_bytes):
46421         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
46422         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
46423         (acquire_init_state_context, check_halt_node_context):
46424         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
46425         (sift_states_backward, clean_state_log_if_needed):
46426         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
46427         (find_recover_state, transit_state_sb, transit_state_mb):
46428         (transit_state_bkref, build_trtable, match_ctx_clean):
46429         Likewise.
46430         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
46431         to work around an assumption that REG_MISSING is negative.
46432
46433         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
46434         (seek_collating_symbol_entry) [defined _LIBC]:
46435         (lookup_collation_sequence_value) [defined _LIBC]:
46436         (build_range_exp, build_collating_symbol) [defined _LIBC]:
46437         Use prototypes rather than old-style function definitions.
46438         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
46439         (transit_state_sb) [0]:
46440         (find_collation_sequence_value) [defined _LIBC]: Likewise.
46441
46442         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
46443         rm_eo.
46444
46445         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
46446         (optimize_subexps, lower_subexp):
46447         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
46448         since the signed shift might overflow.  Use 1u<<31 instead.
46449         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
46450         Likewise.
46451         * lib/regexec.c (check_dst_limits_calc_pos_1,
46452         check_subexp_matching_top): Likewise.
46453
46454         * lib/regcomp.c (optimize_subexps, lower_subexp):
46455         Use CHAR_BIT rather than 8, for clarity.
46456         * lib/regexec.c (check_dst_limits_calc_pos_1):
46457         (check_subexp_matching_top): Likewise.
46458         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
46459         have to worry about portability issues when shifting it left.
46460         Remove no-longer-needed test for table_size > 0.
46461         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
46462         in a word, as the resulting behavior is undefined.
46463         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
46464         in one case, a <= should have been an <, and in another case the
46465         whole test was missing.
46466         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
46467         the standard name CHAR_BIT.
46468         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
46469         this is not true on one's complement and signed-magnitude hosts.
46470
46471         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
46472         next_last_offset.
46473         (struct re_dfa_t): Remove unused member states_alloc.
46474         * lib/regcomp.c (init_dfa): Don't initialize unused members.
46475
46476 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
46477
46478         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
46479         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
46480         and large-file glibc and in 32-bit large-file Solaris.
46481
46482 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
46483
46484         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
46485         lengths fit in regoff_t; this isn't true if regoff_t is the same
46486         width as size_t.
46487         * lib/regex.c (re_search_internal): 5th arg is LAST_START
46488         (= START + RANGE) instead of RANGE.  This avoids overflow
46489         problems when regoff_t is the same width as size_t.
46490         All callers changed.
46491         (re_search_2_stub): Check for overflow when adding the
46492         sizes of the two strings.
46493         (re_search_stub): Check for overflow when adding START
46494         to RANGE; if it occurs, substitute the extreme value.
46495
46496 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
46497
46498         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
46499
46500 2005-08-31  Jim Meyering  <jim@meyering.net>
46501
46502         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
46503         a pointer-to-const.
46504         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
46505         (register_state): Likewise.
46506         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
46507         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
46508         (group_nodes_into_DFAstates): Likewise.
46509
46510 2005-08-31  Jim Meyering  <jim@meyering.net>
46511
46512         * check-module: Add a FIXME comment.
46513
46514 2005-08-31  Eric Blake  <ebb9@byu.net>
46515
46516         * modules/unistd-safer (Files): Add unistd--.h.
46517         * modules/stdio-safer (Files): Add stdio--.h.
46518
46519 2005-08-31  Derek Price  <derek@ximbiot.com>
46520
46521         * lib/getdelim.c (getdelim): Return EOF on EOF.
46522         Reported by Larry Jones <lawrence.jones@ugs.com>.
46523
46524 2005-08-31  Bruno Haible  <bruno@clisp.org>
46525
46526         Avoid unnecessary diffs in the generated lib/Makefile.am.
46527         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
46528         the generated files.
46529         (func_import): Don't set cmd.
46530
46531 2005-08-31  Bruno Haible  <bruno@clisp.org>
46532
46533         * lib/strstr.c: Include <stddef.h>, for NULL.
46534         * lib/strcasestr.c: Likewise.
46535         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
46536
46537 2005-08-31  Bruno Haible  <bruno@clisp.org>
46538
46539         * gnulib-tool: New option --macro-prefix.
46540         (func_import): Use macro_prefix.
46541         (import): Handle option --macro-prefix.
46542
46543 2005-08-31  Bruno Haible  <bruno@clisp.org>
46544
46545         * gnulib-tool (import): Rename most ac_* variables to cached_*.
46546         Also use new variables cached_lgpl, cached_libtool.
46547
46548 2005-08-31  Bruno Haible  <bruno@clisp.org>
46549
46550         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
46551         always instantiating them.
46552
46553 2005-08-31  Bruno Haible  <bruno@clisp.org>
46554
46555         * gnulib-tool (func_import): Read the previous cached settings
46556         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
46557         earlier added by gnulib but are now dropped. Warn when a gnulib file
46558         overwrites a non-gnulib file.
46559
46560 2005-08-31  Bruno Haible  <bruno@clisp.org>
46561
46562         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
46563         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
46564         projects that don't keep autogenerated files in CVS. Put into
46565         actioncmd only the specified modules, not the transitive closure.
46566
46567 2005-08-31  Bruno Haible  <bruno@clisp.org>
46568
46569         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
46570         Create directories that shall be filled.
46571         (import): Don't look for gl_* macros in configure.ac. Recurse across
46572         all directories containing a gnulib-cache.m4 files, if meaningful.
46573
46574 2005-08-31  Bruno Haible  <bruno@clisp.org>
46575
46576         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
46577         (import): Set seen_libtool when we see gl_LIBTOOL.
46578
46579 2005-08-31  Bruno Haible  <bruno@clisp.org>
46580
46581         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
46582         declaration macro definitions from generated gnulib.m4.
46583
46584 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
46585
46586         * lib/iconvme.h: Add prototype for iconv_alloc.
46587
46588 2005-08-29  Simon Josefsson  <jas@extundo.com>
46589
46590         * lib/iconvme.c: Fix errno.
46591
46592 2005-08-29  Bruno Haible  <bruno@clisp.org>
46593
46594         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
46595         that it works when the directory contains spaces.
46596
46597 2005-08-29  Bruno Haible  <bruno@clisp.org>
46598
46599         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
46600
46601 2005-08-29  Bruno Haible  <bruno@clisp.org>
46602
46603         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
46604         Emit more advice.
46605
46606 2005-08-29  Bruno Haible  <bruno@clisp.org>
46607         and Stepan Kasal  <kasal@ucw.cz>
46608
46609         * check-module: If more parameters are given, check each of them
46610         separately; add more exceptions, as noted by Jim Meyering.
46611         (check_module): New procedure.
46612         (%exempt_header): Now contains all exceptions.
46613
46614 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
46615
46616         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
46617
46618 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
46619
46620         * lib/iconvme.c: Split iconv_string into iconv_alloc.
46621
46622 2005-08-28  Bruno Haible  <bruno@clisp.org>
46623
46624         * m4/gnulib-tool.m4: New file.
46625
46626 2005-08-27  Jim Meyering  <jim@meyering.net>
46627
46628         * modules/unistd-safer (Files): Add pipe-safer.c.
46629         * modules/fcntl-safer (Files): Add creat-safer.c.
46630
46631 2005-08-27  Jim Meyering  <jim@meyering.net>
46632
46633         * m4/stdlib-safer.m4: New file.  From coreutils.
46634         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
46635         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
46636         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
46637         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
46638         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
46639
46640 2005-08-27  Jim Meyering  <jim@meyering.net>
46641
46642         * lib/fopen-safer.c: Merge minor changes from coreutils.
46643         * lib/dup-safer.c: Likewise.
46644         * lib/fd-safer.c: Likewise.
46645
46646         Merge from coreutils.
46647         * lib/stdio--.h: New file.
46648         * lib/stdlib--.h: New file.
46649         * lib/mkstemp-safer.c: New file.
46650
46651         GNU tar needs these.
46652         * lib/pipe-safer.c: New file.
46653         * lib/creat-safer.c: New file.
46654         * lib/fcntl--.h (creat): Define to creat_safer.
46655         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
46656         * lib/unistd--.h (pipe): Define to pipe_safer.
46657         * lib/unistd-safer.h: Declare pipe_safer.
46658
46659 2005-08-26  Simon Josefsson  <jas@extundo.com>
46660
46661         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
46662         Haible <bruno@clisp.org>.
46663
46664 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
46665
46666         * lib/regex_internal.h: Remove all references to
46667         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
46668         or better.
46669         (bitset_not, bitset_merge, bitset_not_merge):
46670         (bitset_mask, re_string_allocate, re_string_construct):
46671         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
46672         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
46673         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
46674         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
46675         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
46676         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
46677         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
46678         (re_acquire_state_context):
46679         Remove unnecessary forward decls.
46680         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
46681         Put __attribute at function definition,
46682         now that the function decl has been removed.
46683         * lib/regex_internal.c (re_string_peek_byte_case):
46684         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
46685         Likewise.
46686
46687 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
46688
46689         * m4/regex.m4: Add AC_PREREQ(2.50).
46690         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
46691
46692 2005-08-25  Simon Josefsson  <jas@extundo.com>
46693
46694         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
46695         __fsetlocking.
46696
46697 2005-08-25  Simon Josefsson  <jas@extundo.com>
46698
46699         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
46700         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
46701         GLIBC specific code.
46702
46703 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
46704
46705         Make regex safe for g++.  This fixes one real bug (an "err"
46706         that should have been "*err").  g++ problem reported by
46707         Sam Steingold.
46708         * lib/regex_internal.h (re_calloc): New macro, consistent with
46709         re_malloc etc.  All callers of calloc changed to use re_calloc.
46710         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
46711         not int.  All callers changed.
46712         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
46713         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
46714         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
46715         (find_recover_state): Change "err" to "*err"; this fixes what
46716         appears to be a real bug.
46717         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
46718         versus int.
46719
46720 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
46721
46722         * modules/regex (Depends-on): Add malloc, since the code
46723         assumes that !malloc(0) means failure.
46724
46725 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
46726
46727         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
46728
46729         alloca modernization/simplification for regex.
46730         * lib/regex.c: Remove portability cruft for alloca.  This no longer
46731         needs to be at the start of the file, and can be moved into
46732         regex_internal.h and simplified.
46733         * lib/regex_internal.h: Include <alloca.h>.
46734         (__libc_use_alloca) [!defined _LIBC]: New macro.
46735         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
46736         now works outside glibc.
46737
46738 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
46739
46740         * config/srclist.txt: Add glibc bugs 1241, 1245.
46741
46742 2005-08-25  Jim Meyering  <jim@meyering.net>
46743
46744         * lib/open-safer.c: Include <config.h>.
46745         Otherwise, we'd lose LARGEFILE support in any file using
46746         e.g. "fcntl--.h"
46747
46748 2005-08-25  Bruno Haible  <bruno@clisp.org>
46749
46750         * m4/minmax.m4: Require autoconf 2.52.
46751         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
46752         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
46753         alternatives of translit over the alphabet.
46754         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
46755
46756 2005-08-24  Simon Josefsson  <jas@extundo.com>
46757
46758         * tests/test-getpass.c: New file.
46759
46760 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
46761
46762         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
46763         for GNU regex features.
46764
46765 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
46766
46767         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
46768         * lib/regex.h (regerror): Likewise.
46769
46770         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
46771         requires this.  (The code never needed it.)
46772
46773         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
46774         All uses of recently-renamed identifiers changed to use the new,
46775         POSIX-compliant names.  The code will build and run just fine
46776         without these changes, but it's better to eat our own dog food
46777         and use the standard-conforming names.
46778
46779         * lib/regex.h: Fix a multitude of POSIX name space violations.
46780         These changes have an effect only for programs that define
46781         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
46782         do not change anything for programs compiled in the normal way.
46783         Also, there is no effect on the ABI.
46784
46785         (_REGEX_SOURCE): New macro.
46786         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
46787         defined and _GNU_SOURCE is not; this fixes a name space violation.
46788
46789         Rename the following macros to obey POSIX requirements.
46790         The old names are still visible as macros if _REGEX_SOURCE is defined.
46791         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
46792         RE_BACKSLASH_ESCAPE_IN_LISTS.
46793         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
46794         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
46795         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
46796         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
46797         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
46798         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
46799         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
46800         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
46801         (REG_INTERVALS): renamed from RE_INTERVALS.
46802         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
46803         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
46804         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
46805         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
46806         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
46807         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
46808         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
46809         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
46810         RE_UNMATCHED_RIGHT_PAREN_ORD.
46811         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
46812         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
46813         (REG_DEBUG): renamed from RE_DEBUG.
46814         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
46815         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
46816         unusual, since we can't clash with the POSIX REG_ICASE.
46817         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
46818         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
46819         (REG_NO_SUB): renamed from RE_NO_SUB.
46820         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
46821         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
46822         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
46823         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
46824         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
46825         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
46826         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
46827         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
46828         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
46829         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
46830         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
46831         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
46832         RE_SYNTAX_POSIX_MINIMAL_BASIC.
46833         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
46834         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
46835         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
46836         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
46837         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
46838         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
46839         (REG_FIXED): Renamed from REGS_FIXED.
46840         (REG_NREGS): Renamed from RE_NREGS.
46841
46842         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
46843         of other REG_* macros, since POSIX says the user is allowed to
46844         #undef these macros selectively.
46845
46846         (reg_errcode_t): Update comment stating what other tables need
46847         to be consistent.
46848
46849         Rename the following enum values to obey POSIX requirements.
46850         The old names are still visible as macros.
46851         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
46852         is not defined, since GNU is supposed to be a superset of POSIX as
46853         much as possible, and since we want reg_errcode_t to be a signed
46854         type for implementation consistency.
46855         (_REG_NOERROR): Renamed from REG_NOERROR.
46856         (_REG_NOMATCH): Renamed from REG_NOMATCH.
46857         (_REG_BADPAT): Renamed from REG_BADPAT.
46858         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
46859         (_REG_ECTYPE): Renamed from REG_ECTYPE.
46860         (_REG_EESCAPE): Renamed from REG_EESCAPE.
46861         (_REG_ESUBREG): Renamed from REG_ESUBREG.
46862         (_REG_EBRACK): Renamed from REG_EBRACK.
46863         (_REG_EPAREN): Renamed from REG_EPAREN.
46864         (_REG_EBRACE): Renamed from REG_EBRACE.
46865         (_REG_BADBR): Renamed from REG_BADBR.
46866         (_REG_ERANGE): Renamed from REG_ERANGE.
46867         (_REG_ESPACE): Renamed from REG_ESPACE.
46868         (_REG_BADRPT): Renamed from REG_BADRPT.
46869         (_REG_EEND): Renamed from REG_EEND.
46870         (_REG_ESIZE): Renamed from REG_ESIZE.
46871         (_REG_ERPAREN): Renamed from REG_ERPAREN.
46872         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
46873         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
46874         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
46875         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
46876
46877         (_REG_RE_NAME, _REG_RM_NAME): New macros.
46878         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
46879         changed.  But support the old name if the new one is not defined
46880         and if _REGEX_SOURCE.
46881
46882         Change the following member names in struct re_pattern_buffer.
46883         The old names are still supported if !_REGEX_SOURCE.
46884         The new names are always supported, regardless of _REGEX_SOURCE.
46885         (re_buffer): Renamed from buffer.
46886         (re_allocated): Renamed from allocated.
46887         (re_used): Renamed from used.
46888         (re_syntax): Renamed from syntax.
46889         (re_fastmap): Renamed from fastmap.
46890         (re_translate): Renamed from translate.
46891         (re_can_be_null): Renamed from can_be_null.
46892         (re_regs_allocated): Renamed from regs_allocated.
46893         (re_fastmap_accurate): Renamed from fastmap_accurate.
46894         (re_no_sub): Renamed from no_sub.
46895         (re_not_bol): Renamed from not_bol.
46896         (re_not_eol): Renamed from not_eol.
46897         (re_newline_anchor): Renamed from newline_anchor.
46898
46899         Change the following member names in struct re_registers.
46900         The old names are still supported if !_REGEX_SOURCE.
46901         The new names are always supported, regardless of _REGEX_SOURCE.
46902         (rm_num_regs): Renamed from num_regs.
46903         (rm_start): Renamed from start.
46904         (rm_end): Renamed from end.
46905
46906         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
46907         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
46908         Prepend __ to parameter names.
46909
46910         Undo yesterday's changes.
46911
46912 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
46913
46914         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
46915         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
46916         lib/regex.c.
46917
46918 2005-08-24  Jim Meyering  <jim@meyering.net>
46919
46920         Sync from coreutils.
46921         * m4/fcntl-safer.m4: New file.
46922
46923         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
46924         and object files for this module.
46925
46926 2005-08-24  Jim Meyering  <jim@meyering.net>
46927
46928         Sync from coreutils.
46929         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
46930
46931 2005-08-24  Jim Meyering  <jim@meyering.net>
46932
46933         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
46934         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
46935
46936 2005-08-24  Jim Meyering  <jim@meyering.net>
46937
46938         * modules/fcntl-safer: New module.
46939         * modules/fts (Depends-on): Add fcntl-safer.
46940         * MODULES.html.sh (File descriptor based Input/Output):
46941         Add fcntl-safer.
46942
46943 2005-08-24  Bruno Haible  <bruno@clisp.org>
46944
46945         Support for unit test modules.
46946         * modules/README: Mention tests modules.
46947         * modules/TEMPLATE-TESTS: New file.
46948         * gnulib-tool: New options --extract-tests-module, --with-tests and
46949         --tests-base (unused for the moment).
46950         (testsbase, inctests): New variables.
46951         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
46952         (func_verify_module): Exclude TEMPLATE-TESTS.
46953         (func_verify_nontests_module, func_verify_tests_module): New functions.
46954         (func_get_dependencies): Add implicit dependency for tests modules.
46955         (func_get_tests_module): New function.
46956         (func_modules_transitive_closure): When --with-tests was specified,
46957         include the unit tests as well, unless explicitly avoided.
46958         (func_emit_lib_Makefile_am): Ignore the tests modules here.
46959         (func_emit_tests_Makefile_am): New function.
46960         (func_create_testdir): When --with-tests was specified, emit a
46961         tests/ directory.
46962         * MODULES.html.sh (Future developments): Update.
46963
46964 2005-08-24  Bruno Haible  <bruno@clisp.org>
46965
46966         * modules/tls-tests: New file.
46967         * tests/test-tls.c: New file, from GNU gettext.
46968
46969 2005-08-24  Bruno Haible  <bruno@clisp.org>
46970
46971         * modules/lock-tests: New file.
46972         * tests/test-lock.c: New file, from GNU gettext.
46973
46974 2005-08-24  Bruno Haible  <bruno@clisp.org>
46975
46976         * lib/lock.h: Add multiple inclusion guard.
46977         * lib/tls.h: Add multiple inclusion guard.
46978
46979 2005-08-24  Bruno Haible  <bruno@clisp.org>
46980
46981         * gnulib-tool: Add support for the --aux-dir option to
46982         --create-testdir, --create-megatestdir, --test, --megatest.
46983         (func_create_testdir, func_create_megatestdir): Optionally emit a
46984         AC_CONFIG_AUX_DIR directive.
46985         (create-testdir, create-megatestdir, test, megatest): Provide a
46986         default value for $auxdir.
46987
46988 2005-08-24  Bruno Haible  <bruno@clisp.org>
46989
46990         * gnulib-tool (import): Use compound statement instead of subshell
46991         where possible.
46992
46993 2005-08-24  Bruno Haible  <bruno@clisp.org>
46994
46995         * gnulib-tool (import): Change --aux-dir default to "build-aux".
46996
46997 2005-08-24  Bruno Haible  <bruno@clisp.org>
46998
46999         * gnulib-tool (func_version): Update.
47000
47001 2005-08-24  Bruno Haible  <bruno@clisp.org>
47002
47003         * gnulib-tool (func_import, func_create_testdir,
47004         func_create_megatestdir): Quote all autoconf macro arguments.
47005
47006 2005-08-24  Bruno Haible  <bruno@clisp.org>
47007
47008         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
47009         option --force, because --force causes the aclocal.m4 of each
47010         subdirectory to be newer than the corresponding config.h.in.
47011
47012 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
47013
47014         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
47015         All contents moved to gl_REGEX.
47016         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
47017         assume that it does.
47018
47019 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
47020
47021         * lib/regex.h (REG_NOSYS)
47022         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
47023         Define, since POSIX requires it as of 2001.
47024         (_REG_ENOSYS)
47025         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
47026         New private symbol, used to keep the enum signed in all cases.
47027         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
47028         Youngman in
47029         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
47030
47031         * lib/regex_internal.c (re_string_skip_chars, register_state):
47032         (calc_state_hash):
47033         Remove forward decls; no longer needed now that we use prototypes.
47034         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
47035         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
47036         (clean_state_log_if_needed): Likewise.
47037
47038 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
47039
47040         * config/srclist.txt: Add glibc bugs 1231-1233.
47041
47042 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
47043
47044         Fix problems reported by Sam Steingold in
47045         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
47046         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
47047         assumed that reg_errcode_t is a signed type, which is not
47048         necessarily true if _XOPEN_SOURCE is not defined.
47049         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
47050         since some compilers warn about it otherwise.
47051
47052 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
47053
47054         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
47055         (init_word_char, create_initial_state, duplicate_node_closure):
47056         (fetch_token, peek_token_bracket, build_range_exp):
47057         (build_collating_symbol): Remove forward decls; no longer needed
47058         now that we use prototypes.
47059
47060         * lib/regcomp.c:
47061         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
47062         (re_compile_fastmap_iter, regcomp, regerror, regfree):
47063         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
47064         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
47065         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
47066         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
47067         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
47068         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
47069         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
47070         (build_range_exp, build_collating_symbol, parse_bracket_exp):
47071         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
47072         (build_charclass, build_charclass_op, fetch_number, create_tree):
47073         (create_token_tree, mark_opt_subexp, duplicate_tree):
47074         Use prototypes rather than old-style definitions.
47075
47076         * lib/regex_internal.c:
47077         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
47078         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
47079         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
47080         (re_string_reconstruct, re_string_peek_byte_case):
47081         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
47082         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
47083         (re_node_set_init_copy, re_node_set_add_intersect):
47084         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
47085         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
47086         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
47087         (re_acquire_state, re_acquire_state_context, register_state):
47088         (create_ci_newstate, create_cd_newstate, free_state):
47089         Likewise.
47090         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
47091         re_search_2):
47092         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
47093         (re_search_internal, prune_impossible_nodes):
47094         (acquire_init_state_context, check_matching, static):
47095         (check_halt_node_context, check_halt_state_context, proceed_next_node):
47096         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
47097         (update_regs, sift_states_backward, build_sifted_states):
47098         (clean_state_log_if_needed, merge_state_array):
47099         (update_cur_sifted_state, add_epsilon_src_nodes):
47100         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
47101         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
47102         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
47103         (find_recover_state, check_subexp_matching_top, transit_state_mb):
47104         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
47105         (check_arrival, check_arrival_add_next_nodes):
47106         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
47107         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
47108         (check_node_accept_bytes, check_node_accept, extend_buffers):
47109         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
47110         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
47111         (sift_ctx_init):
47112         Likewise.
47113
47114         * lib/regex_internal.h:
47115         (re_string_allocate, re_string_construct, re_string_reconstruct):
47116         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
47117         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
47118         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
47119         (re_string_context_at, re_string_peek_byte_case):
47120         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
47121         is defined, since we now use prototypes always.
47122
47123         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
47124         C89 or better.  All uses removed.
47125
47126 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
47127
47128         * config/srclist.txt: Add glibc bugs 1220-1227.
47129
47130 2005-08-20  Jim Meyering  <jim@meyering.net>
47131
47132         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
47133         of unused local, dfa.
47134
47135 2005-08-20  Bruno Haible  <bruno@clisp.org>
47136
47137         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
47138
47139 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47140
47141         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
47142         (re_node_set_insert_last, re_dfa_add_node):
47143         Rename local variables to avoid GCC shadowing warnings.
47144
47145 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47146
47147         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
47148         [defined lint]: Suppress bogus uninitialized-variable warnings.
47149
47150         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
47151         and let the caller return REG_ESPACE if out of space.  This
47152         removes an uninitialied-variable warning with GCC 4.0.1, and also
47153         avoids taking the address of a local variable.  All callers
47154         changed.
47155
47156 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47157
47158         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
47159         $LIBCSRC/posix/regexec.c.
47160         Add glibc bug 1217 for regcomp.c.
47161
47162 2005-08-19  Jim Meyering  <jim@meyering.net>
47163
47164         * lib/regexec.c (proceed_next_node): Redo local variables to
47165         avoid GCC shadowing warnings.
47166
47167 2005-08-18  Bruno Haible  <bruno@clisp.org>
47168
47169         * lib/strstr.c (strstr): Fix return value in multibyte case.
47170         * lib/strcasestr.c (strcasestr): Likewise.
47171
47172 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
47173
47174         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
47175
47176 2005-08-17  Jim Meyering  <jim@meyering.net>
47177
47178         Make the %s format (seconds since the epoch) work for a negative
47179         number and when used with a zero-padded field width, e.g. %015s.
47180
47181         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
47182         label so that it precedes the code to set `digits'.  Otherwise,
47183         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
47184         print `00-22'.  Now, it prints `-0022', as it should.
47185
47186 2005-08-17  Bruno Haible  <bruno@clisp.org>
47187
47188         * modules/strstr (Files): Add m4/mbrtowc.m4.
47189         (Depends-on): Add mbuiter.
47190
47191 2005-08-17  Bruno Haible  <bruno@clisp.org>
47192
47193         * modules/strcasestr: New file.
47194         * MODULES.html.sh (String handling, based on ANSI C 89): Add
47195         strcasestr.
47196
47197 2005-08-17  Bruno Haible  <bruno@clisp.org>
47198
47199         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
47200
47201 2005-08-17  Bruno Haible  <bruno@clisp.org>
47202
47203         * modules/mbuiter: New file.
47204         * MODULES.html.sh (Extended multibyte and wide character utilities):
47205         Add mbuiter.
47206
47207 2005-08-17  Bruno Haible  <bruno@clisp.org>
47208
47209         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
47210         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
47211
47212 2005-08-17  Bruno Haible  <bruno@clisp.org>
47213
47214         * m4/strcasestr.m4: New file.
47215
47216 2005-08-17  Bruno Haible  <bruno@clisp.org>
47217
47218         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
47219         * lib/strstr.c: Completely rewritten, with multibyte locale support.
47220
47221 2005-08-17  Bruno Haible  <bruno@clisp.org>
47222
47223         * lib/strcasestr.h: New file.
47224         * lib/strcasestr.c: New file.
47225
47226 2005-08-17  Bruno Haible  <bruno@clisp.org>
47227
47228         * lib/strcasecmp.c: Use mbuiter.h.
47229
47230 2005-08-17  Bruno Haible  <bruno@clisp.org>
47231
47232         * lib/mbuiter.h: New file.
47233
47234 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
47235
47236         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
47237         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
47238         and gl_GETOPT are both invoked via different paths (as happens
47239         with GNU tar CVS because it uses both argp and getopt), the former
47240         wins.
47241
47242 2005-08-16  Bruno Haible  <bruno@clisp.org>
47243
47244         * modules/tls: New file.
47245         * MODULES.html.sh (Multithreading): Add tls.
47246
47247 2005-08-16  Bruno Haible  <bruno@clisp.org>
47248
47249         * modules/strnlen1: New file.
47250         * MODULES.html.sh (String handling): Add strnlen1.
47251
47252 2005-08-16  Bruno Haible  <bruno@clisp.org>
47253
47254         * modules/strcase (Files): Add m4/mbrtowc.m4.
47255         (Depends-on): Add strnlen1, mbchar.
47256
47257 2005-08-16  Bruno Haible  <bruno@clisp.org>
47258
47259         * modules/mbiter: New file.
47260         * MODULES.html.sh (Extended multibyte and wide character utilities):
47261         Add mbiter.
47262
47263 2005-08-16  Bruno Haible  <bruno@clisp.org>
47264
47265         * modules/mbfile: New file.
47266         * MODULES.html.sh (Extended multibyte and wide character utilities):
47267         Add mbfile.
47268
47269 2005-08-16  Bruno Haible  <bruno@clisp.org>
47270
47271         * modules/mbchar: New file.
47272         * MODULES.html.sh (Extended multibyte and wide character utilities):
47273         New section.
47274
47275 2005-08-16  Bruno Haible  <bruno@clisp.org>
47276
47277         * m4/tls.m4: New file, from GNU gettext.
47278
47279 2005-08-16  Bruno Haible  <bruno@clisp.org>
47280
47281         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
47282         always.
47283         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
47284
47285 2005-08-16  Bruno Haible  <bruno@clisp.org>
47286
47287         * m4/mbiter.m4: New file.
47288
47289 2005-08-16  Bruno Haible  <bruno@clisp.org>
47290
47291         * m4/mbfile.m4: New file.
47292
47293 2005-08-16  Bruno Haible  <bruno@clisp.org>
47294
47295         * m4/mbchar.m4: New file.
47296
47297 2005-08-16  Bruno Haible  <bruno@clisp.org>
47298
47299         * lib/tls.h: New file, from GNU gettext.
47300         * lib/tls.c: New file, from GNU gettext.
47301
47302 2005-08-16  Bruno Haible  <bruno@clisp.org>
47303
47304         * lib/strnlen1.h: New file.
47305         * lib/strnlen1.c: New file.
47306
47307 2005-08-16  Bruno Haible  <bruno@clisp.org>
47308
47309         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
47310         (mbi_init): Update.
47311         (mbi_avail, mbi_advance): Let the iteration end before the terminating
47312         NUL byte, not after it.
47313
47314 2005-08-16  Bruno Haible  <bruno@clisp.org>
47315
47316         * lib/strcase.h (strcasecmp): Add note in comments.
47317         * lib/strncasecmp.c: Use code from strcasecmp.c.
47318         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
47319         (strcasecmp): Work correctly in multibyte locales.
47320
47321 2005-08-16  Bruno Haible  <bruno@clisp.org>
47322
47323         * lib/mbiter.h: New file.
47324
47325 2005-08-16  Bruno Haible  <bruno@clisp.org>
47326
47327         * lib/mbfile.h: New file.
47328
47329 2005-08-16  Bruno Haible  <bruno@clisp.org>
47330
47331         * lib/mbchar.h: New file.
47332         * lib/mbchar.c: New file.
47333
47334 2005-08-16  Bruno Haible  <bruno@clisp.org>
47335
47336         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
47337         the valid ones. Makes the comparison operations transitive:
47338         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
47339         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
47340
47341 2005-08-15  Simon Josefsson  <jas@extundo.com>
47342
47343         * modules/ssize_t (License): Change to 'unlimited'.
47344
47345         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
47346
47347 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
47348
47349         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
47350         Add comments for each pending glibc patch.
47351
47352 2005-08-15  Bruno Haible  <bruno@clisp.org>
47353
47354         * lib/regex.h (__restrict_arr): Don't define to __restrict if
47355         __cplusplus is defined.
47356
47357 2005-08-14  Jim Meyering  <jim@meyering.net>
47358
47359         Sync from coreutils.
47360
47361         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
47362         Use the hash-table-based cycle-detection code not just when
47363         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
47364         Reported by James Youngman in
47365         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
47366         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
47367         FTS_TIGHT_CYCLE_CHECK.
47368         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
47369         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
47370         once again.
47371         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
47372         * lib/fts.c (fd_safer): Remove decl.
47373         Include fcntl--.h rather than unistd-safer.h
47374         (fts_safe_changedir): Don't call fd_safer; no longer needed
47375         now that we include fcntl--.h.
47376
47377 2005-08-12  Simon Josefsson  <jas@extundo.com>
47378
47379         * modules/getndelim2: Use ssize_t module.
47380         * modules/getnline: Likewise.
47381         * modules/safe-read: Likewise.
47382         * modules/xreadlink: Likewise.
47383
47384         * modules/ssize_t: New file.
47385
47386 2005-08-12  Simon Josefsson  <jas@extundo.com>
47387
47388         * m4/readline.m4: Look for termcap, curses or ncurses if required.
47389
47390 2005-08-12  Simon Josefsson  <jas@extundo.com>
47391
47392         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47393         ssize_t.
47394
47395 2005-08-12  Simon Josefsson  <jas@extundo.com>
47396
47397         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
47398         readline, getdelim and check_version.
47399         (Support for systems lacking ISO C 99: Sizes of integer types):
47400         Add size_max.
47401
47402 2005-08-12  Bruno Haible  <bruno@clisp.org>
47403
47404         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
47405
47406 2005-08-11  Simon Josefsson  <jas@extundo.com>
47407
47408         * modules/readline: New file.
47409
47410         * modules/strnlen (Files): Add strnlen.h.
47411
47412 2005-08-11  Simon Josefsson  <jas@extundo.com>
47413
47414         * m4/readline.m4: New file.
47415
47416 2005-08-11  Simon Josefsson  <jas@extundo.com>
47417
47418         * lib/readline.h, readline.c: New file.
47419
47420 2005-08-11  Simon Josefsson  <jas@extundo.com>
47421
47422         * doc/gnulib.texi (Initial import, Finishing touches): Mention
47423         gl_AVOID.
47424
47425 2005-08-11  Bruno Haible  <bruno@clisp.org>
47426
47427         * lib/strnlen.h (strnlen): Change parameter name to match comment.
47428
47429 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
47430
47431         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
47432
47433 2005-08-10  Simon Josefsson  <jas@extundo.com>
47434
47435         * tests/test-iconvme.c: New file.
47436
47437 2005-08-10  Simon Josefsson  <jas@extundo.com>
47438
47439         * m4/strnlen.m4: New file.
47440
47441         * m4/strndup.m4: Don't check for strnlen declaration, done in
47442         strnlen.m4.
47443
47444 2005-08-10  Simon Josefsson  <jas@extundo.com>
47445
47446         * lib/strndup.c: Use strnlen.h.
47447
47448         * lib/strnlen.h: New file.
47449
47450 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
47451
47452         * README: Typos.
47453
47454 2005-08-02  Simon Josefsson  <jas@extundo.com>
47455
47456         * modules/readline: New file.
47457
47458 2005-08-02  Simon Josefsson  <jas@extundo.com>
47459
47460         * modules/getdelim: New file.
47461
47462         * modules/getline: Rewrite, don't use getndelim2.
47463
47464 2005-08-02  Simon Josefsson  <jas@extundo.com>
47465
47466         * m4/getline.m4: Separate out getdelim stuff into separate module.
47467
47468         * m4/getdelim.m4: New file.
47469
47470 2005-08-02  Simon Josefsson  <jas@extundo.com>
47471
47472         * lib/getline.h, getline.c: Rewrite.
47473
47474         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
47475
47476 2005-07-31  Bruno Haible  <bruno@clisp.org>
47477
47478         * lib/lock.h (gl_lock_initializer): New macro.
47479         (gl_lock_define_initialized): Use it.
47480         (gl_rwlock_initializer): New macro.
47481         (gl_rwlock_define_initialized): Use it.
47482         (gl_recursive_lock_initializer): New macro.
47483         (gl_recursive_lock_define_initialized): Use it.
47484
47485 2005-07-30  Karl Berry  <karl@gnu.org>
47486
47487         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
47488         Report from Ben Pfaff, regarding getopt.
47489
47490 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
47491
47492         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
47493         normal way.
47494         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
47495         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
47496         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
47497         (gl_GETOPT): Use the new macros.  Most of the implementation
47498         is moved to the new macros.  This is for programs like Emacs
47499         that don't want all the functionality of gl_GETOPT.
47500
47501 2005-07-26  Bruno Haible  <bruno@clisp.org>
47502
47503         * m4/lock.m4: Update from GNU gettext.
47504
47505 2005-07-26  Bruno Haible  <bruno@clisp.org>
47506
47507         * lib/lock.h: Update from GNU gettext.
47508         * lib/lock.c: Update from GNU gettext.
47509
47510 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
47511
47512         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
47513         obsolescent AC_TRY_RUN.  Include the default includes files, for
47514         'exit'.
47515
47516 2005-07-24  Bruno Haible  <bruno@clisp.org>
47517
47518         * modules/visibility: New file.
47519         * MODULES.html.sh (Misc): Add visibility.
47520
47521 2005-07-24  Bruno Haible  <bruno@clisp.org>
47522
47523         * m4/visibility.m4: New file.
47524
47525 2005-07-24  Bruno Haible  <bruno@clisp.org>
47526
47527         * doc/visibility.texi: New file.
47528
47529 2005-07-22  Bruno Haible  <bruno@clisp.org>
47530
47531         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
47532         $(ALLOCA_H), redundant through BUILT_SOURCES.
47533         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
47534         redundant through BUILT_SOURCES.
47535         * modules/byteswap (Makefile.am): Remove explicit dependency on
47536         $(BYTESWAP_H), redundant through BUILT_SOURCES.
47537         * modules/fnmatch (Makefile.am): Remove explicit dependency on
47538         $(FNMATCH_H), redundant through BUILT_SOURCES.
47539         * modules/getopt (Makefile.am): Remove explicit dependency on
47540         $(GETOPT_H), redundant through BUILT_SOURCES.
47541         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
47542         redundant through BUILT_SOURCES.
47543         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
47544         redundant through BUILT_SOURCES.
47545         * modules/stdbool (Makefile.am): Remove explicit dependency on
47546         $(STDBOOL_H), redundant through BUILT_SOURCES.
47547         * modules/stdint (Makefile.am): Remove explicit dependency on
47548         $(STDINT_H), redundant through BUILT_SOURCES.
47549         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
47550         Remove explicit dependency on $(SYSEXITS_H).
47551         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
47552
47553 2005-07-18  Simon Josefsson  <jas@extundo.com>
47554
47555         * lib/check-version.c (check_version): Accept identical versions too.
47556
47557 2005-07-18  Bruno Haible  <bruno@clisp.org>
47558
47559         * modules/lock: New file.
47560         * MODULES.html.sh (Multithreading): New section.
47561
47562 2005-07-18  Bruno Haible  <bruno@clisp.org>
47563
47564         * m4/lock.m4: New file, from GNU gettext.
47565
47566 2005-07-18  Bruno Haible  <bruno@clisp.org>
47567
47568         * lib/lock.h: New file, from GNU gettext.
47569         * lib/lock.c: New file, from GNU gettext.
47570
47571 2005-07-18  Bruno Haible  <bruno@clisp.org>
47572
47573         * lib/lock.h (gl_once_t): New type.
47574         (gl_once_define, gl_once): New macros.
47575         * lib/lock.c (fresh_once): New variable.
47576         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
47577         functions.
47578
47579 2005-07-16  Simon Josefsson  <jas@extundo.com>
47580
47581         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
47582         workaround, suggested by Bruno.
47583
47584 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
47585
47586         * modules/xalloc (Depends-on): Add xalloc-die.
47587         * modules/xvasprintf (Depends-on): Add xalloc-die.
47588
47589 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
47590
47591         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
47592         with a minor change.
47593
47594 2005-07-15  Bruno Haible  <bruno@clisp.org>
47595
47596         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
47597         When using lib/poll.c, define poll as rpl_poll.
47598
47599 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
47600
47601         * modules/argp (Depends-on): Remove unlocked-io.
47602
47603 2005-07-14  Derek Price  <derek@ximbiot.com>
47604
47605         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
47606         for glob symlink bug.
47607
47608 2005-07-14  Bruno Haible  <bruno@clisp.org>
47609
47610         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
47611         Instead, test for *_unlocked function declarations directly.
47612
47613 2005-07-11  Simon Josefsson  <jas@extundo.com>
47614
47615         * modules/size_max: New file.
47616
47617         * modules/xsize: Depend on size_max module for size_max.m4.
47618
47619 2005-07-11  Simon Josefsson  <jas@extundo.com>
47620
47621         * lib/size_max.h: New file.
47622
47623 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
47624
47625         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
47626         copyright symbol and the year.
47627         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
47628         (version_etc_va): Use parameterized copyright notice.
47629         Reword to conform to the current GNU coding standards.
47630
47631 2005-07-11  Karl Berry  <karl@gnu.org>
47632
47633         * doc/gnulib.texi (Quoting): new node.
47634         (Initial import): more info, from Patrice.
47635
47636 2005-07-11  Bruno Haible  <bruno@clisp.org>
47637
47638         * gnulib-tool (func_usage): Document option --avoid.
47639         (Command line options): Handle --avoid.
47640         (func_acceptable): New function.
47641         (func_modules_transitive_closure): Use it.
47642
47643 2005-07-11  Bruno Haible  <bruno@clisp.org>
47644
47645         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
47646         Reported by Jim Meyering.
47647
47648 2005-07-10  Bruno Haible  <bruno@clisp.org>
47649
47650         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
47651         Needed when size_t is smaller than 'unsigned int'.
47652         Reported by Paul Eggert.
47653
47654 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
47655
47656         * modules/argp (Depends-on): Add unlocked-io
47657
47658 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
47659
47660         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
47661         block of defines.
47662
47663 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
47664
47665         * config/srclist.txt: Comment out regcomp.c, since we have a porting
47666         fix now.
47667
47668 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
47669         and Paul Eggert  <eggert@cs.ucla.edu>
47670
47671         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
47672         in wint_t, not wchar_t.  Remove now-unnecessary cast.
47673
47674 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
47675
47676         * modules/regex (Files): Add lib/regex_internal.c,
47677         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
47678         (Depends-on): Add extensions.
47679         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
47680
47681 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
47682
47683         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
47684         pathconf.
47685         * m4/same.m4 (gl_SAME): Likewise.
47686         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
47687
47688         * m4/regex.m4: Adjust to new libc regex implementation.
47689         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
47690         all the .c and .h parts of (the new) regex.
47691         Quote the m4 stuff better.
47692         Check for RE_ICASE bug of old gnulib.
47693         Check for REG_STARTEND of recent libc.
47694         Rename local variables from jm_* to gl_*.
47695         Quote operand of "test -f".
47696         Say "recent enough" version of libc, not "version 2".
47697         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
47698         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
47699         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
47700         Remove check for btowc, isascii.
47701         Require AM_LANGINFO_CODESET.
47702
47703 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
47704
47705         * lib/regex.c, regex.h: Sync from libc.
47706         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
47707         * lib/regexec.c:
47708         New files, synced from libc, except that regex_internal.h
47709         currently has a small porting fix.
47710
47711 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
47712
47713         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
47714         regex_internal.c, regexec.c.
47715         Add regex_internal.h too, but as a comment, since the libc version
47716         is currently broken in gnulib mode.
47717
47718 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47719
47720         Support programs like Emacs that use gnulib but not gettext.
47721         * MODULES.html.sh (Internationalization functions): Add gettext-h.
47722         * modules/gettext-h: New file.
47723         * modules/gettext (Files): Remove lib/gettext.h.
47724         (Depends-on): Add gettext-h.
47725         (Makefile.am): Remove lib_SOURCES.
47726         * modules/argmatch, modules/c-stack, modules/closeout:
47727         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
47728         * modules/execute, modules/file-type, modules/getaddrinfo:
47729         * modules/getopt, modules/human, modules/javacomp:
47730         * modules/javaexec, modules/mkdir-p, modules/obstack:
47731         * modules/openat, modules/pagealign_alloc, modules/pipe:
47732         * modules/quotearg, modules/regex, modules/rpmatch:
47733         * modules/unicodeio, modules/userspec, modules/version-etc:
47734         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
47735         * modules/xsetenv:
47736         Depend on gettext-h, not gettext.
47737
47738 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
47739
47740         * gnulib-tool (func_import): Add support for 'public domain' license.
47741         * modules/alloca, modules/atexit, modules/memmove:
47742         Now public domain, not GPL.
47743         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
47744         * modules/realloc, modules/strerror, modules/strtod:
47745         Now LGPL, not GPL.
47746
47747 2005-07-05  Bruno Haible  <bruno@clisp.org>
47748
47749         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
47750         autoconf CVS. Needed for mingw.
47751
47752 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47753
47754         Remove the dependency of the strftime module on the tzset module.
47755         * modules/strftime (Depends-on): Remove dependency on tzset.
47756
47757 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47758
47759         Remove the dependency of the strftime module on the tzset module.
47760         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
47761         gl_FUNC_TZSET_CLOBBER.
47762
47763 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47764
47765         Remove the dependency of the strftime module on the tzset module.
47766         * lib/strftime.c (my_strftime)
47767         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
47768         Copy the input structure, to work around some of the bug with
47769         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
47770         Solaris releases, you should also use the tzset module, but we won't
47771         require it as a dependency any more since we don't want LGPLed code
47772         to depend on GPLed code.
47773
47774 2005-07-02  Jim Meyering  <jim@meyering.net>
47775
47776         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
47777         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
47778         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
47779         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
47780
47781 2005-07-02  Jim Meyering  <jim@meyering.net>
47782
47783         * lib/backupfile.c (backup_args): Change a `0' to NULL.
47784
47785 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47786
47787         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
47788         declares only 'struct timespec;' (!).
47789
47790 2005-07-01  Jim Meyering  <jim@meyering.net>
47791
47792         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
47793         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
47794         * lib/save-cwd.c, tempname.c:
47795         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
47796         and don't include <sys/file.h>).
47797
47798 2005-06-29  Jim Meyering  <jim@meyering.net>
47799
47800         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
47801         type name.  Use the variable name instead.
47802         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
47803         Likewise.
47804
47805 2005-06-28  Simon Josefsson  <jas@extundo.com>
47806
47807         * modules/check-version (Files): Add check-version.m4.
47808
47809 2005-06-28  Simon Josefsson  <jas@extundo.com>
47810
47811         * m4/check-version.m4: New file, suggested by Jim Meyering
47812         <jim@meyering.net>.
47813
47814 2005-06-28  Simon Josefsson  <jas@extundo.com>
47815
47816         * lib/check-version.h, lib/check-version.c: New files.
47817
47818 2005-06-28  Simon Josefsson  <jas@extundo.com>
47819
47820         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
47821         collision with global variable.  Better indentation.  Don't
47822         increment buffer pointer beyond buffer end.  Based on comments
47823         from Paul Eggert <eggert@cs.ucla.edu>.
47824
47825         * lib/base64.h: Indent.
47826
47827 2005-06-28  Simon Josefsson  <jas@extundo.com>
47828
47829         * doc/gnulib.texi (Library version handling): New section.
47830
47831 2005-06-28  Jim Meyering  <jim@meyering.net>
47832
47833         * check-module (find_included_lib_files): Hard-code another
47834         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
47835         but modules/fts-lgpl (correctly) does not list those files.
47836
47837         * modules/canonicalize (Files): Add lib/pathmax.h.
47838
47839 2005-06-25  Simon Josefsson  <jas@extundo.com>
47840
47841         * modules/check-version: New file.
47842
47843 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
47844
47845         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
47846         initializer of struct addrinfo, as an indication that we don't
47847         care how many members the structure has.
47848
47849 2005-06-24  Derek Price  <derek@ximbiot.com>
47850         and Bruno Haible  <bruno@clisp.org>
47851
47852         Remove stat module & update lstat.
47853         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
47854         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
47855         * m4/stat.m4: Remove this file.
47856
47857 2005-06-24  Derek Price  <derek@ximbiot.com>
47858         and Bruno Haible  <bruno@clisp.org>
47859
47860         Remove stat module & update lstat.
47861         * lib/stat.c: Remove this file...
47862         (slash_aware_lstat): ...moving this content and its support...
47863         * lib/lstat.c (rpl_lstat): ...into here.
47864         * lib/lstat.h: New file.
47865
47866 2005-06-24  Derek Price  <derek@ximbiot.com>
47867         and Bruno Haible  <bruno@clisp.org>
47868
47869         Remove stat module & update lstat.
47870         * config/srclist.txt (libc sources): Remove stat.
47871
47872 2005-06-24  Derek Price  <derek@ximbiot.com>
47873         and Bruno Haible  <bruno@clisp.org>
47874
47875         Remove stat module & update lstat.
47876         * MODULES.html.sh (stat): Remove.
47877         * MODULES.html: Regenerated.
47878         * modules/lstat (Description): Correct function name.
47879         (Files): Add "lstat.h".
47880         (Depends-on): Remove stat, add xalloc, stat-macros.
47881         * modules/stat: Remove this file.
47882         (Include): Add "lstat.h", remove <sys/stat.h>.
47883
47884 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
47885
47886         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
47887         (ranged_convert): Don't save conversion in a temporary struct.
47888         This causes a warning with GCC 4.0.0, and anyway in the typical
47889         case it's not worth the extra 100 bytes or so of code.
47890         (ranged_convert, __mktime_internal): When calling a function via a
47891         pointer P, use P () rather than (*P) (), as we now assume C89 or
47892         better.
47893
47894 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47895
47896         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
47897         "who -r" failed to give output.  Problem reported by Tim Waugh.
47898
47899         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
47900         (xcalloc): Use it to avoid needless tests.
47901         Problem reported by Jim Meyering.
47902
47903 2005-06-20  Derek Price  <derek@ximbiot.com>
47904
47905         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
47906         unnecessary for Autoconfs > 2.59c.
47907
47908 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47909
47910         * lib/argp.h (__option_is_short): Check upper limit of
47911         __key. Isprint() requires its argument to have the value
47912         of an unsigned char or EOF.
47913
47914 2005-06-16  Jim Meyering  <jim@meyering.net>
47915
47916         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
47917         when either N or S is zero.
47918
47919 2005-06-16  Derek Price  <derek@ximbiot.com>
47920
47921         * m4/bison.m4: Declare YACC & YFLAGS precious.
47922
47923 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
47924
47925         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
47926         multibyte string or pattern, fall back on unibyte matching.
47927         Problem reported by James Youngman.
47928
47929 2005-06-08  Bruno Haible  <bruno@clisp.org>
47930
47931         * modules/csharpcomp: New file.
47932         * MODULES.html.sh (C#): Add csharpcomp.
47933
47934 2005-06-08  Bruno Haible  <bruno@clisp.org>
47935
47936         * m4/csharpcomp.m4: New file, from GNU gettext.
47937
47938 2005-06-08  Bruno Haible  <bruno@clisp.org>
47939
47940         * lib/csharpcomp.h: New file, from GNU gettext.
47941         * lib/csharpcomp.c: New file, from GNU gettext.
47942         * lib/csharpcomp.sh.in: New file, from GNU gettext.
47943
47944 2005-06-08  Bruno Haible  <bruno@clisp.org>
47945
47946         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
47947         warning on mingw.
47948
47949 2005-06-07  Derek Price  <derek@ximbiot.com>
47950
47951         Sync from CVS.
47952         * lib/glob_.h: Indent nested #ifdef.
47953
47954 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
47955
47956         Sync from coreutils.
47957         Use "file name" when talking about file names, instead of "filename"
47958         or "path", as per the GNU coding standards.
47959         * lib/mkdir-p.c: Renamed from makepath.c.
47960         (make_dir_parents): Renamed from make_path.  All callers changed.
47961         * lib/mkdir-p.h: Likewise.  All includers changed.
47962         * lib/filenamecat.c: Renamed from path-concat.c.
47963         (file_name_concat): Renamed from path_concat.  All callers changed.
47964         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
47965         * lib/filenamecat.h: Likewise.  All includers changed.
47966         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
47967         in comments or local variable names.
47968         * lib/basename.c: Likewise.
47969         * lib/canonicalize.c, canonicalize.h: Likewise.
47970         * lib/dirname.c, dirname.h: Likewise.
47971         * lib/euidaccess.c: Likewise.
47972         * lib/exclude.c: Likewise
47973         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
47974         * lib/fsusage.c, fsuage.h: Likewise.
47975         * lib/fts.c, fts_.h: Likewise.
47976         * lib/getcwd.c: Likewise.
47977         * lib/getloadavg.c: Likewise.
47978         * lib/mkstemp.c: Likewise.
47979         * lib/mountlist.c, mountlist.h: Likewise.
47980         * lib/openat.c, openat.h: Likewise.
47981         * lib/readlink-stub.c: Likewise.
47982         * lib/readutmp.c, readutmp.h: Likewise.
47983         * lib/rename.c: Likewise.
47984         * lib/rmdir.c: Likewise.
47985         * lib/same.c: Likewise.
47986         * lib/savedir.c: Likewise.
47987         * lib/stripslash.c: Likewise.
47988         * lib/tempname.c: Likewise.
47989         * lib/xreadlink.c: Likewise.
47990         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
47991         All uses changed.
47992         * lib/exclude.h: Likewise.
47993
47994         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
47995         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
47996         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
47997         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
47998         * lib/pathmax.h: Include <limits.h> unconditionally, since other
47999         files have been getting away with it for years (MORE/BSD 4.3
48000         is extinct now).
48001         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
48002         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
48003
48004         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
48005         Define to 256, not 255, as per modern POSIX.
48006
48007 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
48008
48009         Sync from coreutils.
48010         Use "file name" when talking about file names, instead of "filename"
48011         or "path", as per the GNU coding standards.
48012         * MODULES.html.sh: mkdir-p renamed from makepath.
48013         filenamecat renamed from path-concat.
48014         * modules/filenamecat: Renamed from modules/path-concat.
48015         (Files): filenamecat.h and filenamecat.c renamed from
48016         path-concat.h and path-concat.c.
48017         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
48018         (Include): filenamecat.h, not path-concat.h.
48019         * modules/mkdir-p: Renamed from modules/makepath.
48020         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
48021         makepath.c.
48022         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
48023         (Include): mkdir-p.h, not makepath.h.
48024
48025 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
48026
48027         Sync from coreutils.
48028         * m4/mkdir-p.m4: Renamed from makepath.m4.
48029         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
48030         Rename files from makepath.c to mkdir-p.c, and from
48031         makepath.h to mkdir-p.h.
48032         * m4/filenamecat.m4: Renamed from path-concat.m4.
48033         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
48034         Rename files from path-concat.c to filenamecat.c,
48035         and from path-concat.h to filenamecat.h.
48036         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
48037         "file name" in local variables or comments.
48038         * m4/rename.m4: Likewise.
48039
48040 2005-06-01  Bruno Haible  <bruno@clisp.org>
48041
48042         * modules/csharpexec: New file.
48043         * MODULES.html.sh (C#): New section.
48044
48045 2005-06-01  Bruno Haible  <bruno@clisp.org>
48046
48047         * m4/csharp.m4: New file, from GNU gettext.
48048         * m4/csharpexec.m4: New file, from GNU gettext.
48049
48050 2005-06-01  Bruno Haible  <bruno@clisp.org>
48051
48052         * lib/csharpexec.h: New file, from GNU gettext.
48053         * lib/csharpexec.c: New file, from GNU gettext.
48054         * lib/csharpexec.sh.in: New file, from GNU gettext.
48055
48056 2005-05-31  Derek Price  <derek@ximbiot.com>
48057             Paul Eggert  <eggert@cs.ucla.edu>
48058
48059         Sync from cvs.
48060         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
48061
48062 2005-05-31  Derek Price  <derek@ximbiot.com>
48063             Paul Eggert  <eggert@cs.ucla.edu>
48064
48065         Sync from cvs.
48066         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
48067
48068 2005-05-29  Derek Price  <derek@ximbiot.com>
48069
48070         * config/srclist.txt (glob_.h, glob.c): Add these files.
48071
48072 2005-05-29  Derek Price  <derek@ximbiot.com>
48073
48074         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
48075         * modules/glob: New file.
48076         * modules/getlogin_r: Add link to POSIX spec in description.
48077
48078 2005-05-29  Derek Price  <derek@ximbiot.com>
48079             Paul Eggert  <eggert@cs.ucla.edu>
48080
48081         * m4/glob.m4: New file.
48082
48083 2005-05-29  Derek Price  <derek@ximbiot.com>
48084             Paul Eggert  <eggert@cs.ucla.edu>
48085
48086         * lib/glob_.h, lib/glob.c: New files.
48087
48088 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
48089
48090         * modules/fts (Files): Remove m4/inttypes-pri.m4.
48091         * modules/fts-lgpl (Depends-on): Remove gettext.
48092
48093 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
48094
48095         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
48096         and don't require gt_INTTYPES_PRI.
48097
48098 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
48099
48100         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
48101
48102         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
48103         the configuration hassle isn't worth it.
48104         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
48105         (LONGEST_MODIFIER, PRIuMAX): Remove.
48106
48107 2005-05-27  Bruno Haible  <bruno@clisp.org>
48108
48109         * lib/getlogin_r.h: Remove second include of <stddef.h>.
48110
48111 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
48112
48113         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
48114         _POSIX_PTHREAD_SEMANTICS for Solaris.
48115
48116 2005-05-25  Derek Price  <derek@ximbiot.com>
48117
48118         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
48119
48120 2005-05-25  Derek Price  <derek@ximbiot.com>
48121             Paul Eggert  <eggert@cs.ucla.edu>
48122
48123         * modules/getlogin_r, m4/getlogin_r.m4: New files.
48124         * lib/getlogin_r.c, getlogin_r.h: New files.
48125
48126 2005-05-25  Bruno Haible  <bruno@clisp.org>
48127             Derek Price  <derek@ximbiot.com>
48128
48129         * lib/getlogin_r.h: Simplify API documentation.
48130
48131 2005-05-23  Derek Price  <derek@ximbiot.com>
48132
48133         * modules/minmax (Files): Add m4/minmax.m4.
48134         (configure.ac): Add gl_MINMAX.
48135
48136 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
48137
48138         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
48139         so that unistd-safer.h (GPL'ed code) need not be included.
48140
48141 2005-05-22  Bruno Haible  <bruno@clisp.org>
48142
48143         * m4/minmax.m4: New file.
48144         Based on a patch by Derek Price <derek@ximbiot.com>.
48145
48146 2005-05-22  Bruno Haible  <bruno@clisp.org>
48147
48148         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
48149         (INT64_MIN): Fix definition.
48150         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
48151
48152         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
48153         NEED_SIGNED_INT_TYPES.
48154
48155         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
48156         HAVE_SYSTEM_INTTYPES.
48157
48158 2005-05-22  Bruno Haible  <bruno@clisp.org>
48159
48160         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
48161         Also include <sys/param.h> if it defines MIN, MAX.
48162         Based on a patch by Derek Price <derek@ximbiot.com>.
48163
48164 2005-05-21  Jim Meyering  <jim@meyering.net>
48165
48166         * modules/fts (Files): Add m4/inttypes-pri.m4.
48167         (Depends-on): Add lstat and remove gettext.  Alphabetize.
48168
48169 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48170
48171         New fts module.
48172         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
48173         (setup_dir, free_dir): New functions.
48174         (enter_dir, leave_dir): Define trivial
48175         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
48176         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
48177         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
48178         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
48179         Move to fts-cycle.c.
48180         (fts_open): Use setup_dir.
48181         (fts_close): Use free_dir.
48182         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
48183         This adds a label and some gotos, but the alternatives were messier.
48184         Check for memory allocation failure when entering a dir.
48185         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
48186         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
48187         (FTS): New member fts_cycle, that is a union that contains the
48188         old active_dir_ht and cycle_state.  All uses changed to mention
48189         fts_cycle.ht and fts_cycle.state.
48190         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
48191         fts.c, with the following changes:
48192         (setup_dir, free_dir): New functions.
48193         (enter_dir): Now returns bool.  Return true if successful, false
48194         if memory exhausted.  All callers changed.
48195         Do not bother partly cleaning up on
48196         memory allocation failure; that is free_dir's job.
48197         However, free ad if hash_insert fails, to avoid memory leak.
48198         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
48199         fts->fts_options to see which union member to use.
48200
48201 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48202
48203         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
48204         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
48205
48206 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48207
48208         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
48209
48210 2005-05-20  Jim Meyering  <jim@meyering.net>
48211
48212         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
48213         Now a macro, to pacify GCC.
48214
48215 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
48216
48217         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
48218         of -1.
48219
48220 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
48221
48222         * lib/chown.c (rpl_chown): Return -1 on failure.
48223
48224 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
48225
48226         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
48227         Don't check for stddef.h.
48228         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
48229         don't use its results.
48230         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
48231         since we include them unconditionally.  Don't require
48232         AM_STDBOOL_H, since stdbool is a prerequisite.
48233         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
48234         since we assume C89 or better.
48235         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
48236         as we don't use their results.
48237         Don't check for fchdir, memmove, memset, strrchr, as we use
48238         them unconditionally.
48239         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
48240         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
48241
48242 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
48243
48244         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
48245         Include <stddef.h> unconditionally, since we assume C89 now.
48246         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
48247         * lib/fts.c: Include fts_.h first, to check interface.
48248         Do not include intprops.h; no longer needed.
48249         Include cycle-check.h and hash.h, since fts_.h no longer does.
48250         Remove unnecessary casts of closedir to void.
48251         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
48252         decide whether to decrement nlinks.
48253         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
48254         (FTS): Use struct hash_table * instead of Hash_table, so that
48255         we no longer need to include hash.h here.
48256
48257 2005-05-18  Jim Meyering  <jim@meyering.net>
48258
48259         * modules/dirfd (License): Change to LGPL.  Most of the code
48260         is already in the public domain.
48261
48262 2005-05-18  Jim Meyering  <jim@meyering.net>
48263
48264         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
48265         Reported by Yoann Vandoorselaere.
48266
48267 2005-05-17  Jim Meyering  <jim@meyering.net>
48268
48269         * m4/fts.m4: New file, from coreutils.
48270
48271 2005-05-17  Jim Meyering  <jim@meyering.net>
48272
48273         * lib/fts.c, lib/fts_.h: New files, from coreutils.
48274
48275 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
48276
48277         Sync from coreutils.
48278         * m4/unlinkdir.m4: New file.
48279
48280 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
48281
48282         Sync from coreutils.
48283         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
48284         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
48285         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
48286         White space changes only.
48287         * lib/makepath.c (make_path): Port to hosts where leading "//" is
48288         special.
48289         * lib/yesno.c: Include getline.h, not ctype.h.
48290         (yesno): Don't remove leading white space; POSIX doesn't allow it.
48291         Use getline to remove arbitrary restriction on response length.
48292
48293 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
48294
48295         * config/srclist-update: Spell out "Street" in FSF postal
48296         mail address; this is the style the FSF seems to prefer.
48297
48298         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
48299         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
48300         this updates FSF postal mail address.
48301
48302         Sync from coreutils.
48303         * modules/unlinkdir: New file.
48304         * modules/yesno (Depends-on): Add getline.
48305         * MODULES.html.sh (File system functions): Add unlinkdir.
48306
48307 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48308
48309         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
48310         lib/strsep.h:
48311         Change the initial comment to refer to GPL, not LGPL.
48312         gnulib-tool will change it to LGPL as needed.
48313
48314         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
48315         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
48316         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
48317         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
48318         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
48319         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
48320         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
48321         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
48322         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
48323         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
48324         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
48325         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
48326         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
48327         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
48328         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
48329         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
48330         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
48331         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
48332         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
48333         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
48334         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
48335         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
48336         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
48337         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
48338         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
48339         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
48340         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
48341         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
48342         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
48343         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
48344         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
48345         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
48346         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
48347         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
48348         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
48349         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
48350         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
48351         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
48352         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
48353         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
48354         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
48355         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
48356         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
48357         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
48358         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
48359         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
48360         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
48361         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
48362         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
48363         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
48364         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48365         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
48366         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
48367         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
48368         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
48369         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
48370         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
48371         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
48372         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
48373         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
48374         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
48375         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
48376         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
48377         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
48378         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
48379         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
48380         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
48381         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
48382         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
48383         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
48384         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
48385         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
48386         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
48387         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
48388         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
48389         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
48390         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
48391         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
48392         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
48393         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
48394         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
48395         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
48396         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
48397         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
48398         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
48399         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
48400         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
48401         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
48402         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
48403         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
48404         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
48405         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
48406         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
48407         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
48408         lib/yesno.c, lib/yesno.h:
48409         Update FSF postal mail address.
48410
48411 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48412
48413         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
48414         tests/test-memmem.c, tests/test-stpncpy.c:
48415         Update FSF postal mail address.
48416
48417 2005-05-13  Bruno Haible  <bruno@clisp.org>
48418
48419         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
48420         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
48421         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
48422         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
48423         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
48424         Add support for 64-bit integers in the MSVC compiler.
48425
48426 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
48427
48428         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
48429
48430 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
48431
48432         * gnulib-tool (func_import): Sort and uniquify recommended includes.
48433
48434 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
48435
48436         * doc/getdate.texi (General date syntax): Don't say that date
48437         date --iso-8601=ns generates acceptable dates; it doesn't yet.
48438         Problem reported by Nic Ferrier.
48439
48440 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
48441
48442         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
48443         specified in ai_socktype. Fix invalid ai_protocol
48444         check. ai_protocol is usually set to 0 or depending on
48445         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
48446         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
48447         ai_socktype / ai_protocol in the returned addrinfo structure.
48448
48449 2005-05-10  Simon Josefsson  <jas@extundo.com>
48450
48451         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
48452         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
48453
48454 2005-05-10  Karl Berry  <karl@gnu.org>
48455
48456         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
48457         (from http://www.gnu.org/licenses).
48458         * doc/COPYING.LIB: also rename to COPYING.LESSER.
48459         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
48460         fdl.texi suffices.
48461
48462 2005-05-10  Karl Berry  <karl@gnu.org>
48463
48464         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
48465         (COPYING.DOC): remove.
48466
48467         * config/srclist-update: new FSF address.
48468
48469 2005-05-10  Derek Price  <derek@ximbiot.com>
48470
48471         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
48472         possible.
48473
48474 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
48475             Bruno Haible  <bruno@clisp.org>
48476
48477         * modules/inet_ntop: New file.
48478         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48479         inet_ntop.
48480
48481 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
48482             Bruno Haible  <bruno@clisp.org>
48483
48484         * m4/inet_ntop.m4: New file.
48485
48486 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
48487             Bruno Haible  <bruno@clisp.org>
48488
48489         * lib/inet_ntop.h: New file.
48490         * lib/inet_ntop.c: New file, from glibc with modifications.
48491
48492 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
48493
48494         * modules/time_r (License): Change to LGPL.
48495         * modules/extensions (License): Change to LGPL.  Actually,
48496         the license is more permissive than that, but currently gnulib-tool
48497         doesn't know how to handle more-permissive licenses.
48498
48499         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
48500         Problem reported by Dave Love.
48501
48502 2005-05-08  Jim Meyering  <jim@meyering.net>
48503
48504         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
48505         blank.
48506
48507 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48508
48509         * modules/argmatch (Depends-on): Add stdbool.
48510         * modules/backupfile (Depends-on): Likewise.
48511         * modules/chdir-long (Depends-on): Likewise.
48512         * modules/closeout (Depends-on): Likewise.
48513         * modules/cycle-check (Depends-on): Likewise.
48514         * modules/dirname (Depends-on): Likewise.
48515         * modules/fnmatch (Depends-on): Likewise.
48516         * modules/fsusage (Depends-on): Likewise.
48517         * modules/fwriteerror (Depends-on): Likewise.
48518         * modules/getcwd (Depends-on): Likewise.
48519         * modules/getloadavg (Depends-on): Likewise.
48520         * modules/hard-locale (Depends-on): Likewise.
48521         * modules/makepath (Depends-on): Likewise.
48522         * modules/mountlist (Depends-on): Likewise.
48523         * modules/nanosleep (Depends-on): Likewise.
48524         * modules/posixtm (Depends-on): Likewise.
48525         * modules/quotearg (Depends-on): Likewise.
48526         * modules/readtokens (Depends-on): Likewise.
48527         * modules/readtokens0 (Depends-on): Likewise.
48528         * modules/readutmp (Depends-on): Likewise.
48529         * modules/save-cwd (Depends-on): Likewise.
48530         * modules/strftime (Depends-on): Likewise.
48531         * modules/userspec (Depends-on): Likewise.
48532         * modules/utimecmp (Depends-on): Likewise.
48533         * modules/xgetcwd (Depends-on): Likewise.
48534         * modules/xnanosleep (Depends-on): Likewise.
48535         * modules/xstrtod (Depends-on): Likewise.
48536         * modules/yesno (Depends-on): Likewise.
48537
48538 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
48539
48540         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
48541         needless checks.
48542
48543 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
48544
48545         Merge from coreutils.  Among other things,
48546         add bulletproofing for cases where stdin, stdout, or stderr are closed.
48547         * lib/fd-safer.c: New file.
48548         * lib/fcntl-safer.h, open-safer.c: Remove.
48549         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
48550         * lib/dup-safer.c: Include unistd-safer.h first.
48551         Don't include errno.h.
48552         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
48553         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
48554         * lib/file-type.c: Rely on file-type.h change.
48555         * lib/getloadavg.c: Include unistd-safer.h.
48556         (getloadavg): Use safer open.
48557         * lib/getusershell.c: Include "stdio-safer.h".
48558         (getusershell): Use safer fopen.
48559         * lib/long-options.c (long_options): Use NULL rather than 0.
48560         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
48561         'free'.
48562         * lib/modechange.c: Likewise.
48563         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
48564         (MODE_DONE): New constant.
48565         (struct mode_change): Remove 'next' member.
48566         (make_node_op_equals): New function; like the old one of the
48567         same name, except it allocates an array.
48568         (mode_compile, mode_create_from_ref): Use it.
48569         (mode_compile): Allocate result as an array, not a linked list.
48570         Parse octal string ourself, so that we catch mistakes like "+0".
48571         (mode_adjust): Arg is an array, not a linked list.
48572         * lib/modechange.c: Include stat-macros.h, xalloc.h.
48573         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
48574         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
48575         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
48576         Remove.  This is now stat-macros.h's job.
48577         (talloc): Remove.  All callers replaced by xalloc, so that
48578         our invokers don't have to worry about reporting memory failures.
48579         (make_node_op_equals): Remove.
48580         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
48581         New constants.
48582         (struct mode_change): Moved here from modechange.h.
48583         (mode_append_entry): Remove.
48584         (mode_compile): Remove MASKED_OPS arg, since it encouraged
48585         apps to have incorrect behavior.  Use simpler algorithm for head
48586         and tail.  Don't futz with umask; that's now the job of mode_adjust.
48587         Detect more invalid usages rather than having somewhat-random behavior.
48588         Don't insert an "a=" action, as that leads to incorrect behavior.
48589         (mode_compile, mode_create_from_ref): Return NULL on error instead
48590         of an enum, since now there's only one way to have an error.  All
48591         callers changed.
48592         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
48593         at the correct time.  Simplify calculation of "+u" and its ilk.
48594         Don't mishandle "+X".
48595         (mode_free): Remove "register" and localize decls.
48596         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
48597         (struct mode_change): Move to modechange.c; callers don't
48598         need to see this stuff.
48599         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
48600         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
48601         (mode_change, mode_adjust): Reflect the new signatures noted above.
48602         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
48603         that might redefine system include files.
48604         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
48605         (my_usleep): Use NULL rather than (void *) 0.
48606         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
48607         Use siginterrupt to specify that system calls should be interrupted.
48608         (rpl_nanosleep): Move initialization of suspended closer to call of
48609         my_usleep.
48610         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
48611         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
48612         (desirable_utmp_entry): New function.
48613         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
48614         using x2nrealloc, to simplify logic.
48615         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
48616         size calculation.  Do not assume utmp file is a regular file.
48617         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
48618         (READ_UTMP_CHECK_PIDS): New constant.
48619         * lib/save-cwd.c: Include unistd-safer.h.
48620         (save_cwd): Use fd_safer.
48621         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
48622         [!_LIBC] Include "stat-macros.h" instead.
48623         * lib/unistd-safer.h (fd_safer): New decl.
48624
48625 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
48626
48627         * modules/getloadavg (Depends-on): Add unistd-safer.
48628         * modules/getusershell (Depends-on): Add stdio-safer.
48629         * modules/lstat (Depends-on): Remove xalloc.
48630         * modules/mkstemp (Depends-on): Add stat-macros.
48631         * modules/modechange (Depends-on): Remove xstrtol.
48632         Add stat-macros, xalloc.
48633         * modules/save-cwd (Depends-on): Add unistd-safer.
48634         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
48635         * modules/unistd-safer (Files): Add lib/fd-safer.c
48636         (Makefile.am): Remove lib_SOURCES.
48637
48638         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
48639         Remove fcntl-safer; unistd-safer supersedes it.
48640
48641 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
48642
48643         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
48644         AC_HEADER_STAT.
48645         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
48646         (gl_PREREQ_CHOWN): Remove.
48647         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
48648         it.  Don't require AC_HEADER_STAT.
48649         (gl_PREREQ_LSTAT): Remove.
48650         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
48651         Don't require AC_HEADER_STAT.
48652         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
48653         (gl_PREREQ_RMDIR): Remove.
48654         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
48655         mention stat-macros.h or AC_HEADER_STAT, since we'll make
48656         the stat-macros module a prerequisite.
48657         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
48658         * m4/filemode.m4 (gl_FILEMODE): Likewise.
48659         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
48660         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
48661         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
48662         variable names.
48663         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
48664         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
48665         variable prefixes.
48666         * m4/fcntl-safer.m4: Remove.
48667         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
48668         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
48669         Invoke gl_PREREQ_FD_SAFER.
48670         (gl_PREREQ_FD_SAFER): New macro.
48671         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
48672         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
48673         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
48674         Remove duplicate call to AC_LIBOBJ(readutmp).
48675         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
48676
48677         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
48678         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
48679
48680 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
48681
48682         * MODULES.html.sh (Misc): Add byteswap.
48683
48684 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
48685
48686         * modules/getcwd (Depends-on): Add extensions.
48687         * modules/openat (Depends-on): Likewise.
48688
48689 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
48690
48691         * modules/byteswap: New file.
48692
48693 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
48694
48695         * m4/byteswap.m4: New file.
48696
48697 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
48698
48699         * lib/byteswap_.h: New file.
48700
48701 2005-04-25  Karl Berry  <karl@gnu.org>
48702
48703         * m4/gettext.m4: Update from GNU gettext 0.14.4.
48704
48705 2005-04-25  Albert Chin  <china@thewrittenword.com>
48706
48707         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
48708         Toolkit C bug.
48709
48710 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
48711
48712         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
48713         (func_ln_if_changed) Remove forcibly for no error message
48714         in case file does not exist.
48715
48716 2005-04-19  Simon Josefsson  <jas@extundo.com>
48717
48718         * gnulib-tool (Options): Make --symlink mean --symbolic.
48719
48720 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
48721
48722         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
48723
48724 2005-04-16  Simon Josefsson  <jas@extundo.com>
48725
48726         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
48727
48728 2005-04-15  Simon Josefsson  <jas@extundo.com>
48729
48730         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
48731
48732 2005-04-15  Simon Josefsson  <jas@extundo.com>
48733
48734         * gnulib-tool: Rename --symlink to --symbolic.
48735
48736 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
48737
48738         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
48739         symbolic links to files instead of copying/moving.  Add --aux-dir,
48740         specifying directory relative --dir where auxiliary build tools
48741         are placed.
48742
48743 2005-04-14  Bruno Haible  <bruno@clisp.org>
48744
48745         * modules/allocsa (License): Change to LGPL.
48746         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
48747
48748 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
48749
48750         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
48751         that "UTC +1 second" continues to work.  Problem reported
48752         by Dmitry V. Levin.
48753         (relunit_snumber): New rule.
48754         (relunit): Use it.
48755
48756 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
48757
48758         * lib/getdate.y (universal_time_zone_table): New constant.
48759         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
48760         universal_time_zone_table.
48761         (lookup_zone): Prefer universal_time_zone_table to
48762         local_time_zone_table, so that "GMT" time stamps are allowed in
48763         London during the summer.  Problem reported by Ian Abbott.
48764
48765 2005-04-12  Jim Meyering  <jim@meyering.net>
48766
48767         * lib/human.c (humblock): Set *options even when returning due to
48768         xstrtoumax conversion failure.  Thanks to a used-uninitialized
48769         warning from gcc-4.
48770
48771 2005-04-09  Jim Meyering  <jim@meyering.net>
48772
48773         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
48774         -Wuninitialized: initialize tm0.tm_year.
48775
48776 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
48777
48778         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
48779         count, since there's no maximum.  All uses changed.
48780         Add member dsts_seen.
48781         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
48782         not being INT_MAX.
48783         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
48784         Use pc_rels_seen to decide whther a date is absolute.
48785
48786         * lib/getdate.y (number): Don't overwrite year.
48787         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
48788         check.
48789
48790 2005-04-02  Simon Josefsson  <jas@extundo.com>
48791
48792         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
48793         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
48794
48795 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
48796
48797         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
48798         where no absolute path name can be longer than PATH_MAX.
48799
48800 2005-03-27  Jim Meyering  <jim@meyering.net>
48801
48802         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
48803
48804 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
48805
48806         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
48807         "one's complement" -> "ones' complement" in comment, as per Knuth.
48808         "value of type" -> "type or expression" in comment.
48809         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
48810
48811 2005-03-26  Jim Meyering  <jim@meyering.net>
48812
48813         Comment nits.
48814         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
48815         Correct typos: s/or/of/.
48816
48817 2005-03-26  Jim Meyering  <jim@meyering.net>
48818
48819         * modules/check-include-files: Move to ../ and rename to...
48820         * check-module: ...this.
48821
48822 2005-03-25  Jim Meyering  <jim@meyering.net>
48823
48824         * modules/xvasprintf (Files): Add xalloc.h.
48825
48826 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
48827
48828         * modules/gettext (Files): config/config.rpath ->
48829         build-aux/config.rpath
48830         * modules/iconv (Files): Likewise.
48831         Problem reported by Oskar Liljeblad.
48832
48833 2005-03-23  Jim Meyering  <jim@meyering.net>
48834
48835         * modules/check-include-files: New script to check for
48836         missing dependencies, multiple includes, etc.
48837
48838         * modules/c-strtold (Depends-on): Add xalloc.
48839         * modules/c-strtod (Depends-on): Add xalloc.
48840         * modules/hash (Depends-on): Add xalloc.
48841         (Files): Remove lib/xalloc.h.
48842
48843         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
48844         * modules/userspec (Files): Add lib/inttostr.h.
48845
48846 2005-03-23  Jim Meyering  <jim@meyering.net>
48847
48848         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
48849
48850 2005-03-22  Jim Meyering  <jim@meyering.net>
48851
48852         * modules/stat-macros: New module.
48853         * modules/canonicalize, modules/euidaccess, modules/file-type,
48854         * modules/filemode, modules/lchown, modules/makepath,
48855         * modules/rmdir, modules/stat: Depend on new stat-macros module
48856         rather than listing lib/stat-macros.h manually.
48857         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
48858
48859 2005-03-22  Jim Meyering  <jim@meyering.net>
48860
48861         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
48862
48863 2005-03-22  Bruno Haible  <bruno@clisp.org>
48864
48865         * config/srclist.txt: Replace target directory 'config' with
48866         'build-aux'.
48867         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
48868         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
48869         ../build-aux/.
48870
48871 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
48872
48873         * modules/chdir-long (Depends-on): Add mempcpy.
48874
48875         * modules/acl, modules/backupfile, modules/c-strtod,
48876         modules/c-strtold, modules/canon-host, modules/canonicalize,
48877         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
48878         modules/exclude, modules/exitfail, modules/file-type,
48879         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
48880         modules/getdate, modules/getline, modules/getpagesize,
48881         modules/getpass, modules/getugroups, modules/group-member,
48882         modules/hard-locale, modules/hash, modules/human, modules/idcache,
48883         modules/inttostr, modules/long-options, modules/makepath,
48884         modules/md5, modules/memcasecmp, modules/memcoll,
48885         modules/modechange, modules/mountlist, modules/path-concat,
48886         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
48887         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
48888         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
48889         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
48890         modules/strftime, modules/strndup, modules/strverscmp,
48891         modules/timespec, modules/unlocked-io, modules/userspec,
48892         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
48893         modules/yesno:
48894         Remove lib_SOURCES line from Makefile.am section, as this is now
48895         done automatically by the corresponding Autoconf macro.
48896
48897 2005-03-21  Jim Meyering  <jim@meyering.net>
48898
48899         Changes imported from coreutils.
48900
48901         * lib/cycle-check.c: Don't include xalloc.h.
48902
48903         * lib/path-concat.c: Don't include assert.h.
48904         (path_concat): Remove assertion that would have triggered
48905         for ABASE starting with more than one slash.
48906         Reported by Andreas Schwab.
48907
48908         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
48909         properly when ABASE is an absolute file name.
48910         Correct the description of this function.
48911         Include <assert.h>.
48912         Add an assertion and a test driver.
48913         This fixes a bug introduced on 2004-07-02.
48914         Andreas Schwab reported the resulting failure of cp --parents:
48915         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
48916
48917 2005-03-21  Jim Meyering  <jim@meyering.net>
48918
48919         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
48920         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
48921
48922 2005-03-21  Jim Meyering  <jim@meyering.net>
48923         and  Paul Eggert  <eggert@cs.ucla.edu>
48924
48925         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
48926         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
48927         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
48928         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
48929         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
48930         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
48931         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
48932         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
48933         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
48934         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
48935         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
48936         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
48937         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
48938         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
48939         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
48940         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
48941         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
48942         for these modules.
48943
48944 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
48945
48946         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
48947         (which shouldn't happen), generate nothing instead of returning 0
48948         immediately, so that nstrftime (NULL, ...) doesn't return 0.
48949
48950 2005-03-16  Bruno Haible  <bruno@clisp.org>
48951
48952         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
48953         HAVE_LONGLONG_64BIT.
48954
48955 2005-03-16  Bruno Haible  <bruno@clisp.org>
48956
48957         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
48958         HAVE_LONGLONG_64BIT.
48959
48960 2005-03-16  Bruno Haible  <bruno@clisp.org>
48961
48962         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
48963         HAVE_LONGLONG_64BIT.
48964
48965 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
48966
48967         * lib/strftime.c (my_strftime): Prepend space to format so that we can
48968         reliably distinguish strftime failure from empty output on POSIX
48969         hosts.
48970
48971 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
48972
48973         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
48974         (iconv_string): Don't guess a size-zero buffer, as that might cause
48975         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
48976         result would be 'too large', where 'too large' is (heuristically)
48977         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
48978         overflow concerns.  This will prevent some unwanted malloc failures
48979         when the inputs are very large.
48980
48981 2005-03-15  Karl Berry  <karl@gnu.org>
48982
48983         * config/srclist.txt (config.rpath): from gettext.
48984         * config/config.rpath: update.
48985
48986 2005-03-15  Bruno Haible  <bruno@clisp.org>
48987
48988         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
48989         to 'negate'.
48990
48991         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
48992         variable.
48993
48994         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
48995         results.
48996
48997 2005-03-14  Simon Josefsson  <jas@extundo.com>
48998
48999         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
49000         <fx@gnu.org>.
49001
49002 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
49003
49004         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
49005         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
49006         intprops.h.
49007         * lib/strtol.c: Likewise.
49008
49009 2005-03-14  Jim Meyering  <jim@meyering.net>
49010
49011         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
49012         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
49013         to be nonzero so that we (and caller) can detect the difference
49014         between a valid zero-length expansion and an error return, even
49015         when the underlying strftime fails before writing anything into
49016         that location.
49017
49018 2005-03-14  Bruno Haible  <bruno@clisp.org>
49019
49020         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
49021         Update from GNU gettext 0.14.3.
49022
49023 2005-03-10  Jim Meyering  <jim@meyering.net>
49024
49025         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
49026
49027 2005-03-10  Jim Meyering  <jim@meyering.net>
49028
49029         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
49030         so that this module works on systems without fchdir.
49031
49032 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
49033
49034         Factor int-properties macros into a single file, except for
49035         glibc-related files.
49036         * lib/intprops.h: New file.
49037         * lib/getloadavg.c: Include it instead of limits.h.
49038         (INT_STRLEN_BOUND): Remove.
49039         * lib/human.c: Include intprops.h.
49040         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
49041         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
49042         302/1000.
49043         * lib/inttostr.h: Include intprops.h instead of limits.h.
49044         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
49045         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
49046         for consistency with intprops.h.
49047         (time_t_is_integer, twos_complement_arithmetic): Use them.
49048         * lib/sig2str.h: Include <signal.h>, intprops.h.
49049         (INT_STRLEN_BOUND): Remove.
49050         * lib/strftime.c (TYPE_SIGNED): Remove.
49051         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
49052         * lib/strtol.c: Adjust comments to match intprops.h.
49053         * lib/userspec.c: Include intprops.h.
49054         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
49055         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
49056         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
49057         instead of rolling our own expressions.
49058         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
49059
49060         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
49061         instead of int.
49062         (my_strftime): Do not mishandle years close to INT_MAX, by doing
49063         the right thing even if adding 1900 would overflow.  Similarly
49064         for tm_mon + 1 and tm_yday + 1.
49065         Make %Y always equivalent to %C%y, and similarly for %G and %g.
49066         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
49067         (DO_SIGNED_NUMBER): New macro.
49068         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
49069
49070 2005-03-07  Bruno Haible  <bruno@clisp.org>
49071
49072         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
49073
49074 2005-03-07  Bruno Haible  <bruno@clisp.org>
49075
49076         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
49077
49078 2005-03-04  Derek R. Price  <derek@ximbiot.com>
49079
49080         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
49081         (func_import): Only replace files via --import when they have actually
49082         changed.
49083
49084 2005-03-03  Derek R. Price  <derek@ximbiot.com>
49085
49086         * m4/mmap-anon.m4: New file.
49087         * m4/pagealign_alloc.m4: New file.
49088
49089 2005-03-03  Derek R. Price  <derek@ximbiot.com>
49090             Bruno Haible  <bruno@clisp.org>
49091
49092         * modules/pagealign_alloc: New file.
49093         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
49094
49095 2005-03-03  Derek R. Price  <derek@ximbiot.com>
49096             Bruno Haible  <bruno@clisp.org>
49097
49098         * lib/pagealign_alloc.h: New file.
49099         * lib/pagealign_alloc.c: New file.
49100
49101 2005-03-03  Bruno Haible  <bruno@clisp.org>
49102
49103         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
49104         Use an all-permissive copyright notice, recommended by RMS.
49105
49106 2005-03-02  Bruno Haible  <bruno@clisp.org>
49107
49108         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
49109         of AIX, the replacement has to be done only after <string.h> is
49110         included, therefore not in config.h. stpncpy.h does the replacement,
49111         and stpncpy.c uses it.
49112
49113 2005-03-02  Bruno Haible  <bruno@clisp.org>
49114
49115         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
49116         stpncpy.c uses it.
49117
49118 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
49119
49120         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
49121         The workaround isn't strictly needed for POSIX conformance, and
49122         it's too much of a pain to configure and maintain.  We'll ask
49123         people to fix their kernels instead.
49124         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
49125         (NANOSLEEP_BUG_WORKAROUND): Remove.
49126         (xnanosleep): Remove the workaround.
49127
49128 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
49129
49130         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
49131         Reported by Derek Price.
49132         (Include): Add "timespec.h".
49133
49134         * modules/xnanosleep (Depends-on): Remove gethrxtime.
49135
49136 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
49137
49138         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
49139         to detect nanosleep bug.
49140
49141 2005-03-01  Bruno Haible  <bruno@clisp.org>
49142
49143         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
49144
49145 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
49146
49147         * modules/gethrxtime: New file.
49148         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
49149         (Depends-on): Add gethrxtime.
49150         (configure.ac): Add gl_XNANOSLEEP.
49151         (Makefile.am): Remove lib_SOURCES line.
49152
49153 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
49154
49155         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
49156         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
49157
49158 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
49159
49160         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
49161         * lib/timespec.h (gettime): Return void, since it always
49162         succeeds now.  All uses changed.
49163         * lib/gettime.c (gettime) Likewise.
49164         [HAVE_NANOTIME]: Prefer nanotime.
49165         Assume gettimeofday succeeds, as POSIX requires.
49166         Assime time () succeeds, since other code already does.
49167         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
49168         (timespec_subtract): Remove.
49169         (NANOSLEEP_BUG_WORKAROUND): New constant.
49170         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
49171         things considerably.  Use it only on GNU/Linux hosts, since the
49172         workaround shouldn't be needed elsewhere.
49173
49174 2005-02-24  Bruno Haible  <bruno@clisp.org>
49175
49176         * modules/gettext (Files): Add m4/glibc2.m4.
49177
49178 2005-02-24  Bruno Haible  <bruno@clisp.org>
49179
49180         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
49181         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
49182         * m4/progtest.m4:
49183         Update from GNU gettext 0.14.2.
49184         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
49185
49186 2005-02-24  Bruno Haible  <bruno@clisp.org>
49187
49188         * lib/localcharset.c: Update from GNU gettext 0.14.2.
49189         * lib/config.charset: Update from GNU gettext 0.14.2.
49190
49191 2005-02-24  Bruno Haible  <bruno@clisp.org>
49192
49193         * lib/gettext.h: Update from GNU gettext 0.14.2.
49194
49195 2005-02-23  Simon Josefsson  <jas@extundo.com>
49196
49197         * m4/iconvme.m4: New file.
49198
49199 2005-02-23  Jim Meyering  <jim@meyering.net>
49200
49201         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
49202         change.
49203         Thanks to Bruno Haible for catching it.
49204
49205 2005-02-22  Simon Josefsson  <jas@extundo.com>
49206
49207         * modules/iconvme: New file.
49208
49209         * MODULES.html.sh: Add iconvme.
49210
49211 2005-02-22  Simon Josefsson  <jas@extundo.com>
49212
49213         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
49214
49215 2005-02-22  Simon Josefsson  <jas@extundo.com>
49216
49217         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
49218
49219 2005-02-22  Jim Meyering  <jim@meyering.net>
49220
49221         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
49222         s/ifndef/ifdef/.
49223
49224 2005-02-20  Neil Conway  <neilc@samurai.com>
49225
49226         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
49227         returned by OSX/Darwin if the specified buffer is not large
49228         enough for the hostname.
49229
49230 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49231
49232         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
49233         pass it to _help, otherwise the latter coredumps trying to
49234         dereference state.root_argp.
49235
49236 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
49237
49238         * modules/chdir-long (Depends-on): Add memrchr.
49239         * modules/memrchr (Files): Add lib/memrchr.h.
49240         (Include): "memrchr.h".
49241
49242 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
49243
49244         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
49245
49246 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
49247
49248         * lib/memrchr.h: New file.
49249         * lib/chdir-long.c: Include it.
49250         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
49251         Don't bother including stddef.h.
49252
49253 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
49254
49255         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
49256         inclusion.
49257         Include <sys/types.h>, for dev_t.
49258         (ME_DUMMY, ME_REMOTE): Move from here....
49259         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
49260         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
49261         Dmitry V. Levin.
49262         Include mountlist.h first, to test the interface.
49263
49264 2005-01-29  Bruno Haible  <bruno@clisp.org>
49265
49266         * lib/progname.c (program_name): Initialize.
49267         Needed when linking statically on MacOS X.
49268
49269 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
49270
49271         Sync from coreutils.
49272         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
49273         (Depends-on): Add c-strtod.
49274         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
49275
49276 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
49277
49278         Sync from coreutils.
49279         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
49280
49281         Remove files that are specific to coreutils.
49282         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
49283
49284 2005-01-28  Bruno Haible  <bruno@clisp.org>
49285
49286         * modules/javacomp: New file.
49287         * MODULES.html.sh (Java): Add javacomp.
49288
49289 2005-01-28  Bruno Haible  <bruno@clisp.org>
49290
49291         * m4/javacomp.m4: New file, from GNU gettext.
49292
49293 2005-01-28  Bruno Haible  <bruno@clisp.org>
49294
49295         * lib/javacomp.sh.in: New file, from GNU gettext.
49296         * lib/javacomp.h: New file, from GNU gettext.
49297         * lib/javacomp.c: New file, from GNU gettext.
49298
49299 2005-01-26  Simon Josefsson  <jas@extundo.com>
49300
49301         * lib/gai_strerror.c: Use GPL in header.
49302
49303 2005-01-26  Bruno Haible  <bruno@clisp.org>
49304
49305         * modules/javaexec: New file.
49306         * MODULES.html.sh (Java): Add javaexec.
49307
49308 2005-01-26  Bruno Haible  <bruno@clisp.org>
49309
49310         * m4/javaexec.m4: New file, from GNU gettext.
49311
49312 2005-01-26  Bruno Haible  <bruno@clisp.org>
49313
49314         * lib/javaexec.sh.in: New file, from GNU gettext.
49315         * lib/javaexec.h: New file, from GNU gettext.
49316         * lib/javaexec.c: New file, from GNU gettext.
49317
49318 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49319
49320         * modules/lchown (Depends-on): Remove lchown.h
49321
49322 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49323
49324         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
49325         must be defined if the header file was not found, in order
49326         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
49327
49328 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49329
49330         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
49331         initializers for struct pentry_state.
49332         (__argp_error): Check return value of __asprintf
49333         (__argp_failure): Translate error message
49334
49335         * lib/argp-parse.c: Removed braces around the expansion of N_()
49336
49337 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49338
49339         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
49340         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
49341         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
49342         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
49343         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
49344         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
49345         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
49346         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
49347         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
49348         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
49349         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
49350         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
49351         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
49352         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
49353         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
49354         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
49355         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
49356         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
49357         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
49358         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
49359         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
49360         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
49361         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
49362         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
49363         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
49364         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
49365         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
49366         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
49367         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
49368         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
49369         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
49370         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
49371         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
49372         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
49373         xstrtol.m4, xstrtoumax.m4, yesno.m4:
49374         Use an all-permissive copyright notice, recommended by RMS.
49375
49376 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
49377
49378         * modules/chdir-long (Depends-on): Remove mempcpy.
49379
49380 2005-01-21  Jim Meyering  <jim@meyering.net>
49381
49382         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
49383         same value as for Solaris 9.
49384
49385         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
49386         component length.  This included changing the parameter to be
49387         of type `char *' rather than `char const *'.
49388         * lib/chdir-long.h (chdir_long): Update prototype.
49389
49390         * lib/openat.c (fdopendir, fstatat): New functions.
49391         * lib/openat.h: Include headers required for use of DIR and struct
49392         stat.
49393         [AT_SYMLINK_NOFOLLOW]: Define.
49394         (fdopendir, fstatat): Add prototypes.
49395
49396 2005-01-21  Bruno Haible  <bruno@clisp.org>
49397
49398         * modules/classpath: New file.
49399         * MODULES.html.sh (Java): Add classpath.
49400
49401 2005-01-21  Bruno Haible  <bruno@clisp.org>
49402
49403         * lib/classpath.h: New file, from GNU gettext.
49404         * lib/classpath.c: New file, from GNU gettext.
49405
49406 2005-01-20  Simon Josefsson  <jas@extundo.com>
49407
49408         * modules/version-etc-fsf: New file.
49409
49410 2005-01-20  Simon Josefsson  <jas@extundo.com>
49411
49412         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
49413         * lib/version-etc.c: Remove version_etc_copyright.
49414         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
49415         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
49416
49417 2005-01-20  Simon Josefsson  <jas@extundo.com>
49418
49419         * lib/base64.h (isbase64): Add.
49420
49421         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
49422         using a unsigned prototype, don't inline.
49423         (base64_decode): Use it.
49424
49425 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
49426
49427         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
49428         it.
49429
49430 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
49431
49432         * lib/save-cwd.c (save_cwd): Remove code to support the case
49433         where fchdir is missing or flaky.
49434
49435 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
49436
49437         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
49438
49439 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
49440
49441         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
49442         AC_LIBSOURCES now does this.
49443         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
49444         with new ullong_max module.
49445
49446 2005-01-19  Bruno Haible  <bruno@clisp.org>
49447
49448         * modules/sh-quote: New file.
49449         * MODULES.html.sh (Executing programs): Add sh-quote.
49450
49451 2005-01-19  Bruno Haible  <bruno@clisp.org>
49452
49453         * lib/sh-quote.h: New file, from GNU gettext.
49454         * lib/sh-quote.c: New file, from GNU gettext.
49455
49456 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
49457
49458         Merge from coreutils.
49459         * m4/ullong_max.m4: New file.
49460         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
49461         (gl_MACROS): Assume localeconv exists.
49462
49463 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
49464
49465         Merge changes from coreutils, as described below in several
49466         changelogs dated today.
49467
49468         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
49469         (O_DIRECTORY): Remove; not needed here, since "." must be
49470         a directory.  All uses removed.
49471         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
49472         universal on Suns, and we also need to test for IRIX.
49473         Revamp code to use 'if' rather than '#if'.
49474         Avoid unnecessary comparison of cwd->desc to 0.
49475
49476         * lib/utimens.c (futimens): Robustify the previous patch, by checking
49477         for known valid error numbers rather than observed invalid ones.
49478
49479 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
49480
49481         * modules/ullong_max: New file.
49482
49483         * modules/chdir-long, modules/openat: New files.
49484         * modules/save-cwd (Depends-on): Depend on chdir-long.
49485         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
49486
49487 2005-01-18  Jim Meyering  <jim@meyering.net>
49488
49489         Merge from coreutils.
49490         * m4/chdir-long.m4, m4/openat.m4: New files.
49491         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
49492         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
49493         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
49494         is sane and DOES follow symlinks.  Besides, testing 20 different
49495         systems found no broken chown implementations.
49496         Prompted by a change in rsync's copy of this macro.
49497         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
49498
49499         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
49500
49501         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
49502         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
49503         NULL-means-set-to-current-time semantics.
49504         Remove temporary file immediately, rather than waiting
49505         for configure's at-exit trap code to do it.
49506
49507 2005-01-18  Jim Meyering  <jim@meyering.net>
49508
49509         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49510
49511         * lib/utimens.c (futimens): Account for the fact that futimes
49512         can also fail with errno == ENOSYS or errno == ENOENT.
49513         Patch from Dmitry V. Levin.
49514
49515         Change the name of the robust chdir function from chdir to chdir_long.
49516         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
49517         (restore_cwd): Use chdir_long, not chdir.
49518         * lib/chdir-long.c: Renamed from chdir.c.
49519         * lib/chdir-long.h: Renamed from chdir.h.
49520         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
49521         Hurd.
49522
49523 2005-01-18  Bruno Haible  <bruno@clisp.org>
49524
49525         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
49526         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
49527         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
49528         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
49529         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
49530         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
49531         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
49532         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
49533         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
49534         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
49535         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
49536         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
49537         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
49538         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
49539         Use an all-permissive copyright notice, recommended by RMS.
49540
49541 2005-01-18  Bob Proulx  <bob@proulx.com>
49542
49543         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
49544         simplify offsetof() macro construct to avoid compile failure with
49545         native HP-UX 11.0 ANSI C compiler.
49546
49547 2005-01-17  Bruno Haible  <bruno@clisp.org>
49548
49549         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
49550         redundant because stpncpy.m4 takes care of it.
49551
49552 2005-01-17  Bruno Haible  <bruno@clisp.org>
49553
49554         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
49555
49556 2005-01-17  Bruno Haible  <bruno@clisp.org>
49557
49558         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
49559         used.
49560
49561 2005-01-17  Bruno Haible  <bruno@clisp.org>
49562
49563         * lib/fwriteerror.h (fwriteerror): Change specification to include
49564         fclose.
49565         * lib/fwriteerror.c: Include <stdbool.h>.
49566         (fwriteerror): At the end, close the file stream. Record whether
49567         stdout was already closed.
49568
49569 2005-01-17  Bruno Haible  <bruno@clisp.org>
49570
49571         * lib/execute.c (environ): Declare if needed.
49572         * lib/pipe.c (environ): Likewise.
49573         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
49574
49575 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49576
49577         * modules/argp: Depend on vsnprintf
49578
49579 2005-01-10  Jim Meyering  <jim@meyering.net>
49580
49581         * modules/closeout (Depends-on): Add atexit.
49582
49583 2005-01-06  Bruno Haible  <bruno@clisp.org>
49584
49585         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
49586
49587 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
49588
49589         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
49590         definitions to be after all include files, to avoid collisions.
49591         Problem reported by Bob Proulx.
49592
49593 2005-01-04  Jim Meyering  <jim@meyering.net>
49594
49595         Changes imported from coreutils.
49596         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
49597         as the mkstemp template, use a temporary directory and an
49598         8.3-friendly template to avoid trouble on systems like DJGPP.
49599         Reported by Juan M. Guerrero via Stepan Kasal.
49600         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
49601         close. Remove the temporary directory right away, rather than waiting
49602         for configure's at-exit trap code to do it.
49603         Suggestion from Stepan Kasal.
49604
49605 2005-01-01  Simon Josefsson  <jas@extundo.com>
49606
49607         * gnulib-tool: Print #include directives when --import'ing.
49608
49609 2004-12-28  Simon Josefsson  <jas@extundo.com>
49610
49611         * tests/test-base64.c: Include required header files.  Remove
49612         unused variables.
49613
49614 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
49615
49616         * modules/error (Depends-on): Remove gettext.
49617
49618 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
49619
49620         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
49621         not needed.  This removes a dependency on the gettext module.
49622         [defined _LIBC]: Do not include <libintl.h>; not needed.
49623
49624 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
49625
49626         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
49627         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
49628
49629 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
49630
49631         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
49632         HAVE_DECL_STRTOLD.
49633
49634 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
49635
49636         * modules/getdate (Depends-on): Remove alloca-opt.
49637
49638 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
49639
49640         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
49641
49642 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
49643
49644         * lib/argp-parse.c: Include <stddef.h>.
49645         (alignof, alignto): New macros.
49646         (parser_init): Don't assume that void * is aligned sufficiently
49647         for struct option.
49648
49649         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
49650         need to extend the stack.
49651         (YYINITDEPTH): New macro, so that the initial stack isn't overly
49652         large.
49653
49654 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49655
49656         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
49657
49658 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
49659
49660         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
49661         (2004-10-24) change.  Apparently this was a false alarm.
49662
49663         * modules/getdate: Depend on alloca-opt, not alloca.
49664
49665 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
49666
49667         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
49668         Remove now-obsolete comment about AIX.
49669         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
49670         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
49671         (YYMAXDEPTH): New macro.
49672
49673 2004-12-18  Simon Josefsson  <jas@extundo.com>
49674
49675         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
49676
49677 2004-12-18  Bruno Haible  <bruno@clisp.org>
49678
49679         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
49680
49681 2004-12-18  Bruno Haible  <bruno@clisp.org>
49682
49683         * lib/fatal-signal.c (fatal_signals): Make non-const.
49684         (init_fatal_signals): New function.
49685         (uninstall_handlers, install_handlers): Ignore signals that were set to
49686         SIG_IGN.
49687         (at_fatal_signal): Call init_fatal_signals.
49688         (init_fatal_signal_set): Likewise. Ignore signals that were set to
49689         SIG_IGN.
49690         Reported by Paul Eggert.
49691
49692 2004-12-18  Bruno Haible  <bruno@clisp.org>
49693
49694         * doc/alloca.texi: New file.
49695         * doc/alloca-opt.texi: New file.
49696
49697 2004-12-17  Jim Meyering  <jim@meyering.net>
49698
49699         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
49700         Otherwise, install-sh could exit with improper exit status when
49701         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
49702
49703 2004-12-16  Simon Josefsson  <jas@extundo.com>
49704
49705         * tests/test-base64.c: Add license.
49706
49707 2004-12-15  Stepan Kasal  <address@hidden>
49708
49709         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
49710
49711 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
49712
49713         * modules/getcwd (Files): Add m4/d-ino.m4.
49714         Suggested by Mark D. Baushke.
49715
49716 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
49717
49718         * lib/getdate.y (textint): New member "negative".
49719         (time_zone_hhmm): New function.
49720         Expect 14 shift-reduce conflicts, not 13.
49721         (o_colon_minutes): New rule.
49722         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
49723         (yylex): Set the "negative" member of signed numbers.
49724
49725 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
49726
49727         * doc/getdate.texi (Time of day items, Time zone items):
49728         Describe new formats +00:00, UTC+00:00.
49729
49730 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49731
49732         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
49733         spurious "-l"s.  Problem reported by Stepan Kasal.
49734
49735 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
49736
49737         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
49738         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
49739
49740 2004-12-04  Simon Josefsson  <jas@extundo.com>
49741
49742         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
49743         Vandoorselaere <yoann@prelude-ids.org>.
49744
49745 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
49746
49747         Changes imported from coreutils.
49748         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
49749         exist.
49750         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
49751
49752 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
49753
49754         Changes imported from coreutils.
49755         * lib/hard-locale.c: Assume <locale.h> exists.
49756         Include "strdup.h".
49757         (GLIBC_VERSION): New macro.
49758         (hard_locale): Assume setlocale exists.
49759         Rewrite to avoid #ifdef.
49760         Use strdup rather than malloc + strcpy.
49761         * lib/human.c: Assume <locale.h> exists.
49762         (human_readable): Assume localeconv exists.
49763
49764 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
49765
49766         * modules/hard-locale (Depends-on): Add strdup.
49767
49768 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
49769
49770         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
49771         convert T2, not T.  (Imported from libc.)
49772
49773 2004-11-30  Simon Josefsson  <jas@extundo.com>
49774
49775         * modules/restrict (License): Change to LGPL.
49776
49777 2004-11-30  Simon Josefsson  <jas@extundo.com>
49778
49779         * m4/restrict.m4: Add copyright and copying conditions.
49780
49781 2004-11-30  Simon Josefsson  <jas@extundo.com>
49782
49783         * m4/base64.m4: New file.
49784
49785 2004-11-30  Simon Josefsson  <jas@extundo.com>
49786
49787         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
49788         base64.
49789
49790         * tests/test-base64.c: New file.
49791
49792         * modules/base64: New file.
49793
49794 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
49795
49796         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
49797         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
49798
49799         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
49800
49801 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
49802
49803         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
49804         (__getcwd.c): Don't restore errno; glibc doesn't.
49805         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
49806         first, falling back to our code only if its results look suspicious.
49807         Ensure that the resulting buffer is only as large as necessary.
49808
49809         * lib/readutmp.c: Include readutmp.h first.
49810         Include <errno.h>, since readutmp.h no longer does that.
49811         * lib/readutmp.h: Don't include <errno.h>,
49812         <sys/param.h>, <time.h>; not needed to establish interface.
49813         (errno): Remove decl.
49814         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
49815         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
49816         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
49817
49818 2004-11-28  Simon Josefsson  <jas@extundo.com>
49819
49820         * lib/base64.h, base64.c: New file.
49821
49822 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
49823
49824         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
49825
49826 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
49827
49828         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
49829         (Depends-on): Remove pathmax, same.  Add mempcpy.
49830         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
49831         (Makefile.am): Append getcwd.h to lib_SOURCES.
49832         (Include): Add getcwd.h.
49833         (Maintainer): Change from Jim Meyering to "all, glibc",
49834         since getdate now uses intended-for-glibc code.
49835         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
49836         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
49837
49838 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
49839
49840         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
49841         HP's ANSI C compiler.
49842         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
49843         Declaring int functions causes warnings on some modern systems and
49844         shouldn't be needed to compile on ancient ones.
49845         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
49846         defined.
49847
49848         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
49849         with the following changes.
49850         (__set_errno): Parenthesize properly.
49851         Include <stdbool.h>.
49852         (MIN, MAX, MATCHING_INO): New macros.
49853         (__getcwd): Define with prototype, not K&R form.
49854         Use heuristics to allocate default buffer on stack if possible.
49855         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
49856         behavior, and to avoid the PATH_MAX limit when computing
49857         ../../../../...
49858         Use MATCHING_INO to compare inode number to file.
49859         Check for arithmetic overflow in size calculations.
49860         Fix bug in reallocation of dot array that caused getcwd to fail
49861         on directories nested deeper than 75.
49862         Be more careful about saving errno on error.
49863         Do not use realloc; use only free+malloc, as this is a bit
49864         more flexible and avoids a needless copy operation.
49865         Do not inspect st_dev and st_ino for symbolic links; POSIX
49866         doesn't specify the latter.
49867         Check for closedir errors.
49868         Avoid needless casts.
49869         Use "#ifdef weak_alias" around weak_alias, to be like other
49870         glibc code.
49871         The following changes to getcwd.c have effect only when used in
49872         gnulib; they have no effect inside glibc proper.
49873         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
49874         as alloca isn't used.
49875         (alloca, __alloca): Likewise.
49876         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
49877         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
49878         unconditionally, as gnulib assumes C89 or better.
49879         Do not include <sys/param.h>.
49880         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
49881         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
49882         better.
49883         (NULL) [!defined NULL]: Remove; we assume C89 or better.
49884         Include <dirent.h> in a way that is compatible with modern Autoconf.
49885         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
49886         New macros, if not already defined.
49887         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
49888         Use "_LIBC", not "defined _LIBC", for consistency.
49889         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
49890         a mempcpy module.
49891         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
49892         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
49893         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
49894         credit only to Jim Meyering and adjust the copyright dates.
49895         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
49896         <stdlib.h>, <unistd.h>, "pathmax.h".
49897         Instead, include "xgetcwd.h" (first) and "getcwd.h".
49898         (INITIAL_BUFFER_SIZE): Remove.
49899         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
49900
49901 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
49902
49903         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
49904         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
49905         Use the _ONCE methods, for efficiency.
49906         Check for fcntl.h.  In test program, include <errno.h>
49907         and <fcntl.h> if available.  Remove old K&R cruft from
49908         test program.  Check for common errors in GNU/Linux,
49909         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
49910         don't do AC_LIBOBJ, as that's getcwd.m4's job.
49911         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
49912         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
49913         name accordingly.
49914         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
49915         accommodate new getcwd.c.
49916         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
49917         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
49918         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
49919         that's all we need now.
49920
49921 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49922
49923         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
49924         argp-parse.c depends on getopt internals, that means we should
49925         always use our getopt, to be on the safe side.
49926         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
49927         order not to spoil the result of an eventual previous invocation
49928         of gl_GETOPT_SUBSTITUTE.
49929
49930 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
49931
49932         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
49933         redefinition warnings. To avoid them, include the defines
49934         in `#if !defined __need_getopt ... #endif'. The only place
49935         where __getopt_argv_const is used is in definitions
49936         of getopt_long and getopt_long_only below, which are as well
49937         protected by `#ifndef __need_getopt'.
49938         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
49939         __need_getopt after including <stdio.h> and <unistd.h> These
49940         headers might have defined it.
49941
49942 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
49943
49944         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
49945
49946 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
49947
49948         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
49949         (futimens): New function, which uses futimes if available.
49950         (futimens, utimens): Support timespec==NULL, with same semantics
49951         as utime and utimens.
49952         * lib/utimens.h (futimens): New decl.
49953
49954 2004-11-23  Jim Meyering  <jim@meyering.net>
49955
49956         * lib/getopt_.h: Remove trailing blanks.
49957
49958 2004-11-23  Jim Meyering  <jim@meyering.net>
49959
49960         * lib/__fpending.c: Add comment.
49961
49962 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
49963
49964         * modules/canonicalize (Depends-on): Add xreadlink.
49965         Problem reported by James Youngman.
49966
49967 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
49968
49969         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
49970         New macros.
49971         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
49972         optopt): Use them instead of invoking ## directly; otherwise, the
49973         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
49974
49975 2004-11-19  Bruno Haible  <bruno@clisp.org>
49976
49977         * lib/strtok_r.c: Move comments from here...
49978         * lib/strtok_r.h: ... to here.
49979
49980 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
49981
49982         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
49983         implementations that mishandle size_t overflow.
49984
49985 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
49986
49987         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
49988         might fail.  Problem reported by Yoann Vandoorselaere.
49989         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
49990         implementations that mishandle size_t overflow.
49991
49992 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
49993
49994         * modules/canon-host (Depends-on): Add strdup.
49995
49996 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
49997
49998         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
49999
50000 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
50001
50002         * lib/canon-host.c: Include "strdup.h".
50003         (canon_host): Use getaddrinfo if available, so that IPv6 works.
50004         Use strdup instead of malloc/strcpy to duplicate strings.
50005
50006         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
50007         (human_space_before_unit): New constant.
50008         * lib/human.c (human_readable): Support it.
50009
50010         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
50011         (xgetcwd): Set errno correctly when failing.
50012         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
50013         the failure is actually due to a PATH_MAX problem.
50014
50015         Further getopt changes to make it more likely that glibc will
50016         buy the changes back.
50017         * lib/getopt.c (POSIXLY_CORRECT): New constant.
50018         (getopt): Use it, so to preserve glibc semantic
50019         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
50020         when compiling for libc.
50021         * lib/getopt_.h (__getopt_argv_const): Bring it back.
50022         (getopt_long, getopt_long_only): Use it.
50023
50024         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
50025         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
50026         (getopt): Argv is now char * const *, as per standard.
50027         (_getopt_internal_r, _getopt_internal): Argv is now char **,
50028         not char *__getopt_argv_const *.
50029         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
50030         _getopt_long_only_r): Likewise.
50031         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
50032         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
50033         _getopt_long_r, _getopt_long_only_r): Likewise.
50034         * lib/getopt_.h (__getopt_argv_const): Remove.
50035         (getopt): Argv is now char * const *, as per standard.
50036
50037         * lib/getdate.y (tORDINAL): New token.
50038         (day, relunit): Allow it for relative times.
50039         (relative_time_table): Use tORDINAL for ordinals.
50040
50041 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
50042
50043         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
50044         Document that "second" isn't allowed as an ordinal number.
50045
50046 2004-11-16  Jim Meyering  <jim@meyering.net>
50047
50048         * modules/closeout (Depends-on): Add fpending.
50049
50050 2004-11-15  Jim Meyering  <jim@meyering.net>
50051
50052         * lib/closeout.c: Include "__fpending.h" once again.
50053         Include <stdbool.h>.
50054         (close_stdout): Don't fail just because stdout was closed initially,
50055         since some programs don't write to stdout in the normal course of
50056         operation (other than --version and --help), and we don't want this
50057         function to make e.g. `touch file >&-' fail.
50058         But do fail if it was closed and someone has tried to write to it.
50059         E.g., `printf foo >&-' must fail.
50060
50061 2004-11-13  Jim Meyering  <jim@meyering.net>
50062
50063         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
50064
50065 2004-11-12  Simon Josefsson  <jas@extundo.com>
50066
50067         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
50068         small doc fix is still pending.
50069
50070 2004-11-11  Simon Josefsson  <jas@extundo.com>
50071
50072         * modules/strtok_r: New file.
50073
50074         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
50075         strtok_r.
50076
50077 2004-11-11  Simon Josefsson  <jas@extundo.com>
50078
50079         * m4/strtok_r.m4: New file.
50080
50081         * m4/getopt.m4: Replace opterr.
50082
50083 2004-11-11  Simon Josefsson  <jas@extundo.com>
50084
50085         * lib/strtok_r.h, strtok_r.c: New file.
50086
50087 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
50088
50089         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
50090         of replacing opterr, getopt, etc.  This should handle the
50091         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
50092
50093 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
50094
50095         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
50096         we can stop lying to compilers about the constness of argv when we
50097         are compiled outside glibc.
50098         (getopt, getopt_long, getopt_long_only): Use it.
50099         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
50100         _getopt_internal, getopt): Likewise.
50101         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
50102         _getopt_long_only_r): Likewise.
50103         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
50104         _getopt_long_r, _getopt_long_only_r): Likewise.
50105
50106         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
50107         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
50108         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
50109         the other external symbols.
50110         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
50111         declaration, since the above renaming now works around collisions.
50112
50113 2004-11-11  Jim Meyering  <jim@meyering.net>
50114
50115         * lib/linebreak.c: Remove trailing blanks.
50116         * lib/alloca_.h: Likewise.
50117         * lib/acosl.c: Likewise.
50118         * lib/euidaccess.c: Likewise.
50119         * lib/allocsa.h: Likewise.
50120
50121 2004-11-10  Simon Josefsson  <jas@extundo.com>
50122
50123         * m4/getaddrinfo.m4: New file.
50124
50125 2004-11-10  Simon Josefsson  <jas@extundo.com>
50126
50127         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
50128
50129 2004-11-10  Simon Josefsson  <jas@extundo.com>
50130
50131         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
50132         getaddrinfo.
50133
50134         * modules/getaddrinfo: New file.
50135
50136 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
50137
50138         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
50139
50140 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
50141
50142         * lib/mktime.c (SHR): New macro, which is a portable
50143         substitute for >> that should work even on Crays.
50144         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
50145         Problem reported by Mark D. Baushke in
50146         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
50147         * lib/getdate.y (SHR): Likewise.
50148         (tm_diff): Use it.
50149         * lib/strftime.c (SHR): Likewise.
50150         (tm_diff): Use it.
50151         * lib/quotearg.c (struct quoting_options): Use unsigned int for
50152         quote_these_too, so that right shifts are well defined.  All uses
50153         changed.
50154
50155 2004-11-10  Jim Meyering  <jim@meyering.net>
50156
50157         Ensure that no close failure goes unreported.
50158         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
50159         return early when it seems there's nothing to flush.
50160         Don't include __fpending.h.
50161
50162 2004-11-10  Jim Meyering  <jim@meyering.net>
50163
50164         * modules/closeout (Depends-on): Remove fpending.
50165
50166 2004-11-10  Jim Meyering  <jim@meyering.net>
50167
50168         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
50169
50170 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
50171
50172         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
50173         gl_FUNC_STRFTIME.
50174         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
50175         and AC_REQUIRE when possible, to avoid duplicate checks.
50176         Check for <wchar.h>.
50177
50178 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
50179
50180         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
50181
50182 2004-11-09  Bruno Haible  <bruno@clisp.org>
50183
50184         * m4/sockpfaf.m4: New file.
50185
50186 2004-11-05  Bruno Haible  <bruno@clisp.org>
50187
50188         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
50189         Reported by Mark D. Baushke <mdb@cvshome.org>.
50190
50191 2004-11-04  Bruno Haible  <bruno@clisp.org>
50192
50193         2004-09-11  Bruno Haible  <bruno@clisp.org>
50194                 * allocsa.valgrind: New file.
50195         2004-02-06  Bruno Haible  <bruno@clisp.org>
50196                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
50197                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
50198                 Reported by Christopher Seip <chris.seip@hp.com>.
50199
50200 2004-11-04  Bruno Haible  <bruno@clisp.org>
50201
50202         * modules/allocsa (Files): Add lib/allocsa.valgrind.
50203         (Makefile.am): Distribute it.
50204
50205 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
50206
50207         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
50208         with errno == ERANGE if the buffer is too small.
50209         Problem reported by Mark D. Baushke.
50210
50211 2004-11-03  Albert Chin  <china@thewrittenword.com>
50212             Paul Eggert  <eggert@cs.ucla.edu>
50213
50214         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
50215         equivalent, substitute $ac_type for equivalent type rather than
50216         blindly using uint32_t *always* which won't work if uint32_t is not
50217         available.  Define _UINT32_T to work around typedef of uint32_t if
50218         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
50219         2.5.1.
50220
50221 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
50222
50223         * m4/jm-macros.m4: Sync from coreutils.
50224         (gl_MACROS): Check for mbrlen, for pathchk.
50225         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
50226
50227 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
50228
50229         * lib/xreadlink.c (MAXSIZE): New macro.
50230         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
50231         size does not exceed MAXSIZE.  Avoid cast.
50232         As suggested by Mark D. Baushke in
50233         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
50234         if readlink fails with buffer size just under MAXSIZE, try again
50235         with MAXSIZE.
50236
50237 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
50238
50239         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
50240
50241 2004-11-02  Derek R. Price  <derek@ximbiot.com>
50242         and  Paul Eggert  <eggert@cs.ucla.edu>
50243
50244         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
50245         (get_date): Overparenthesize to avoid GCC warning.
50246
50247 2004-11-02  Bruno Haible  <bruno@clisp.org>
50248
50249         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
50250         returns void.
50251
50252 2004-11-02  Bruno Haible  <bruno@clisp.org>
50253
50254         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
50255         function returns void.
50256
50257 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
50258
50259         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
50260         fflush_unlocked, flockfile, funlockfile, funlockfile,
50261         fputs_unlocked, putc_unlocked.
50262
50263 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
50264
50265         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
50266         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
50267         already declared.
50268
50269 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
50270
50271         * modules/getdate (Files): Add doc/getdate.texi.
50272         (Depends-on): Add setenv, xalloc.
50273
50274 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
50275
50276         * lib/getdate.y: Add support for TZ="foo" within a date string.
50277         Fix some bugs near time_t boundaries.  Reject dates with
50278         out-of-range components, e.g., "Sept 31".
50279         Include <stdlib.h>, "setenv.h", "xalloc.h".
50280         (ISDIGIT_LOCALE): Remove; unused.
50281         Note that the TZ and time functions used here are not reentrant.
50282         (mktime_ok, get_tz): New functions.
50283         (TZBUFSIZE): New constant.
50284         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
50285         This requires that we sometimes generate our own TZ="XXX..." setting.
50286
50287 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
50288
50289         * doc/getdate.texi: New file, from coreutils with modifications for
50290         the new TZ parsing.
50291
50292 2004-10-27  Derek R. Price  <derek@ximbiot.com>
50293
50294         * lib/mktime.c (not_equal_tm): Remove redundant check.
50295
50296 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
50297
50298         * modules/regex (lib_SOURCES): Add regex.c.
50299         Reported by James Youngman in
50300         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
50301
50302 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
50303
50304         * lib/getdate.y: Use Bison 1.875 features, and some minor
50305         code cleanups.  This change does not affect semantics.
50306         Don't include <stdlib.h>; no longer needed.
50307         Don't include unlocked-io.h; only the "#if TEST" code uses
50308         stdio, and performance isn't crucial there.
50309         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
50310         Bison 1.875 features as described below.
50311         All uses of "PC." replaced by "pc->".
50312         (YYSTYPE): Add a forward declaration.
50313         (yylex, yyerror): Use full prototypes in forward decls.
50314         Use "%pure-parser" rather than obsolescent "%pure_parser".
50315         Use %parse-param and %lex-param instead of obsolescent
50316         YYPARSE_PARAM and YYLEX_PARAM.
50317         (meridian_table, month_and_day_table, time_units_table,
50318         relative_time_table, time_zone_table, military_table,
50319         lookup_zone, lookup_word, get_date):
50320         Use NULL instead of 0 where appropriate.
50321         (to_hour): Avoid abort (), to avoid a dependency on
50322         stdlib.h.
50323         (yyerror, yylex): Now accepts parser_control * arg.
50324         (main) [TEST]: Use '\0' rather than 0 for char.
50325
50326 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
50327
50328         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
50329
50330 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
50331
50332         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
50333         It's now the caller's responsibility to handle the case where
50334         !HAVE_GETPAGESIZE && !defined getpagesize.
50335
50336         * lib/mktime.c (leapyear): Arg is long int, not int.
50337
50338 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
50339
50340         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
50341
50342 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
50343
50344         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
50345         missing.  Problem reported by James Youngman.
50346
50347 2004-10-16  Simon Josefsson  <jas@extundo.com>
50348
50349         * gnulib-tool: Fix comments.  Fix parse problem.
50350         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
50351
50352 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
50353
50354         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
50355         implementation of getopt_long.  Problem reported by Alexander Taler in:
50356         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
50357
50358 2004-10-15  Bruno Haible  <bruno@clisp.org>
50359
50360         * gnulib-tool: Untabify. Initialize supplied_libname.
50361         (func_usage): More homogenous output.
50362         (func_modules_transitive_closure, func_modules_to_filelist,
50363         func_emit_lib_Makefile_am): New functions.
50364         (func_import): New function, extracted from big case statement. Use
50365         func_get_license, func_modules_transitive_closure,
50366         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
50367         opt_lgpl. Don't use test -a, as it's not portable.
50368         (func_create_testdir): Use func_modules_transitive_closure,
50369         func_modules_to_filelist, func_emit_lib_Makefile_am.
50370
50371 2004-10-15  Bruno Haible  <bruno@clisp.org>
50372
50373         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
50374
50375 2004-10-15  Bruno Haible  <bruno@clisp.org>
50376
50377         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
50378         the portions belonging to each module.
50379         Suggested by Derek Robert Price <derek@ximbiot.com>.
50380
50381 2004-10-12  Simon Josefsson  <jas@extundo.com>
50382
50383         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
50384         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
50385         to real functions.
50386
50387 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50388
50389         * modules/vsnprintf: New file.
50390
50391 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50392
50393         * m4/vsnprintf.m4: New file.
50394
50395 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50396
50397         * lib/vsnprintf.h: New file.
50398         * lib/vsnprintf.c: New file.
50399
50400 2004-10-11  Bruno Haible  <bruno@clisp.org>
50401
50402         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
50403         vsnprintf.
50404
50405 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
50406
50407         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
50408
50409 2004-10-07  Bruno Haible  <bruno@clisp.org>
50410
50411         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
50412         fits into the provided buffer.
50413
50414 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
50415
50416         * lib/diacrit.c, diacrit.h: Add GPL notice.
50417
50418         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
50419         notice.
50420         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
50421         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
50422         This avoids a potential constant-folding bug.
50423
50424 2004-10-05  Bruno Haible  <bruno@clisp.org>
50425
50426         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
50427         for the declaration of strsep.
50428
50429 2004-10-05  Bruno Haible  <bruno@clisp.org>
50430
50431         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
50432
50433 2004-10-04  Simon Josefsson  <jas@extundo.com>
50434
50435         * modules/memmem: New file.
50436         * tests/test-memmem.c: New file.
50437         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
50438
50439 2004-10-04  Simon Josefsson  <jas@extundo.com>
50440
50441         * m4/memmem.m4: New file.
50442
50443 2004-10-04  Simon Josefsson  <jas@extundo.com>
50444
50445         * lib/memmem.h: New file.
50446         * lib/memmem.c: New file, taken from glibc.
50447
50448 2004-10-04  Simon Josefsson  <jas@extundo.com>
50449
50450         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
50451         '#ifdef USE_UNLOCKED_IO'.
50452
50453 2004-10-04  Simon Josefsson  <jas@extundo.com>
50454
50455         * config/srclist.txt: Add memmem from glibc.
50456
50457 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
50458
50459         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
50460
50461         * modules/argmatch, modules/argp, modules/closeout, modules/error,
50462         modules/exclude, modules/getdate, modules/getline,
50463         modules/getndelim2, modules/getpass, modules/getpass-gnu,
50464         modules/getusershell, modules/linebuffer, modules/md5,
50465         modules/mountlist, modules/posixtm, modules/readtokens,
50466         modules/readutmp, modules/regex, modules/sha1,
50467         modules/version-etc, modules/yesno:
50468         Remove dependency on unlocked-io.
50469
50470 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
50471
50472         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
50473
50474         * m4/unlocked-io.m4: Add copyright notice.
50475         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
50476
50477 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
50478
50479         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
50480         * lib/xmalloc.c (xmemdup): Likewise.
50481         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
50482         XFREE): Remove these long-obsolescent macros.
50483         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
50484         * lib/xstrdup.c: Remove.
50485
50486         * lib/regex.c (re_comp): Cast gettext return value to char *,
50487         Problem reported by Martin Neitzel via Mark D. Baushke.
50488
50489 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
50490
50491         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
50492         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
50493         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
50494         regex.c, sha1.c, version-etc.c, yesno.c:
50495         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
50496         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
50497         the includer's responsibility.
50498
50499         Sync from coreutils.
50500
50501         * lib/modechange.c (mode_compile): Don't decrement a pointer that
50502         points to the start of a string, as the C Standard says the
50503         resulting behavior is undefined.
50504
50505         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
50506         simple -> simple_backups, numbered_existing ->
50507         numbered_existing_backups, numbered -> numbered_backups
50508         to avoid shadowing problems.  All uses changed.
50509         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
50510         * lib/backupfile.c (check_extension, numbered_backup):
50511         Rename locals to avoid shadowing 'basename'.
50512         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
50513         once.
50514
50515         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
50516         * lib/.cvsignore: Add getopt.h.
50517
50518 2004-10-04  Bruno Haible  <bruno@clisp.org>
50519
50520         * modules/README: New file.
50521         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
50522         not a module.
50523
50524 2004-10-02  Jim Meyering  <jim@meyering.net>
50525
50526         * lib/dirfd.h, getpagesize.h: Add copyright notice.
50527
50528 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50529
50530         * modules/strsep: New file.
50531
50532 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50533
50534         * m4/strsep.m4: New file.
50535
50536 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
50537
50538         * lib/strsep.h: New file.
50539         * lib/strsep.c: New file.
50540
50541 2004-10-01  Simon Josefsson  <jas@extundo.com>
50542
50543         * lib/snprintf.c (snprintf): Handle size==0.
50544
50545 2004-10-01  Simon Josefsson  <jas@extundo.com>
50546             Bruno Haible  <bruno@clisp.org>
50547
50548         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
50549         (snprintf): Declare 'args'.
50550
50551 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
50552
50553         * lib/snprintf.c: Remove comments as to why each header is needed.
50554
50555 2004-10-01  Bruno Haible  <bruno@clisp.org>
50556
50557         * MODULES.html.sh: Add strsep.
50558
50559 2004-09-30  Simon Josefsson  <jas@extundo.com>
50560
50561         * modules/snprintf: New file.
50562
50563 2004-09-30  Simon Josefsson  <jas@extundo.com>
50564
50565         * m4/snprintf.m4: New file.
50566
50567 2004-09-30  Simon Josefsson  <jas@extundo.com>
50568
50569         * lib/snprintf.h, lib/snprintf.c: New files.
50570
50571 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
50572
50573         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
50574         (hol_entry_help): Never translate an empty string.
50575         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
50576         * lib/argp.h (OPTION_NO_TRANS): New option.
50577
50578 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
50579
50580         * modules/argp (Maintainer): Replace Simon Josefsson
50581         by Sergey Poznyakoff.
50582
50583 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
50584
50585         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
50586         changes merged back into glibc.
50587
50588 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
50589
50590         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
50591
50592 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
50593
50594         * lib/xvasprintf.c: Include xalloc.h.
50595         (xvasprintf): Use xalloc_die, not xmalloc_die.
50596
50597 2004-09-29  Bruno Haible  <bruno@clisp.org>
50598
50599         * modules/alloca-opt: New file, derived from modules/alloca.
50600         * modules/allocsa: Depend on alloca-opt instead of alloca.
50601         * modules/setenv: Likewise.
50602         * modules/vasnprintf: Likewise.
50603         * MODULES.html.sh: Add alloca-opt.
50604
50605 2004-09-28  Simon Josefsson  <jas@extundo.com>
50606
50607         * gnulib-tool: New parameter --lgpl, to asseert that modules are
50608         LGPL, and to replace license template from GPL to LGPL.
50609
50610 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
50611
50612         * modules/dummy: Change license to LGPL.
50613
50614 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
50615
50616         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
50617
50618 2004-09-24  Simon Josefsson  <jas@extundo.com>
50619
50620         * modules/minmax (License): Change from GPL to LGPL.
50621
50622 2004-09-23  Simon Josefsson  <jas@extundo.com>
50623
50624         * gnulib-tool (--import): Typo.
50625
50626 2004-09-23  Simon Josefsson  <jas@extundo.com>
50627
50628         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
50629
50630 2004-09-22  Bruno Haible  <bruno@clisp.org>
50631
50632         * modules/*: Add 'License' field.
50633         * gnulib-tool: Accept --extract-license option.
50634         (func_get_license): New function.
50635
50636 2004-09-21  Bruno Haible  <bruno@clisp.org>
50637
50638         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
50639         Reported by Simon Josefsson.
50640
50641 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
50642
50643         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
50644         gl_AC_TYPE_LONG_LONG.
50645
50646 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
50647
50648         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
50649
50650 2004-09-18  Simon Josefsson  <jas@extundo.com>
50651         and  Paul Eggert  <eggert@cs.ucla.edu>
50652
50653         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
50654         calls with autoreconf.  Define GL_LIB.
50655
50656 2004-09-14  Karl Berry  <karl@gnu.org>
50657
50658         * config/srclist.txt: unsync setenv.c, sigh.
50659
50660 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
50661
50662         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
50663         Problem reported by Bruno Haible in:
50664         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
50665
50666 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
50667
50668         * config/srclist.txt: Comment out argp-pvh.c.
50669
50670 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
50671
50672         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
50673         in case some system header has #define'd it.  Problem reported by
50674         Soeren D. Schulze in
50675         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
50676
50677 2004-09-09  Karl Berry  <karl@gnu.org>
50678
50679         * regex.[ch]: delete from the root.  These were supposed to be
50680                 synced with emacs cvs, but this has not happened for about
50681                 a year, and anyway nothing else uses emacs regex.[ch].
50682                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
50683                 lib/regex[.ch] is untouched.
50684
50685 2004-09-09  Bruno Haible  <bruno@clisp.org>
50686
50687         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
50688
50689 2004-09-09  Bruno Haible  <bruno@clisp.org>
50690
50691         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
50692         modifications.
50693         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
50694
50695 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
50696
50697         * modules/xvasprintf: New file.
50698         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
50699
50700 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
50701
50702         * lib/xvasprintf.h: New file.
50703         * lib/xvasprintf.c: New file.
50704         * lib/xasprintf.c: New file.
50705
50706 2004-09-08  Bruno Haible  <bruno@clisp.org>
50707
50708         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
50709
50710 2004-09-08  Bruno Haible  <bruno@clisp.org>
50711
50712         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
50713         length is > INT_MAX.
50714         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
50715         more.
50716
50717 2004-09-08  Bruno Haible  <bruno@clisp.org>
50718
50719         * lib/stdint_.h: New file, taken from GNU clisp.
50720
50721 2004-09-08  Bruno Haible  <bruno@clisp.org>
50722             Oskar Liljeblad  <oskar@osk.mine.nu>
50723
50724         * modules/stdint: New file.
50725         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
50726
50727 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50728
50729         Import from coreutils.
50730         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
50731         strings on unbounded length.  alloca's performance benefits aren't
50732         that important here.
50733         (V_STRDUP): Remove.
50734         (parse_with_separator): New function, with most of the internals
50735         of the old parse_user_spec.  Allow user to omit both user and group,
50736         for compatibility with FreeBSD.
50737         Clone only the user name, not the entire spec.
50738         Do not set *uid, *gid unless entirely successful.
50739         Avoid memory leak in some failing cases.
50740         Fix regression for USER.GROUP reported by Dmitry V. Levin in
50741         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
50742         (parse_user_spec): Rewrite to use parse_with_separator.
50743
50744 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50745
50746         * modules/userspec: Don't depend on alloca.
50747
50748 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50749
50750         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
50751
50752 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50753
50754         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
50755         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
50756         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
50757
50758 2004-08-16  Simon Josefsson  <jas@extundo.com>
50759
50760         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
50761         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
50762         Add --dry-run for --import.
50763         Let user provided command line parameters override configure.ac
50764         settings.
50765
50766 2004-08-12  Simon Josefsson  <jas@extundo.com>
50767
50768         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
50769         as discussed with Paul Eggert in threads rooted at
50770         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
50771         and
50772         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
50773         Before, the test was empty, and relied on ELIDE_CODE in source
50774         code.)
50775         (gl_PREREQ_GETOPT): New macro.
50776         (gl_GETOPT): Use them.
50777
50778 2004-08-12  Simon Josefsson  <jas@extundo.com>
50779
50780         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
50781         * lib/getopt_.h: Renamed from getopt.h.
50782
50783 2004-08-12  Simon Josefsson  <jas@extundo.com>
50784
50785         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
50786         Change default library name from libfoo to libgnu.
50787         Now, if you have a configure.ac that says:
50788                 gl_SOURCE_BASE(gl)
50789                 gl_M4_BASE(gl/m4)
50790                 gl_MODULES(error getopt etcetera)
50791                 gl_INIT
50792         you can import all you need by running:
50793                 ../gnulib/gnulib-tool --import
50794
50795         * modules/getopt (Files): Rename getopt.h to getopt_.h.
50796         (Makefile.am): Rewrite, use logic from argz.
50797         (Include): Use <getopt.h> instead of "getopt.h".
50798
50799 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
50800
50801         * modules/argp (Files): Add m4/unlocked-io.m4.
50802         (Depends-on): Add extensions.
50803
50804 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
50805
50806         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
50807         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
50808         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
50809         Check for program_invocation_name, program_invocation_short_name,
50810         flockfile, funlockfile, features.h, _getopt_long_only_r.
50811
50812 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
50813
50814         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
50815         its complicated substitute.
50816         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
50817         and program_invocation_name.
50818         (__argp_basename) [!_LIBC]: Remove; the only use was
50819         replaced by its body.
50820         (__argp_short_program_name): Change condition from
50821         !defined __argp_short_program_name to
50822         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
50823         to match argp-namefrob.h.
50824         (__argp_failure): Don't assume strerror_r returns char *.
50825         * lib/argp-parse.c (N_): Define unconditionally.
50826         (argp_default_options): Fill out initializers with 0 to avoid
50827         gcc warnings.
50828
50829 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
50830
50831         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
50832         getopt1.c.
50833
50834 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
50835
50836         Merge from coreutils.
50837
50838         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
50839
50840         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
50841         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
50842
50843 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
50844
50845         Merge from coreutils.
50846
50847         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
50848         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
50849         for Reliant Unix 5.43.
50850
50851         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
50852         (union fooround): Use uintmax_t, not long int.
50853         The rest is a merge from libc:
50854         [defined _LIBC]: Include <shlib-compat.h>.
50855         (_obstack) [defined _LIBC]: Remove after 2.3.4.
50856
50857         * lib/settime.c (settime): Recode to avoid warning with
50858         Sun Forte C 6U2.
50859
50860         * lib/strverscmp.c: Convert to UTF-8.
50861
50862 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
50863
50864         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
50865         m4/uintmax_t.m4.
50866
50867 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50868
50869         * modules/xalloc-die: New file.
50870         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
50871
50872         * modules/md5 (Files): Add m4/uint32_t.m4.
50873         * modules/sha1: Renamed from modules/sha.
50874         (Files):
50875         Rename lib/sha.h to lib/sha1.h.
50876         Rename lib/sha.c to lib/sha1.c.
50877         Rename m4/sha.m4 to m4/sha1.m4.
50878         (lib_SOURCES): Likewise.
50879         (configure.ac): Rename gl_SHA to gl_SHA1.
50880         (Include): sha.h -> sha1.h.
50881
50882 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50883
50884         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
50885         * m4/sha1.m4: Renamed from sha.m4.
50886         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
50887
50888 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50889
50890         * lib/obstack.h (obstack_empty_p):
50891         Don't assume that chunk->contents is suitably aligned.
50892         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
50893         Likewise. Problem reported by Benno in
50894         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
50895
50896         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
50897         readable.  This could be improved further but it'd take some work.
50898
50899 2004-08-08  Simon Josefsson  <jas@extundo.com>
50900
50901         * modules/xgethostname (Depends-on): Remove exit and error (not
50902         used).
50903
50904         * modules/getpass-gnu: Add getpass.h.
50905         (Depends-on): Add stdbool.
50906         * modules/getpass: Add getpass.h.
50907
50908 2004-08-08  Simon Josefsson  <jas@extundo.com>
50909
50910         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
50911         Check getpass declaration.
50912
50913 2004-08-08  Simon Josefsson  <jas@extundo.com>
50914
50915         * lib/xgethostname.c: Don't include error.h (not used).
50916
50917         * lib/getpass.h: Add.
50918         * lib/getpass.c: Include getpass.h first.
50919
50920 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
50921
50922         * lib/xalloc-die.c: New file.
50923         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
50924         All uses removed.
50925         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
50926         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
50927         xalloc-die.c.
50928         (_, N_, xalloc_die): Move to xalloc-die.c.
50929         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
50930         so that we needn't mess with xalloc_msg_memory_exhausted.
50931
50932         * lib/sha1.h: Renamed from sha.h.
50933         (SHA1_H): Renamed from _SHA_H.
50934         (sha1_ctx): Renamed from sha_ctx.
50935         (sha1_init_ctx): Renamed from sha_init_ctx.
50936         (sha1_process_block): Renamed from sha_process_block.
50937         (sha1_process_bytes): Renamed from sha_process_bytes.
50938         (sha1_finish_ctx): Renamed from sha_finish_ctx.
50939         (sha1_read_ctx): Renamed from sha_read_ctx.
50940         (sha1_stream): Renamed from sha_stream.
50941         (sha1_buffer): Renamed from sha_buffer.
50942         * lib/sha1.c: Likewise; renamed from sha.c.
50943         Do not include <sys/types.h>.
50944         Include <stddef.h> rather than <stdlib.h>.
50945
50946 2004-08-08  Bruno Haible  <bruno@clisp.org>
50947
50948         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
50949         FILESYSTEM_PREFIX_LEN.
50950         * lib/progreloc.c: Likewise.
50951         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
50952
50953 2004-08-06  Simon Josefsson  <jas@extundo.com>
50954
50955         * modules/progname (Depends-on): Don't depend on stdbool.
50956
50957 2004-08-06  Simon Josefsson  <jas@extundo.com>
50958
50959         * modules/getsubopt: New file.
50960         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
50961         getsubopt.
50962
50963 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
50964
50965         More merge from coreutils.
50966
50967         * m4/utimens.m4, m4/utimecmp.m4: New files.
50968         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
50969         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
50970         prereq.m4, sha.m4: Import changes from coreutils.
50971
50972 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
50973
50974         More merge from coreutils.
50975         * modules/raise, modules/readtokens0, modules/utimens:
50976         * modules/utimecmp, module/xnanosleep: New files.
50977         * modules/strftime: Add lib/strftime.h.
50978         Change include from <time.h> to "strftime.h".
50979         * modules/yesno: Add lib/yesno.h.
50980         * modules/backupfile: Remove lib/addext.c.
50981         * modules/euidaccess: Add stat-macros.h.
50982         * modules/canonicalize, modules/euidaccess,
50983         modules/filemode, modules/lchown, modules/makepath,
50984         modules/rmdir, modules/stat: Likewise.
50985
50986 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
50987
50988         Merge from tar.
50989         * lib/argp-help.c (make_hol, hol_append): Don't assume that
50990         SIZE_MAX is a valid preprocessor constant.
50991         (__argp_basename): Change from "#ifndef _LIBC"
50992         to "#ifndef __argp_short_program_name", so that
50993         we don't compile these functions for tar.
50994
50995         More merges from coreutils.
50996         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
50997         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
50998         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
50999         * lib/addext.c: Remove; no longer needed.
51000         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
51001         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
51002         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
51003         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
51004         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
51005         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
51006         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
51007         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
51008         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
51009         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
51010         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
51011         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
51012         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
51013         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
51014         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
51015         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
51016         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
51017         Import changes from coreutils.
51018
51019 2004-08-05  Simon Josefsson  <jas@extundo.com>
51020
51021         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
51022
51023 2004-08-05  Simon Josefsson  <jas@extundo.com>
51024
51025         * m4/getsubopt.m4: New file.
51026
51027 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
51028
51029         Merge from coreutils.
51030
51031         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
51032         * m4/getcwd-path-max.m4: New files.
51033
51034         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
51035         FILESYSTEM_PREFIX_LEN ->
51036         FILE_SYSTEM_PREFIX_LEN.
51037         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
51038         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
51039         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
51040         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
51041
51042         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
51043         prerequisite modules now handle the DOS stuff.
51044         Don't check for unistd.h.
51045
51046 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
51047
51048         Merge from coreutils.
51049
51050         * lib/.gdb-history: Remove; this doesn't belong here.
51051
51052         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
51053         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
51054         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
51055         * lib/getcwd.c: New files.
51056
51057         * lib/dirname.h: Include <stdbool.h>.
51058         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
51059         for consistency with POSIX terminology.  All uses changed.
51060         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
51061         (strip_trailing_slashes): Use bool for booleans.
51062         * lib/stripslash.c (strip_trailing_slashes): Likewise.
51063
51064         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
51065         sometimes returns a positive errno value even when it succeeds.
51066         (print_errno_message) [!LIBC]: Fall back on strerror if
51067         __strerror_r fails.
51068
51069         * lib/path-concat.c (mempcpy): Don't define if a system header defines
51070         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
51071         (longest_relative_suffix): New function.
51072         (path_concat): Use it.  Assume first argument is not NULL.
51073         Port to DOS.  Omit redundant separators.
51074         Report an error instead of returning NULL.
51075         Use mempcpy instead of memcpy.
51076         (xpath_concat): Remove: not declared or used.
51077
51078         * lib/same.h: Include <stdbool.h>
51079         (same_name): Return bool, not int.
51080         * lib/same.c (same_name): Likewise.
51081         (errno): Don't declare; we assume C89 or better now.
51082
51083         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
51084         if not already defined.
51085
51086         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
51087         * lib/dup-safer.c (errno): Likewise.
51088
51089 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
51090
51091         Merge from coreutils.
51092         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
51093         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
51094         * modules/path-concat: Don't depend on strdup.
51095
51096 2004-08-03  Simon Josefsson  <jas@extundo.com>
51097
51098         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
51099         * lib/progname.h: Don't include stdbool.h.
51100
51101 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
51102
51103         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
51104         * MODULES.html.sh (func_all_modules): Remove fatal.
51105
51106 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
51107
51108         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
51109
51110 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
51111
51112         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
51113         working.
51114
51115 2004-08-02  Simon Josefsson  <jas@extundo.com>
51116
51117         * lib/getsubopt.h: New file, with comments from Bruno Haible.
51118         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
51119         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
51120
51121 2004-08-01  Simon Josefsson  <jas@extundo.com>
51122
51123         * lib/xgetdomainname.c: Include stdlib.h, for free().
51124
51125 2004-07-19  Bruno Haible  <bruno@clisp.org>
51126
51127         * MODULES.html.sh (func_all_modules): Add dummy.
51128
51129 2004-07-16  Simon Josefsson  <jas@extundo.com>
51130
51131         * modules/dummy: New file.
51132
51133 2004-07-16  Simon Josefsson  <jas@extundo.com>
51134
51135         * lib/dummy.c: New file.
51136
51137 2004-07-16  Bruno Haible  <bruno@clisp.org>
51138
51139         * lib/backupfile.h: Add extern "C" for C++.
51140         * lib/closeout.h: Likewise.
51141         * lib/copy-file.h: Likewise.
51142         * lib/findprog.h: Likewise.
51143         * lib/full-write.h: Likewise.
51144         * lib/pathname.h: Likewise.
51145         * lib/progname.h: Likewise.
51146         * lib/stpcpy.h: Likewise.
51147         * lib/stpncpy.h: Likewise.
51148         * lib/strcase.h: Likewise.
51149         * lib/strstr.h: Likewise.
51150         * lib/xalloc.h: Likewise.
51151
51152         * lib/mbswidth.h: Add extern "C" for C++.
51153         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
51154
51155 2004-07-13  Robert Millan  <robertmh@gnu.org>
51156
51157         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
51158
51159 2004-07-09  Simon Josefsson  <jas@extundo.com>
51160
51161         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
51162         failed without this.)
51163
51164 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
51165
51166         * modules/chown (Files): Add lib/fchown-stub.c, since
51167         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
51168
51169 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
51170
51171         * lib/fchown-stub.c: New file.
51172
51173 2004-06-24  Jim Meyering  <jim@meyering.net>
51174
51175         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
51176
51177 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51178
51179         * modules/argz: Omit "#include".
51180
51181         * MODULES.html.sh (func_all_modules): Add calloc, to match
51182         2004-06-01 addition of calloc module.
51183
51184 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51185
51186         * m4/argz.m4: New file, which is autoupdated from libtool.
51187
51188 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51189
51190         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
51191         libtool.
51192
51193 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51194
51195         * config/srclist-update: Don't insist on "USA." before the
51196         close-comment, as libtool omits the period and puts the */ on a
51197         separate line.
51198         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
51199         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
51200
51201 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
51202
51203         * modules/argz: New file.
51204         * MODULES.html.sh (func_all_modules): Add argz.
51205
51206 2004-06-12  Jim Meyering  <jim@meyering.net>
51207         and  Paul Eggert  <eggert@cs.ucla.edu>
51208
51209         * modules/hash (Files): Add lib/xalloc.h.
51210         * modules/pipe (Depends-on): Add wait-process.
51211         * modules/stat (Depends-on): Add xalloc.
51212         * modules/userspec (Files): Add lib/userspec.h.
51213         * modules/xstrto
51214
51215         Upgrade from gettext-0.13.
51216         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
51217         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
51218         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
51219
51220 2004-06-10  Jim Meyering  <jim@meyering.net>
51221
51222         * lib/calloc.c: New file.
51223
51224 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
51225
51226         * lib/getdate.y (yylex): Allow space between sign and number.
51227         Problem reported by Dan Jacobson.
51228
51229 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
51230
51231         Merge from coreutils CVS.
51232
51233         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
51234         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
51235         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
51236         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
51237         xstrtol.m4: Fix copyright date and/or serial number.
51238
51239         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
51240         See if we need an fchown replacement.
51241         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
51242         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
51243         and use the replacement function if we detect either defect.
51244
51245         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
51246         gl_UTIMECMP.
51247
51248 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
51249         and  Jim Meyering  <jim@meyering.net>
51250
51251         Merge from coreutils CVS.
51252
51253         * lib/stat-macros.h: New file, with contents from file-type.h
51254         and coreutils' system.h.
51255         * lib/file-type.c: Include "stat-macros.h".
51256         * lib/file-type.h (file_type): Move all macro definitions to new file,
51257         stat-macros.h.
51258
51259         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
51260         Wrap old code with this conditional.
51261         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
51262         function that does not dereference symlinks.
51263         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
51264
51265         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
51266         dependency problems.
51267         (xreadlink): Accept new arg SIZE, for efficiency.
51268         All decls and uses changed.
51269         * lib/xreadlink.h: Include <stddef.h>, for size_t.
51270
51271         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
51272         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
51273
51274         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
51275         sysexits.h.
51276
51277 2004-06-01  Jim Meyering  <jim@meyering.net>
51278
51279         * m4/calloc.m4: New file.
51280
51281 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
51282
51283         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
51284         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
51285         Also, fix a typo in a diagnostic.
51286
51287 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
51288
51289         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
51290         or AC_FUNC_REALLOC.
51291
51292 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
51293
51294         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
51295         macros to be defined.
51296         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
51297         the allocator returns NULL because the requested size is zero.
51298
51299 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51300
51301         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
51302         var.  Add comment explaining why libc still defines it.  This
51303         merges the following patch from glibc:
51304         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
51305
51306 2004-05-20  Andreas Schwab  <schwab@suse.de>
51307
51308         * m4/free.m4: Replace free if it not known to work, not the other
51309         way round.
51310
51311 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
51312
51313         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
51314         present in glibc since revision 1.1 of this file.
51315         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
51316         obstack_alignment_mask, obstack_alloc, obstack_base,
51317         obstack_blank, obstack_blank_fast, obstack_chunk_size,
51318         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
51319         obstack_grow0, obstack_init, obstack_int_grow,
51320         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
51321         obstack_next_free, obstack_object_size, obstack_ptr_grow,
51322         obstack_ptr_grow_fast, obstack_room): Remove declarations of
51323         nonexistent functions.
51324
51325 2004-05-18  Karl Berry  <karl@gnu.org>
51326
51327         * config/srclist.txt: break link for vasnprintf.c.
51328
51329 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
51330
51331         Port obstack to the AS/400, where pointers are 16 bytes wide and
51332         you cannot cast an integer to a valid pointer.  This patch is
51333         currently waiting to be integrated into glibc; see
51334         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
51335
51336         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
51337         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
51338         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
51339         (struct obstack): temp member is now a union of a pointer and
51340         an integer, instead of an integer.  All integer uses changed.
51341         This does not affect the physical layout of struct obstack,
51342         except on hosts (like the AS/400) where the size or alignment of
51343         void * is greater than that of ptrdiff_t.
51344         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
51345         __STDC__)]: Store temporary in pointer member of union, not
51346         integer member.
51347         * lib/obstack.c: Include <stddef.h>, for offsetof.
51348         (struct fooalign): Remove; it doesn't need a name.
51349         (union fooround): Change double to long double, and add void *.
51350         (DEFAULT_ALIGNMENT): Use offsetof to compute.
51351         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
51352         not a macro.  Hence the values are always int; so remove all
51353         casts-to-int in uses.
51354
51355 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
51356
51357         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
51358         we can get this patch merged into glibc.
51359
51360 2004-05-17  Derek R. Price  <derek@ximbiot.com>
51361             Paul Eggert  <eggert@cs.ucla.edu>
51362
51363         * m4/argp: Depend on alloca.
51364
51365 2004-05-17  Derek R. Price  <derek@ximbiot.com>
51366             Paul Eggert  <eggert@cs.ucla.edu>
51367
51368         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
51369         freecoding.
51370
51371 2004-05-17  Bruno Haible  <bruno@clisp.org>
51372
51373         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
51374         precision that consists of a '.' followed by an empty digit string.
51375         Patch by Tor Lillqvist <tml@iki.fi>.
51376
51377 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
51378
51379         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
51380         for backward compatibility with older code.  We need our own
51381         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
51382         it under some other name, and our alloca.h will define it.
51383
51384 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
51385             Derek Price  <derek@ximbiot.com>
51386
51387         * lib/alloca.c: Include <alloca.h>, to get our interface.
51388         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
51389         include <alloca.h> first.  Use C89 prototype for alloca; this
51390         requires including <stddef.h> for size_t.  Use extern "C" if C++.
51391         Use #elif for simplicity, since we can assume C89 now.
51392         Don't try to source the system alloca.h since it will not be found
51393         and to prevent recursively including its replacement.
51394         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
51395         * lib/regex.c: Likewise.
51396
51397 2004-05-16  Derek Price  <derek@ximbiot.com>
51398             Paul Eggert  <eggert@cs.ucla.edu>
51399
51400         getline cleanup.  This changes the getndelim2 API: both order of
51401         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
51402         no delimiter).
51403
51404         * lib/getline.c: Don't include stddef.h or stdio.h, since our
51405         interface does that.
51406         (getline): Always use getdelim, so that we don't have two
51407         copies of this code.
51408         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
51409         if available.
51410         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
51411         (GETNDELIM2_MAXIMUM): New macro.
51412         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
51413         instead of the old practice of delim2==0.  All callers changed.
51414         Return -1 on overflow, instead of returning junk.
51415         Do not set *linesize unless allocation succeeds.
51416         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
51417         that we include sys/types.h.
51418         * lib/getnline.h: Likewise.
51419         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
51420         (getndelim2): Reorder arguments.
51421         * lib/getnline.c (getnline, getndelim):
51422         Don't discard the NMAX argument.
51423         (getnline): Invoke getndelim, to avoid code duplication.
51424         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
51425         of (size_t) -1 by callers of the getnline family.
51426
51427 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
51428
51429         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
51430         Check for gettimeofday.
51431         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
51432         Check for settimeofday, stime.
51433
51434 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
51435
51436         * lib/nanosleep.c (suspended): Change its type from int to
51437         sig_atomic_t volatile.
51438         (first_call): Make it private to rpl_nanosleep, and have it
51439         be zero initially as that's a bit faster.
51440         (my_usleep): Round up fractional times instead of truncating them,
51441         as this is the usual meaning for 'sleep'.
51442
51443         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
51444         doesn't work.
51445         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
51446         (ENOSYS): Define if not defined.
51447         (settime): Fall back on stime if it exists and settimeofday fails.
51448         But don't bother with fallbacks if a method fails with errno == EPERM.
51449
51450 2004-05-11  Jim Meyering  <jim@meyering.net>
51451
51452         Prior to this change, the save_cwd caller required read access to the
51453         current directory on most systems (ones with the fchdir function).
51454
51455         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
51456         fails, try write-only, and finally, resort to using xgetcwd.
51457
51458 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
51459
51460         * lib/obstack.c, obstack.h: Import changes from libc.
51461
51462 2004-04-28  Bruno Haible  <bruno@clisp.org>
51463
51464         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
51465         also implicitly appends .exe to executables.
51466         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
51467         accepts Windows pathnames.
51468         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
51469         Treat Cygwin like Windows, since it now accepts Windows pathnames.
51470         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
51471         Treat Cygwin like Windows, since it now accepts Windows pathnames.
51472         Reported by Derek Robert Price <derek@ximbiot.com>.
51473
51474 2004-04-21  Karl Berry  <karl@gnu.org>
51475
51476         * config/srclist.txt (localcharset.c): break sync.
51477
51478 2004-04-20  Paul Eggert  <eggert@twinsun.com>
51479
51480         * m4/host-os.m4: Add a copyright notice.
51481
51482 2004-04-20  Jim Meyering  <jim@meyering.net>
51483
51484         Change UTILS_ to gl_ in AC_DEFINE'd names.
51485         Change utils_- and jm_-prefixed variables, too.
51486         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
51487         UTILS_FUNC_MKDIR_TRAILING_SLASH.
51488         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
51489
51490         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
51491         Don't emit trailing blanks.
51492         Also rename jm_-prefixed variables to have gl_ prefix.
51493
51494         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
51495         Also rename jm_-prefixed variables to have gl_ prefix.
51496
51497         * m4/jm-macros.m4: Reflect the renamings.
51498         * m4/prereq.m4: Likewise.
51499
51500 2004-04-20  Jim Meyering  <jim@meyering.net>
51501
51502         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
51503         memory.
51504
51505 2004-04-20  Jim Meyering  <jim@meyering.net>
51506             Bruno Haible  <bruno@clisp.org>
51507
51508         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
51509         memory when realloc fails.
51510
51511 2004-04-19  Jim Meyering  <jim@meyering.net>
51512
51513         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
51514         now that readutmp.c may call `free (0)'.
51515
51516 2004-04-19  Bruno Haible  <bruno@clisp.org>
51517
51518         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
51519         * m4/inttypes_h.m4: Likewise.
51520         * m4/stdint_h.m4: Likewise.
51521         * m4/intmax_t.m4: Likewise.
51522         * m4/uintmax_t.m4: Likewise.
51523
51524 2004-04-18  Jim Meyering  <jim@meyering.net>
51525
51526         * m4/prereq.m4: Don't forbid jm_ prefix.
51527
51528         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
51529         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
51530         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
51531         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
51532         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
51533         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
51534         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
51535         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
51536         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
51537         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
51538         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
51539         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
51540         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
51541         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
51542         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
51543         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
51544         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
51545         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
51546         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
51547
51548 2004-04-18  Jim Meyering  <jim@meyering.net>
51549
51550         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
51551         failure, don't leak memory and do call END_UTMP_ENT.
51552
51553 2004-04-16  Jim Meyering  <jim@meyering.net>
51554
51555         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
51556         coreutils' stat program.
51557         (gl_PREREQ): Don't require jm_PREREQ_STAT.
51558
51559 2004-04-11  Paul Eggert  <eggert@twinsun.com>
51560
51561         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
51562         C89.
51563         (CHAR_BIT): Remove, since we assume C89.
51564         Include <stdint.h> if available, as per current Autoconf CVS advice.
51565
51566 2004-03-31  Jim Meyering  <jim@meyering.net>
51567
51568         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
51569         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
51570         * m4/xalloc.m4: Likewise.
51571
51572 2004-03-30  Paul Eggert  <eggert@twinsun.com>
51573
51574         Merge from coreutils.
51575
51576         * m4/inttostr.m4: New file.
51577         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
51578         Require AM_STDBOOL_H and gl_TIMESPEC instead.
51579         Require gl_CLOCK_TIME.
51580         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
51581
51582 2004-03-30  Paul Eggert  <eggert@twinsun.com>
51583
51584         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
51585         not bool, to be more consistent with Unix conventions.
51586         Suggested by Bruno Haible.
51587
51588         Merge from coreutils.
51589
51590         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
51591         * lib/umaxtostr.c: New files.
51592
51593         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
51594         the usual <time.h> dance.
51595         (get_date): Change signature to support fractional time stamps.
51596         All callers changed.
51597         * lib/getdate.y: Include "getdate.h" first, as we can now
51598         assume C89 and don't need to worry about 'const'.
51599         Similarly, include "unlocked-io.h" near start, not in middle.
51600         Include <limits.h>.
51601         (textint.value): Use long int rather than int.
51602         (textint.digits): Use size_t rather than int.
51603         (BILLION, LOG10_BILLION): New constants.
51604         (parser_control): New member rel_ns.  Members day_ordinal,
51605         time_zone, month, day, hour, minutes, rel_year, rel_month,
51606         rel_day, rel_hour, rel_minutes, rel_seconds
51607         are now long int, not int.  Member seconds is now struct timespec,
51608         not int.  New member timespec_seen.  Members dates_seen, days_seen,
51609         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
51610         not int.
51611         (%union.intval): Now long int, not int.
51612         New member timespec.
51613         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
51614         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
51615         (spec): Now is a timespec or an item list.
51616         (timespec, items): New nonterminals.
51617         (time, rel, relunit, number, get_date):
51618         Add support for fractional seconds.
51619         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
51620         (gmtime, localtime, mktime): Remove decls; not needed with C89.
51621         (to_hour): First arg is now long int, not int.
51622         (to_year): Returns long int, not int.
51623         Don't treat year -70 like 70.
51624         (tm_diff): Returns long int, not int.
51625         (lookup_word): Use bool instead of int when appropriate.
51626         (yylex): Use size_t for count, not int.
51627         Detect overflow when parsing large integer constants.
51628         Add support for fractions.
51629         (get_date): Make pointers 'const' if possible.
51630         Use more-portable code to detect integer overflow.
51631         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
51632         Don't use ctime; it's not reliable if the year has >4 digits.
51633
51634         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
51635         This is for compatibility with BSD.
51636
51637         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
51638         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
51639         From coreutils' system.h.
51640
51641         * lib/userspec.c: Don't include "posixver.h".
51642         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
51643         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
51644         compatible extension.  Simplify code by removing a boolean int
51645         that was always nonzero if a string was nonnull.
51646
51647 2004-03-30  Jim Meyering  <jim@meyering.net>
51648
51649         Merge from coreutils.
51650
51651         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
51652         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
51653         on some systems one must include <grp.h> before it.
51654         Reported by Christian Krackowizer.
51655
51656 2004-03-30  Jim Meyering  <jim@meyering.net>
51657
51658         Merge from coreutils.
51659
51660         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
51661
51662         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
51663         an empty input stream.
51664
51665         * lib/readtokens.c: Include <stdbool.h>.
51666         (readtoken): Use `size_t' rather than int/long.
51667         All callers adjusted.
51668         Use `bool' rather than `int' where appropriate.
51669         Use memset rather than an explicit loop.
51670         Use x2nrealloc rather than xrealloc.
51671         Allow the use of `\0' as a delimiter.
51672         (readtokens): Likewise.
51673         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
51674
51675 2004-03-30  Jim Meyering  <jim@meyering.net>
51676
51677         * m4/realloc.m4: Remove file, since now it does no more than
51678         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
51679         the `configure.ac' section of module/realloc.
51680         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
51681
51682 2004-03-30  Bruno Haible  <bruno@clisp.org>
51683
51684         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
51685         nonnull.
51686
51687 2004-03-29  Paul Eggert  <eggert@twinsun.com>
51688
51689         Merge changes to getloadavg.c from coreutils and Emacs.
51690
51691         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
51692         Define to an expression, not to the empty string.
51693         Include cloexec.h and xalloc.h.
51694         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
51695         Use set_cloexec_flag rather than rolling our own.
51696         * lib/cloexec.c, lib/cloexec.h: New files.
51697
51698 2004-03-29  Paul Eggert  <eggert@twinsun.com>
51699
51700         * m4/cloexec.m4: New file.
51701
51702 2004-03-18  Paul Eggert  <eggert@twinsun.com>
51703
51704         * lib/getopt.h: Sync with libc CVS.
51705
51706 2004-03-18  Paul Eggert  <eggert@twinsun.com>
51707             Bruno Haible  <bruno@clisp.org>
51708
51709         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
51710         mbswidth.
51711
51712 2004-03-18  Paul Eggert  <eggert@twinsun.com>
51713             Bruno Haible  <bruno@clisp.org>
51714
51715         * lib/mbswidth.h: Include <wchar.h> only if
51716         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
51717         <wchar.h>.
51718         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
51719
51720 2004-03-09  Paul Eggert  <eggert@twinsun.com>
51721
51722         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
51723         Sync with libc CVS.
51724         * lib/getopt_int.h: New file, also synced from libc.
51725
51726 2004-03-09  Paul Eggert  <eggert@twinsun.com>
51727
51728         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
51729         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
51730         Bring back getopt.c, getopt.h, getopt1.c.
51731
51732 2004-03-07  Paul Eggert  <eggert@twinsun.com>
51733
51734         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
51735         All uses changed.  Check for sa_sigaction member; this fixes
51736         a bug first reported by Jason Andrade in
51737         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
51738
51739 2004-03-07  Paul Eggert  <eggert@twinsun.com>
51740
51741         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
51742         '#if' expressions.  Unlike the code it replaces, it does not
51743         depend on (defined _SC_PAGESIZE).  However, it does depend on
51744         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
51745         first reported by Jason Andrade in
51746         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
51747
51748 2004-02-25  Simon Josefsson  <jas@extundo.com>
51749
51750         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
51751
51752 2004-02-25  Simon Josefsson  <jas@extundo.com>
51753
51754         * lib/strdup.h: New file.
51755         * lib/strdup.c: Include it.
51756         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
51757         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
51758
51759 2004-02-23  Karl Berry  <karl@gnu.org>
51760
51761         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
51762         (from fencepost.gnu.org:/gd/gnuorg).
51763
51764 2004-02-23  Karl Berry  <karl@gnu.org>
51765
51766         * config/srclistvars.sh (GNUORG) [karl]: redefine.
51767         * config/srclist.txt: add maintain/standards documents.
51768
51769 2004-02-18  Bruno Haible  <bruno@clisp.org>
51770
51771         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
51772         Reported by Derek Robert Price <derek@ximbiot.com>.
51773
51774 2004-02-16  Karl Berry  <karl@gnu.org>
51775
51776         * config/mkinstalldirs, install-sh: update from automake.
51777
51778 2004-02-06  Karl Berry  <karl@gnu.org>
51779
51780         * m4/po.m4: update from gettext 0.14.1.
51781
51782 2004-02-06  Karl Berry  <karl@gnu.org>
51783
51784         * lib/config.charset: update from gettext 0.14.1.
51785
51786 2004-02-05  Paul Eggert  <eggert@twinsun.com>
51787
51788         Add comments and code, prompted by suggestions from Bruno Haible
51789         for sh-quote.
51790         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
51791         describing the enum quoting_style values.
51792         * lib/quotearg.c (quotearg_alloc): New function.
51793         (quotearg_buffer_restyled): Treat lone { and } as special.
51794         Treat = as special.  Work around bug with older shells
51795         that "see" a '\' that is really the 2nd byte of a multibyte char.
51796         Quote empty string with shell_quoting_style.
51797
51798 2004-02-03  Bruno Haible  <bruno@clisp.org>
51799
51800         * m4/pipe.m4: New file, from GNU gettext.
51801
51802 2004-02-03  Bruno Haible  <bruno@clisp.org>
51803
51804         * lib/pipe.h: New file, from GNU gettext.
51805         * lib/pipe.c: New file, from GNU gettext.
51806
51807 2004-01-27  Bruno Haible  <bruno@clisp.org>
51808
51809         * m4/execute.m4: New file, from GNU gettext.
51810
51811 2004-01-27  Bruno Haible  <bruno@clisp.org>
51812
51813         * lib/execute.h: New file, from GNU gettext.
51814         * lib/execute.c: New file, from GNU gettext.
51815         * lib/w32spawn.h: New file, from GNU gettext.
51816
51817 2004-01-24  Paul Eggert  <eggert@twinsun.com>
51818
51819         Merge from diffutils.
51820
51821         * lib/file-type.c (file_type): Add typed memory objects.
51822         * lib/file-type.h (S_TYPEISTMO): New macro.
51823
51824         * lib/c-stack.h (c_stack_action): Remove argv argument.
51825         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
51826         (die): Don't calculate message unless segv_action returns.
51827         (get_stack_location, min_address_from_argv, max_address_from_argv,
51828         volatile stack_base, volatile_stack_size): Remove.
51829         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
51830         that every segmentation violation is a stack overflow.  (Ouch!)
51831         See Debian bug 136249 (still outstanding) for more info about why
51832         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
51833
51834 2004-01-24  Paul Eggert  <eggert@twinsun.com>
51835
51836         Exit-status fix from coreutils.
51837
51838         Use exit_failure consistently in place of EXIT_FAILURE,
51839         so that program exit statuses are consistent on failure.
51840
51841         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
51842         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
51843         * lib/argmatch.h: Comment fix to match the above.
51844         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
51845         Now a macro referring to exit_failure, instead of a separate
51846         variable.  Include "exitfail.h" to get it.
51847         * lib/xstrtol.h: Include "exitfail.h".
51848         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
51849
51850         * lib/long-options.c (parse_long_options): Use prototype
51851         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
51852         for clarity.
51853
51854 2004-01-21  Jim Meyering  <jim@meyering.net>
51855
51856         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
51857         so as not to conflict with a different-sized __mktime_internal
51858         function in GNU libc.
51859         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
51860         Problem building statically-linked `ls' reported by Michael Brunnbauer.
51861
51862 2004-01-20  Karl Berry  <karl@gnu.org>
51863
51864         * config/config.guess: update from config.
51865
51866         * config/srclistvars.sh: GNUWWWLICENSES for karl.
51867
51868 2004-01-20  Bruno Haible  <bruno@clisp.org>
51869
51870         Safer stack allocation.
51871         * lib/setenv.c: Include allocsa.h.
51872         (alloca): Remove fallback definition.
51873         (freea): Remove macro.
51874         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
51875         instead of freea.
51876
51877 2004-01-20  Bruno Haible  <bruno@clisp.org>
51878
51879         * m4/eealloc.m4: New file, from GNU gettext.
51880
51881 2004-01-20  Bruno Haible  <bruno@clisp.org>
51882
51883         * m4/allocsa.m4: New file, from GNU gettext.
51884
51885 2004-01-20  Bruno Haible  <bruno@clisp.org>
51886
51887         * lib/xallocsa.h: New file, from GNU gettext.
51888         * lib/xallocsa.c: New file, from GNU gettext.
51889
51890 2004-01-20  Bruno Haible  <bruno@clisp.org>
51891
51892         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
51893
51894 2004-01-20  Bruno Haible  <bruno@clisp.org>
51895
51896         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
51897         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
51898         specially.
51899
51900 2004-01-20  Bruno Haible  <bruno@clisp.org>
51901
51902         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
51903         patch.
51904
51905 2004-01-20  Bruno Haible  <bruno@clisp.org>
51906
51907         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
51908
51909 2004-01-20  Bruno Haible  <bruno@clisp.org>
51910
51911         * lib/eealloc.h: New file.
51912
51913 2004-01-20  Bruno Haible  <bruno@clisp.org>
51914
51915         * lib/binary-io.h: Avoid warnings on Cygwin.
51916
51917 2004-01-20  Bruno Haible  <bruno@clisp.org>
51918
51919         * lib/allocsa.h: New file, from GNU gettext.
51920         * lib/allocsa.c: New file, from GNU gettext.
51921
51922 2004-01-18  Karl Berry  <karl@gnu.org>
51923
51924         * doc/gpl.texi, doc/lgpl.texi: new files.
51925
51926 2004-01-18  Karl Berry  <karl@gnu.org>
51927
51928         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
51929         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
51930
51931 2004-01-15  Paul Eggert  <eggert@twinsun.com>
51932
51933         Merge from coreutils.
51934
51935         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
51936         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
51937         (gl_DEFAULT_POSIX2_VERSION): Move
51938         the documentation from 'configure' into 'config.hin',
51939         so that 'configure --help' isn't burdened by it and
51940         we don't have to worry about its formatting there.
51941         Reword the documentation so that it's more succinct
51942         and can be run together into a single paragraph.
51943         * m4/same.m4 (gl_SAME): Check for pathconf.
51944
51945 2004-01-15  Paul Eggert  <eggert@twinsun.com>
51946
51947         Merge from coreutils.
51948
51949         * lib/posixver.c: Include posixver.h.
51950
51951         * lib/same.c: Include <stdbool.h>, <limits.h>.
51952         (_POSIX_NAME_MAX): Define if not defined.
51953         (MIN): New macro.
51954         (same_name): If file names are silently truncated, report
51955         that the file names are the same if they are the same after
51956         the silent truncation.
51957
51958         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
51959         conversion function.
51960         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
51961         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
51962         longer needed.
51963
51964 2004-01-15  Jim Meyering  <jim@meyering.net>
51965
51966         Merge from coreutils.
51967
51968         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
51969         if no library is required.
51970         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
51971         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
51972         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
51973         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
51974         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
51975         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
51976         value, $ac_cv_search_crypt, if it's "none required".
51977         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
51978         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
51979         not gl_FUNC_GETLOADAVG.
51980         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
51981         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
51982
51983 2004-01-15  Jim Meyering  <jim@meyering.net>
51984
51985         Merge from coreutils.
51986
51987         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
51988         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
51989         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
51990
51991         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
51992         optional configure-time default.
51993
51994         * lib/version-etc.c (version_etc_copyright): Update copyright date.
51995
51996         * lib/xreadlink.c (xreadlink): Correct outdated comment.
51997
51998 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
51999
52000         Merge from coreutils.
52001
52002         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
52003         value, $ac_cv_search_nanosleep, if it's "none required".
52004
52005 2004-01-14  Paul Eggert  <eggert@twinsun.com>
52006
52007         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
52008         with like-named macro in fnmatch.c.
52009         (EXT): Use an internal constant instead.
52010
52011         Merge fnmatch patches from glibc.
52012         * lib/fnmatch.c (mbsinit): Remove define.
52013         Add libc_hidden_ver (__fnmatch, fnmatch).
52014         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
52015         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
52016
52017 2004-01-14  Karl Berry  <karl@gnu.org>
52018
52019         * config/install-sh: update from automake.
52020
52021 2004-01-13  Karl Berry  <karl@gnu.org>
52022
52023         * config/install-sh: update from automake.
52024
52025 2004-01-09  Karl Berry  <karl@gnu.org>
52026
52027         * config/install-sh: update from automake.
52028
52029 2004-01-05  Karl Berry  <karl@gnu.org>
52030
52031         * config/config.{sub,guess}: update from config.
52032
52033 2003-12-31  Karl Berry  <karl@gnu.org>
52034
52035         * config/depcomp: update from automake.
52036
52037 2003-12-14  Karl Berry  <karl@gnu.org>
52038
52039         * lib/config.charset: update from gettext-runtime.
52040
52041 2003-12-03  Paul Eggert  <eggert@twinsun.com>
52042
52043         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
52044         Bug reported by Alfred M. Szmidt.
52045
52046 2003-12-03  Bruno Haible  <bruno@clisp.org>
52047
52048         * m4/gettext.m4: Upgrade from gettext-0.13.
52049         * m4/po.m4: Upgrade from gettext-0.13.
52050         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
52051         * m4/intmax.m4: New file, from gettext-0.13.
52052         * m4/printf-posix.m4: New file, from gettext-0.13.
52053
52054 2003-11-29  Karl Berry  <karl@gnu.org>
52055
52056         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
52057
52058 2003-11-25  Paul Eggert  <eggert@twinsun.com>
52059             Bruno Haible  <bruno@clisp.org>
52060
52061         * lib/printf-parse.h: Don't include sys/types.h.
52062         (ARG_NONE): New macro.
52063         (char_directive): Change type of *arg_index fields to size_t.
52064         * lib/printf-parse.c: Don't include sys/types.h.
52065         (SSIZE_MAX): Remove macro.
52066         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
52067         Remove unnecessary overflow check.
52068         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
52069         fields.
52070
52071 2003-11-25  Bruno Haible  <bruno@clisp.org>
52072
52073         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
52074
52075 2003-11-25  Bruno Haible  <bruno@clisp.org>
52076
52077         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
52078         gt_TYPE_SSIZE_T.
52079
52080 2003-11-24  Paul Eggert  <eggert@twinsun.com>
52081
52082         * modules/alloca: Remove dependency on xalloc.
52083
52084 2003-11-24  Paul Eggert  <eggert@twinsun.com>
52085
52086         * lib/alloca.c: Remove dependency on xalloc module.
52087         (xalloc_die): Remove.
52088         (memory_full) [!defined emacs]: New macro.
52089         [!defined emacs]: Don't include xalloc.h.
52090         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
52091         address arithmetic overflows.  Change datatypes a bit to avoid
52092         unnecessary casts.
52093
52094 2003-11-22  Jim Meyering  <jim@meyering.net>
52095
52096         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
52097         s/size/size_t/.
52098
52099 2003-11-21  Karl Berry  <karl@gnu.org>
52100
52101         * config/config.{sub,guess}: update from config.
52102
52103 2003-11-18  Karl Berry  <karl@gnu.org>
52104
52105         * config/config.{sub,guess}: update from config.
52106
52107         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
52108
52109 2003-11-17  Paul Eggert  <eggert@twinsun.com>
52110
52111         * README: Mention that S+T cannot overflow if S is the size of
52112         an existing object and T is sufficiently small.
52113
52114 2003-11-17  Jim Meyering  <jim@meyering.net>
52115
52116         On systems without utime and without a utimes function capable of
52117         dealing with a NULL struct utimbuf* argument, this utime replacement
52118         could -- in unusual circumstances -- leak a file descriptor.
52119         * lib/utime.c: Include <unistd.h> and <errno.h>.
52120         (utime_null): Be sure to close `fd' and to preserve errno.
52121         Reported by Geoff Collyer via Arnold Robbins.
52122
52123 2003-11-17  Bruno Haible  <bruno@clisp.org>
52124
52125         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
52126         (Depends-on): Add xsize.
52127
52128 2003-11-17  Bruno Haible  <bruno@clisp.org>
52129
52130         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
52131
52132 2003-11-17  Bruno Haible  <bruno@clisp.org>
52133
52134         * lib/vasnprintf.c (alloca): Remove fallback definition.
52135         (freea): Remove definition.
52136         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
52137         Reported by Paul Eggert.
52138
52139 2003-11-16  Paul Eggert  <eggert@twinsun.com>
52140             Bruno Haible  <bruno@clisp.org>
52141
52142         Protect against address arithmetic overflow.
52143         * lib/printf-args.h: Include stddef.h.
52144         (arguments): Change type of field 'count' to size_t.
52145         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
52146         'unsigned int' where appropriate.
52147         * lib/printf-parse.h: Include sys/types.h.
52148         (char_directive): Change type of *arg_index fields to ssize_t.
52149         (char_directives): Change type of fields 'count', max_*_length to
52150         size_t.
52151         * lib/printf-parse.c: Include sys/types.h and xsize.h.
52152         (SSIZE_MAX): Define fallback value.
52153         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
52154         instead of 'int' where appropriate. Check a_allocated, d_allocated
52155         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
52156         * lib/vasnprintf.c: Include xsize.h.
52157         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
52158         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
52159         overflow. Avoid wraparound when converting a width or precision from
52160         decimal to binary.
52161
52162 2003-11-16  Bruno Haible  <bruno@clisp.org>
52163
52164         Update from GNU gettext.
52165         * lib/printf-parse.c: Generalize to it can be compiled for wide
52166         strings.
52167         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
52168         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
52169         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
52170         SNPRINTF): New macros.
52171         Don't include <alloca.h> if the file is used inside libintl.
52172         (local_wcslen): New function, for Solaris 2.5.1.
52173         (VASNPRINTF): Use it instead of wcslen.
52174
52175 2003-11-16  Bruno Haible  <bruno@clisp.org>
52176
52177         * lib/xsize.h (xmax): New function.
52178         (xsum, xsum3, xsum4): Declare as "pure" functions.
52179
52180 2003-11-12  Paul Eggert  <eggert@twinsun.com>
52181
52182         * modules/xalloc (Files): Undo latest change, since xalloc.h
52183         no longer needs SIZE_MAX or PTRDIFF_MAX.
52184
52185 2003-11-12  Paul Eggert  <eggert@twinsun.com>
52186
52187         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
52188         gl_PTRDIFF_MAX.
52189
52190 2003-11-12  Paul Eggert  <eggert@twinsun.com>
52191
52192         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
52193         "return", to pacify some unknown compiler.  Problem reported
52194         by Joerg Schilling.
52195
52196 2003-11-12  Paul Eggert  <eggert@twinsun.com>
52197
52198         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
52199         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
52200         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
52201         heuristic is just as accurate as far as we know, and it removes a
52202         dependency on size_max.m4 and ptrdiff_max.m4.
52203
52204 2003-11-11  Bruno Haible  <bruno@clisp.org>
52205
52206         * modules/xsize (Files): Add m4/size_max.m4.
52207         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
52208
52209 2003-11-11  Bruno Haible  <bruno@clisp.org>
52210
52211         * m4/size_max.m4: New file.
52212         * m4/ptrdiff_max.m4: New file.
52213         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
52214         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
52215         (gl_XALLOC): Invoke it.
52216
52217 2003-11-11  Bruno Haible  <bruno@clisp.org>
52218
52219         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
52220         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
52221         defined.
52222
52223 2003-11-10  Paul Eggert  <eggert@twinsun.com>
52224
52225         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
52226         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
52227         rejected some allocations of exactly SIZE_MAX - 2 bytes.
52228         From Bruno Haible.
52229         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
52230         not (size_t) -1, since it's defined here.
52231
52232 2003-11-09  Karl Berry  <karl@gnu.org>
52233
52234         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
52235
52236 2003-11-06  Paul Eggert  <eggert@twinsun.com>
52237
52238         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
52239         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
52240         Reject sizes of exactly SIZE_MAX bytes.
52241         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
52242         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
52243
52244 2003-11-05  Bruno Haible  <bruno@clisp.org>
52245
52246         * lib/xsize.h: Include limits.h, to avoid a possible collision with
52247         SIZE_MAX defined in <limits.h> on Solaris.
52248
52249 2003-11-04  Jim Meyering  <jim@meyering.net>
52250
52251         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
52252         variable names, rather than @VAR@.
52253         * modules/poll: Likewise.
52254
52255 2003-11-04  Bruno Haible  <bruno@clisp.org>
52256
52257         * modules/xsize: New file.
52258         * modules/linebreak: Depend on xsize.
52259         * MODULES.html.sh (func_all_modules): Add xsize.
52260
52261 2003-11-04  Bruno Haible  <bruno@clisp.org>
52262
52263         * m4/xsize.m4: New file.
52264
52265 2003-11-04  Bruno Haible  <bruno@clisp.org>
52266
52267         * lib/xsize.h: New file.
52268         * lib/linebreak.c: Include xsize.h.
52269         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
52270         argument for overflow.
52271         Suggested by Paul Eggert.
52272
52273 2003-11-03  Karl Berry  <karl@gnu.org>
52274
52275         * config/config.{guess,sub}: update from config.
52276
52277 2003-11-03  Jim Meyering  <jim@meyering.net>
52278
52279         * modules/userspec (lib_SOURCES): Add userspec.h.
52280         (Include): Add "userspec.h".
52281         Improve description.
52282
52283 2003-11-03  Jim Meyering  <jim@meyering.net>
52284
52285         * lib/userspec.c: Include "userspec.h".
52286         * lib/userspec.h: New file.
52287
52288 2003-11-03  Bruno Haible  <bruno@clisp.org>
52289
52290         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
52291
52292 2003-11-03  Bruno Haible  <bruno@clisp.org>
52293
52294         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
52295         available, to avoid (extremely rare) race condition.
52296         Suggested by Paul Eggert.
52297
52298 2003-11-02  Karl Berry  <karl@gnu.org>
52299
52300         * config/srclist.txt (vasprintf.c): sync broken, sigh.
52301
52302 2003-10-31  Paul Eggert  <eggert@twinsun.com>
52303
52304         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
52305         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
52306         (read_filesystem_list): Set and use me_type_malloced.
52307         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
52308         whatever the type happens to be), for brevity and consistency.
52309         Check for size calculation overflow on Alphas running OSF/1.
52310
52311 2003-10-31  Jim Meyering  <jim@meyering.net>
52312
52313         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
52314
52315         * lib/linebuffer.c: Include <string.h> for declaration of memset.
52316
52317 2003-10-30  Paul Eggert  <eggert@twinsun.com>
52318             Bruno Haible  <bruno@clisp.org>
52319
52320         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
52321         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
52322
52323 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
52324
52325         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
52326         netbsd*-gnu*.  Suggested by Robert Millan.
52327
52328 2003-10-29  Paul Eggert  <eggert@twinsun.com>
52329
52330         * modules/group-member: Depend on stdbool.
52331
52332 2003-10-29  Paul Eggert  <eggert@twinsun.com>
52333
52334         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
52335
52336 2003-10-29  Paul Eggert  <eggert@twinsun.com>
52337
52338         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
52339         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
52340         after the 'gnu' in these cases.  This fixes some bugs in the
52341         previous change, and is based on suggestions by Robert Millan.
52342
52343 2003-10-29  Paul Eggert  <eggert@twinsun.com>
52344
52345         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
52346         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
52347         no longer needed.
52348         * lib/quotearg.c (quotearg_n_options): Use it.
52349         * lib/group-member.c: Include <stdbool.h>.
52350         (free_group_info): Arg is now const *; don't free arg.
52351         (get_group_info): Now returns bool and accepts struct group_info *,
52352         rather than returning a malloc'ed struct group_info *.
52353         All uses changed.  Check for overflow in internal size calculation.
52354
52355         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
52356         rather than xmalloc/xrealloc.
52357         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
52358         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
52359         conformance bug: the old code used a pointer after freeing the
52360         storage that it addressed.
52361         * lib/hash.c (hash_initialize): Simplify the code by using
52362         xalloc_oversized rather than doing it by hand.
52363         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
52364         the buffer preserved.  Use free and xmalloc instead.
52365         * lib/quotearg.c (quotearg_n_options): Likewise.
52366         Use a simpler test for size overflow.  Don't use xalloc_oversized
52367         because unsigned int might be wider than size_t (!); this suggests
52368         that we should switch from unsigned int to size_t for slot numbers.
52369
52370 2003-10-28  Paul Eggert  <eggert@twinsun.com>
52371
52372         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
52373         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
52374         NetBSD kernels.  Requested by Richard Stallman.
52375
52376 2003-10-27  Paul Eggert  <eggert@twinsun.com>
52377
52378         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
52379         to allocate the returned structure.  Do not allocate a subarray,
52380         as x2nrealloc will do that.
52381         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
52382         instead of xnrealloc.
52383         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
52384
52385 2003-10-27  Bruno Haible  <bruno@clisp.org>
52386
52387         * lib/stdbool_.h: Better support for BeOS.
52388
52389 2003-10-26  Paul Eggert  <eggert@twinsun.com>
52390
52391         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
52392         now uses inline.
52393
52394 2003-10-26  Paul Eggert  <eggert@twinsun.com>
52395
52396         * lib/xalloc.h (xalloc_oversized): New static inline function, for
52397         callers that want to do their own size-overflow checking.  Include
52398         <stdbool.h>, since xalloc_oversized returns bool.
52399         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
52400         to use xalloc_oversized.
52401
52402         Add two functions x2realloc, x2nrealloc, for programs that grow
52403         arrays dynamically by doubling their sizes.
52404         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
52405         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
52406         New functions.
52407
52408         Port to C99 semantics for 'inline' of external functions.
52409         Bug reported by Bruno Haible.
52410         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
52411         with the old contents of xnmalloc.
52412         (xnmalloc, xmalloc): Use it.
52413         (xnrealloc_inline): New static inline function,
52414         with the old contents of xnrealloc.
52415         (xnrealloc, xrealloc): Use it.
52416
52417         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
52418         that.
52419
52420 2003-10-26  Karl Berry  <karl@gnu.org>
52421
52422         * config/srclist.txt (COPYING.DOC): no longer available from
52423         /gd/gnuorg; don't know where the ultimate source is.
52424
52425 2003-10-25  Paul Eggert  <eggert@twinsun.com>
52426
52427         Fix several address-calculation bugs in the hash modules,
52428         plus some minor code cleanup.
52429
52430         * lib/hash.h: Include <stdbool.h>, for bool.
52431         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
52432         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
52433         hash_get_n_entries, hash_get_max_bucket_length,
52434         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
52435         hash_rehash): Use size_t rather than unsigned.
52436         * lib/hash.c (struct hash_table, hash_get_n_buckets,
52437         hash_get_n_buckets_used, hash_get_n_entries,
52438         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
52439         hash_get_entries, hash_do_for_each, hash_string, is_prime,
52440         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
52441         Likewise.
52442         (SIZE_MAX): Define if not defined.
52443         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
52444         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
52445         hash_print):
52446         Use const * when possible.
52447         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
52448         (check_tuning): Fix bug: if tuning parameters were very close to
52449         0 or 1, rounding errors could have caused subscript violations.
52450         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
52451         (hash_initialize): Add 'fail:' label
52452         to free table and return NULL, and use it to simplify code.
52453         Use calloc rather than clearing the storage ourself.
52454         (hash_initialize, hash_rehash): Check for arithmetic overflow in
52455         buffer size calculations.
52456         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
52457         Include <stddef.h>, for size_t.
52458         * lib/hash-pjw.c (hash_pjw): Likewise.
52459         Switch to method described by Bruno Haible.
52460         Include <limits.h>, for CHAR_BIT.
52461         (SIZE_BITS): New macro.
52462
52463 2003-10-23  Paul Eggert  <eggert@twinsun.com>
52464
52465         * m4/getline.m4 (AM_FUNC_GETLINE):
52466         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
52467         hosts.  Problem reported by Derek Robert Price in
52468         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
52469         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
52470         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
52471
52472 2003-10-21  Paul Eggert  <eggert@twinsun.com>
52473
52474         * lib/getndelim2.c (getndelim2): When size calculation overflows,
52475         ceiling the allocation at NMAX bytes rather than silently
52476         discarding input bytes before NMAX is reached.  This makes
52477         a difference only if NMAX exceeds SIZE_MAX / 2.
52478
52479         * lib/obstack.c: Merge from glibc.
52480         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
52481         Add libc_hidden_def (_obstack_newchunk).
52482         (_obstack_free) [! defined _LIBC]: Remove.
52483         [defined _LIBC]: Make a strong alias from obstack_free, rather than
52484         a clone of the function body.
52485         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
52486         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
52487
52488         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
52489         glibc.
52490         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
52491         arg to memcpy.
52492
52493         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
52494         (obstack_ptr_grow_fast, obstack_int_grow_fast):
52495         Don't use lvalue casts, as GCC plans to remove support for them
52496         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
52497         was also present in the non-GCC version, indicating that this
52498         code had always been buggy and had never been widely used.
52499         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
52500         Use the fast variant of each macro, rather than copying the
52501         definiens of the fast variant; that way, we'll be more likely to
52502         catch future bugs in the fast variants.
52503
52504 2003-10-20  Bruno Haible  <bruno@clisp.org>
52505
52506         * modules/wait-process: New file.
52507         * MODULES.html.sh (func_all_modules): Add wait-process.
52508
52509 2003-10-20  Bruno Haible  <bruno@clisp.org>
52510
52511         * m4/wait-process.m4: New file.
52512
52513 2003-10-20  Bruno Haible  <bruno@clisp.org>
52514
52515         * lib/wait-process.h: New file, from GNU gettext.
52516         * lib/wait-process.c: New file, from GNU gettext.
52517
52518 2003-10-19  Jim Meyering  <jim@meyering.net>
52519
52520         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
52521         HPUX 10.20.
52522
52523 2003-10-18  Karl Berry  <karl@gnu.org>
52524
52525         * config/config.guess: update from config.
52526
52527 2003-10-16  Paul Eggert  <eggert@twinsun.com>
52528
52529         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
52530         (getgroups): First arg is int, not size_t.
52531         Don't let 'free' mangle errno.
52532
52533 2003-10-16  Paul Eggert  <eggert@twinsun.com>
52534
52535         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
52536
52537 2003-10-16  Karl Berry  <karl@gnu.org>
52538
52539         * config/config.{guess,sub}: update from config.
52540
52541 2003-10-16  Jim Meyering  <jim@meyering.net>
52542
52543         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
52544         memcpy.
52545
52546 2003-10-15  Paul Eggert  <eggert@twinsun.com>
52547
52548         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
52549         (SIZE_MAX): Remove.
52550         (new_exclude, add_exclude_file): Initial size no longer needs to
52551         be a power of 2.
52552         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
52553         our own address arithmetic overflow checking.
52554
52555         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
52556         (fnmatch): Do not alloca more than 2000 wide characters;
52557         instead, use malloc for large buffers.
52558         Check for address arithmetic overflow, and return -1
52559         with errno set to ENOMEM in that case.
52560         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
52561         (NEW_PATTERN): Do not alloca more than 8000 bytes;
52562         instead, return -1.  Check for address arithmetic overflow.
52563
52564 2003-10-14  Paul Eggert  <eggert@twinsun.com>
52565
52566         Handle invalid suffixes and overflow independently, so that
52567         callers can treat them independently as needed.  Fix some bugs in
52568         suffix handling, e.g., "100k@" was not diagnosed as an invalid
52569         suffix for a human-readable blocksize.  The major caller-visible
52570         change is the addition of a new
52571         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
52572         that both overflow and suffix chars were found.
52573
52574         * lib/human.c (humblock): Don't check separately for invalid suffix
52575         char; that is xstrtoumax's job (now that its bug is fixed).
52576         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
52577         INTMAX_MAX]: New macros.
52578         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
52579         TYPE_MAXIMUM): New macros.
52580         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
52581         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
52582         if overflow occurs, as it's what __strtol does and it's more useful
52583         in practice.
52584         (__xstrtol): If __strtol reports some error other than ERANGE,
52585         reflect it to the caller as LONGINT_INVALID.  If it reports
52586         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
52587         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
52588         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
52589         value.
52590         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
52591         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
52592         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
52593         [defined UINTMAX_MAX]: New macros.
52594
52595 2003-10-14  Bruno Haible  <bruno@clisp.org>
52596
52597         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
52598
52599 2003-10-14  Bruno Haible  <bruno@clisp.org>
52600
52601         * m4/sig_atomic_t: New file, from GNU gettext.
52602         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
52603
52604 2003-10-14  Bruno Haible  <bruno@clisp.org>
52605
52606         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
52607         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
52608         Also use volatile where needed.
52609
52610 2003-10-12  Paul Eggert  <eggert@twinsun.com>
52611
52612         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
52613         Change maintainer from Bruno Haible to 'all'.
52614
52615 2003-10-12  Paul Eggert  <eggert@twinsun.com>
52616
52617         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
52618
52619 2003-10-12  Paul Eggert  <eggert@twinsun.com>
52620
52621         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
52622         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
52623         and define in terms of the other primitives.
52624         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
52625         (SIZE_MAX): Define if not already defined.
52626         (array_size_overflow): New function.
52627         (xalloc_die): Abort instead of exiting if 'error' returns.
52628         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
52629         (xmalloc, xrealloc): Use them.
52630         (xcalloc): Check for address arithmetic overflow.
52631         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
52632         a bit faster than strcpy.
52633
52634 2003-10-10  Simon Josefsson  <jas@extundo.com>
52635
52636         * modules/argp (Depends-on): Add restrict and strcase.
52637
52638 2003-10-10  Simon Josefsson  <jas@extundo.com>
52639
52640         * m4/argp.m4: Add AC_C_INLINE.
52641
52642 2003-10-08  Paul Eggert  <eggert@twinsun.com>
52643
52644         Merge getpass from libc, plus a few fixes.
52645
52646         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
52647         Include <stdbool.h>.
52648         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
52649         __fsetlocking to empty.
52650         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
52651         do include <bits/libc-lock.h>.
52652         Do not include <fcntl.h>; not needed.
52653         [_LIBC]: Include <wchar.h>.
52654         (NOTCANCEL_MODE): New macro.
52655         (flockfile, funlockfile) [_LIBC]: New macros.
52656         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
52657         [!_LIBC]: New macros.
52658         (call_fclose): New function.
52659         (getpass): Use it.  Save tty stream separately; this simplifies the
52660         code and makes it more reliable if stdin happens to equal stdout.
52661         Invoke __fsetlocking on tty.
52662         Handle thread cancellation if needed.
52663         Namespace cleanup (use __tcgetattr, __getline).
52664         Use bool for Booleans.
52665         [USE_IN_LIBIO]: Handle wide streams.
52666         [!_LIBC]: Unconditionally do the fseek, since we don't know what
52667         stream might go where.
52668
52669         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
52670         doesn't have to include <stdio.h> before us.
52671         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
52672         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
52673         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
52674         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
52675         if not declared, so that we can use getpass.c code from libc without
52676         rewriting it.
52677         (flockfile, ftrylockfile, funlockfile): New macros.
52678
52679 2003-10-08  Paul Eggert  <eggert@twinsun.com>
52680
52681         * modules/getpass: Depend on stdbool.
52682
52683 2003-10-08  Paul Eggert  <eggert@twinsun.com>
52684
52685         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
52686
52687 2003-10-07  Karl Berry  <karl@gnu.org>
52688
52689         * config/config.{guess,sub}: update from config.
52690
52691 2003-10-06  Jim Meyering  <jim@meyering.net>
52692             Bruno Haible  <bruno@clisp.org>
52693
52694         This lets translators provide better translations for the
52695         "Written by ..." part of --version output.
52696         * lib/version-etc.h: Include stdarg.h.
52697         (version_etc_copyright): Declare as readonly.
52698         (version_etc): Make this function variadic with a NULL-terminated list
52699         of author name strings.
52700         (version_etc_va): New declaration.
52701         * lib/version-etc.c: Include stdarg.h, stdlib.h.
52702         (version_etc_copyright): Declare as readonly.
52703         (version_etc_va): New function. Provide a different translatable string
52704         for each possible number of authors < 10. Abbreviate when there are 10
52705         authors or more.
52706         (version_etc): Make this function variadic. Call version_etc_va.
52707         Suggestion from Gary V. Vaughan.
52708
52709         * lib/long-options.h (parse_long_options): Change prototype: the
52710         authors string is moved to the end and becomes variadic.
52711         * lib/long-options.c: Include stdarg.h.
52712         (parse_long_options): Make this function variadic, too.
52713         Call version_etc_va, not version_etc.
52714
52715 2003-10-06  Bruno Haible  <bruno@clisp.org>
52716
52717         * modules/version-etc-2: Remove file.
52718         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
52719
52720 2003-10-06  Bruno Haible  <bruno@clisp.org>
52721
52722         * modules/fatal-signal: New file.
52723         * MODULES.html.sh (func_all_modules): Add fatal-signal.
52724
52725 2003-10-06  Bruno Haible  <bruno@clisp.org>
52726
52727         * m4/fatal-signal.m4: New file.
52728         * m4/signalblocking.m4: New file, from GNU gettext.
52729
52730 2003-10-06  Bruno Haible  <bruno@clisp.org>
52731
52732         * lib/version-etc-2.h: Remove file.
52733         * lib/version-etc-2.c: Remove file.
52734
52735 2003-10-06  Bruno Haible  <bruno@clisp.org>
52736
52737         * lib/fatal-signal.h: New file, from GNU gettext.
52738         * lib/fatal-signal.c: New file, from GNU gettext.
52739
52740 2003-10-05  Paul Eggert  <eggert@twinsun.com>
52741
52742         * README: Rework advice for preventing empty .o files.
52743         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
52744         not <sys/types.h>.
52745
52746 2003-10-04  Karl Berry  <karl@gnu.org>
52747
52748         * lib/argp*: update from libc.
52749
52750 2003-10-04  Karl Berry  <karl@gnu.org>
52751
52752         * config/config.{guess,sub}: update from config.
52753
52754 2003-10-02  Bruno Haible  <bruno@clisp.org>
52755
52756         * modules/lchown (Include): Add lchown.h.
52757         * modules/time_r (Include): Use "..." syntax.
52758         * modules/xgetdomainname (Include): Add xgetdomainname.h.
52759
52760 2003-10-01  Simon Josefsson  <jas@extundo.com>
52761
52762         * MODULES.html.sh (func_all_modules): Move gethostname from section
52763         'based on' to section 'lacking' POSIX:2001.
52764
52765 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
52766
52767         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
52768         to output mode on the same stream.
52769
52770 2003-09-29  Paul Eggert  <eggert@twinsun.com>
52771
52772         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
52773         Fix arg typo in previous patch.
52774
52775 2003-09-28  Jim Meyering  <jim@meyering.net>
52776
52777         * lib/error.c: Correct cpp indentation.
52778
52779 2003-09-27  Paul Eggert  <eggert@twinsun.com>
52780
52781         * modules/free: New file.
52782
52783 2003-09-27  Paul Eggert  <eggert@twinsun.com>
52784
52785         * m4/free.m4: New file.
52786
52787 2003-09-27  Paul Eggert  <eggert@twinsun.com>
52788
52789         * lib/minmax.h (MIN, MAX)
52790         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
52791         Omit the special code that used __typeof__, since we worry that
52792         it could be more trouble than it's worth.  See:
52793         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
52794         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
52795
52796         * lib/free.c: New file.
52797
52798 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
52799
52800         Trivial fixes to Makefile.am parts of module listings.
52801         * modules/strstr: Append strstr.h to lib_SOURCES.
52802         * modules/strcase: Likewise, for strcase.h.
52803
52804 2003-09-27  Karl Berry  <karl@gnu.org>
52805
52806         * config/mkinstalldirs: update from automake.
52807
52808 2003-09-26  Paul Eggert  <eggert@twinsun.com>
52809
52810         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
52811         (error_tail): Do not loop, reallocating temporary buffer, since
52812         the output cannot contain more wide characters than the input
52813         contains bytes, the size must be big enough already.  This avoids
52814         one potential size overflow calculation.  Check for size overflow
52815         when calculating temporary buffer size.  Free temporary buffer
52816         when done, if it was allocated with malloc; this plugs a memory
52817         leak.  Remove casts from void * to pointers, that are no longer
52818         needed now that we're assuming C89 or better.
52819
52820         Merge error changes from glibc.
52821
52822         * lib/error.c, error.h: Update copyright notice header to match glibc.
52823         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
52824         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
52825         Disable cancellation while printing error.
52826         * lib/error.h: Prepend __ to parameter names.
52827
52828 2003-09-26  Jim Meyering  <jim@meyering.net>
52829
52830         * lib/error.c (error_tail): Move some declarations
52831         into inner scope where the local variables are used.
52832
52833 2003-09-26  Bruno Haible  <bruno@clisp.org>
52834
52835         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
52836         stpncpy().
52837         Don't define stpncpy through config.h; it's now done through stpncpy.h.
52838
52839 2003-09-26  Bruno Haible  <bruno@clisp.org>
52840
52841         * lib/stpncpy.h (gnu_stpncpy): New declaration.
52842         (stpncpy): Define as alias for gnu_stpncpy.
52843         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
52844
52845 2003-09-25  Simon Josefsson  <jas@extundo.com>
52846
52847         * lib/xgetdomainname.h: New file.
52848         * lib/xgetdomainname.c: New file.
52849
52850 2003-09-25  Simon Josefsson  <jas@extundo.com>
52851             Bruno Haible  <bruno@clisp.org>
52852
52853         * modules/getdomainname: New file.
52854         * modules/xgetdomainname: New file.
52855         * MODULES.html.sh (func_all_modules): Add getdomainname,
52856         xgetdomainname.
52857
52858 2003-09-25  Simon Josefsson  <jas@extundo.com>
52859             Bruno Haible  <bruno@clisp.org>
52860
52861         * m4/getdomainname.m4: New file.
52862
52863 2003-09-25  Simon Josefsson  <jas@extundo.com>
52864             Bruno Haible  <bruno@clisp.org>
52865
52866         * lib/getdomainname.h: New file.
52867         * lib/getdomainname.c: New file.
52868
52869 2003-09-25  Karl Berry  <karl@gnu.org>
52870
52871         * lib/argp-fmtstream.c, argp-help.c: update from libc.
52872
52873 2003-09-25  Karl Berry  <karl@gnu.org>
52874
52875         * config/install-sh: update from automake.
52876
52877 2003-09-25  Bruno Haible  <bruno@clisp.org>
52878
52879         * modules/version-etc-2: New file, from modules/version-etc with
52880         modifications.
52881         * MODULES.html.sh (func_all_modules): Add version-etc-2.
52882
52883 2003-09-25  Bruno Haible  <bruno@clisp.org>
52884
52885         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
52886         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
52887
52888 2003-09-24  Simon Josefsson  <jas@extundo.com>
52889
52890         * modules/xgethostname: Add xgethostname.h.
52891
52892 2003-09-24  Paul Eggert  <eggert@twinsun.com>
52893
52894         * lib/linebuffer.c (freebuffer): Don't free the argument, just
52895         the buffer associated with the argument.  Bug reported by
52896         Simon Josefsson.
52897
52898 2003-09-24  Paul Eggert  <eggert@twinsun.com>
52899
52900         * README: Document assumptions that 'int' is at least 32 bits
52901         wide, that integer arithmetic is 2's complement without overflow,
52902         that there are no holes in integer values, that adding sizes of
52903         two nonoverlapping objects can't overflow, and that all-bits-zero
52904         yields scalar zero.  Fix spelling and capitalization typos.
52905
52906 2003-09-19  Karl Berry  <karl@gnu.org>
52907
52908         * lib/argp.h: update from libc.
52909
52910 2003-09-17  Paul Eggert  <eggert@twinsun.com>
52911
52912         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
52913         to avoid spurious warnings like "AC_RUN_IFELSE was called before
52914         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
52915
52916 2003-09-17  Paul Eggert  <eggert@twinsun.com>
52917
52918         * gnulib-tool: Use "test -h", not "test -L", for portability
52919         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
52920         (tags_regexp): Remove, since \| doesn't conform to POSIX.
52921         (sed_extract_prog): Issue s commands one-by-one, rather than
52922         using \| in one s command.
52923
52924 2003-09-16  Paul Eggert  <eggert@twinsun.com>
52925
52926         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
52927         input error, instead of returning NULL the next time we are called
52928         (and therefore losing track of errno).
52929
52930 2003-09-16  Bruno Haible  <bruno@clisp.org>
52931
52932         * gnulib-tool (func_create_testdir): Warn about duplicated
52933         dependencies.
52934
52935 2003-09-15  Paul Eggert  <eggert@twinsun.com>
52936
52937         * modules/argmatch, modules/fatal, modules/obstack,
52938         modules/xalloc, modules/xgethostname: Sort dependencies by
52939         importance, not alphabetically.
52940
52941 2003-09-15  Paul Eggert  <eggert@twinsun.com>
52942
52943         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
52944         fails, so that the caller gets the proper errno.
52945
52946         * lib/readutmp.c (read_utmp): Likewise.
52947         Check for fstat error.  Close stream and free storage
52948         when failing.
52949
52950 2003-09-14  Karl Berry  <karl@gnu.org>
52951
52952         * config/srclist.txt (strdup.c): disable for c89 changes.
52953
52954 2003-09-14  Jim Meyering  <jim@meyering.net>
52955
52956         * lib/getloadavg.c: Correct cpp indentation.
52957         * lib/strdup.c: Likewise.
52958         * lib/vasnprintf.c: Likewise.
52959
52960 2003-09-14  Bruno Haible  <bruno@clisp.org>
52961
52962         * modules/fwriteerror: New file.
52963         * MODULES.html.sh (func_all_modules): Add fwriteerror.
52964
52965 2003-09-14  Bruno Haible  <bruno@clisp.org>
52966
52967         * lib/fwriteerror.h: New file.
52968         * lib/fwriteerror.c: New file.
52969
52970 2003-09-12  Paul Eggert  <eggert@twinsun.com>
52971
52972         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
52973         modules/xgethostname, modules/xalloc: Depend on exit.
52974
52975 2003-09-12  Paul Eggert  <eggert@twinsun.com>
52976
52977         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
52978
52979         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
52980         and AC_MINIX, too, so that their extensions are available.
52981
52982         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
52983         This macro has been superseded by gl_BACKUPFILE.
52984
52985         More patches to assume C89 or better.
52986
52987         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
52988
52989         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
52990         unconditionally.
52991         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
52992         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
52993         Include <string.h>, <stdlib.h> unconditionally.
52994         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
52995         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
52996         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
52997         headers or for string.h.
52998         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
52999         or strtoul.
53000
53001         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
53002         headers.
53003         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
53004         * m4/userspec.m4 (gl_USERSPEC): Likewise.
53005         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
53006         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
53007         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
53008         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
53009         memcpy, memset.
53010         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
53011         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
53012         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
53013         strtol.
53014         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
53015         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
53016         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
53017         strtoul.
53018
53019 2003-09-12  Paul Eggert  <eggert@twinsun.com>
53020
53021         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
53022         * lib/obstack.c [!defined _LIBC]: Likewise.
53023         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
53024         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
53025         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
53026
53027         More changes to assume C89 or better.
53028
53029         * lib/error.c (error_tail): Assume vprintf.
53030
53031         * lib/argmatch.c (getenv): Remove decl.
53032         * lib/progreloc.c (get_full_program_name): Define via prototype.
53033         * lib/setenv.c (clearenv): Likewise.
53034         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
53035         needed.
53036         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
53037         (malloc, memcpy): Remove decls.
53038         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
53039         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
53040         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
53041         (memcpy): Remove macro.
53042         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
53043         (__P): Remove.  All uses removed.
53044         (PTR): Remove.  All uses changed to void *.
53045         (CHAR_BIT, NULL): Remove.
53046         (spaces, zeros, memset_space, memset_zero)
53047         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
53048         Remove.
53049         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
53050         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
53051         Define with prototype.
53052         Remove now-unnecessary prototype decl.
53053         (extra_args_spec): Assume ANSI C.  All uses changed.
53054         (extra_args_spec_iso): Remove.
53055         (my_strftime, emacs_strftimeu): Define via prototype.
53056         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
53057         unconditionally.
53058         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
53059         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
53060         (strtoul, strtol): Remove decls.
53061         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
53062         LONG_MAX): Remove.
53063         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
53064         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
53065         (LOCALE_PARAM_PROTO): New macro.
53066         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
53067         (INTERNAL (strtol), strtol): Define with a prototype.
53068         (PARAMS): Remove.  All uses removed.
53069         * lib/tempname.c: Include <string.h> unconditionally.
53070         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
53071         * lib/xgethostname.c (main): Define with a prototype.
53072         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
53073         Include <stdlib.h> unconditionally.
53074         (calloc, malloc, realloc, free): Remove decls.
53075         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
53076         Include <stdlib.h> unconditionally.  Sort include file names.
53077         (strtod): Remove.
53078         (xstrtod): Define with a prototype.
53079         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
53080         (strtol, strtoul): Remove decls.
53081
53082 2003-09-11  Paul Eggert  <eggert@twinsun.com>
53083
53084         More patches to assume C89 or better.
53085         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
53086         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
53087         string.h, memchr, STDC_HEADERS.
53088
53089 2003-09-11  Paul Eggert  <eggert@twinsun.com>
53090
53091         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
53092         Include <stdlib.h>, <string.h> unconditionally.
53093         Remove now-unnecessary cast to char *.
53094         * lib/strnlen.c: Include <string.h> unconditionally.
53095         * lib/yesno.c (yesno): Define with a prototype.
53096
53097 2003-09-11  Bruno Haible  <bruno@clisp.org>
53098
53099         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
53100
53101 2003-09-10  Jim Meyering  <jim@meyering.net>
53102
53103         * lib/error.c: Correct indentation of cpp directives.
53104
53105 2003-09-10  Bruno Haible  <bruno@clisp.org>
53106
53107         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
53108         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
53109         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
53110         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
53111         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
53112         <stdlib.h> and <string.h> checks.
53113         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
53114         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
53115
53116 2003-09-10  Bruno Haible  <bruno@clisp.org>
53117
53118         * lib/strcspn.c: Include <string.h> unconditionally.
53119         * lib/strpbrk.c: Include <string.h> unconditionally.
53120         * lib/strstr.c: Include <string.h> unconditionally.
53121         * lib/unicodeio.c: Include <string.h> unconditionally.
53122         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
53123         * lib/unsetenv.c: Likewise.
53124         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
53125         * lib/yesno.c: Include <stdlib.h> unconditionally.
53126         (rpmatch): Add prototype.
53127
53128 2003-09-09  Paul Eggert  <eggert@twinsun.com>
53129
53130         More patches to assume C89 or better.
53131         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
53132         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
53133         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
53134         or for string.h.
53135         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
53136         stdlib.h.
53137         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
53138         C headers.
53139         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
53140         string.h.
53141         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
53142         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
53143         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
53144         or for string.h.
53145         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
53146         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
53147         C headers.
53148         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
53149         memcpy.
53150         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
53151         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
53152         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
53153         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
53154         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
53155         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
53156         string.h, free.
53157         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
53158         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
53159         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
53160         C headers, or for string.h.
53161         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
53162         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
53163         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
53164         headers, memory.h, stdlib.h, string.h, strings.h.
53165         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
53166         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
53167         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
53168         strchr.
53169         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
53170         headers, memory.h, string.h.
53171         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
53172         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
53173         free.
53174         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
53175         headers.
53176         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
53177         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
53178         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
53179         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
53180         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
53181
53182 2003-09-09  Paul Eggert  <eggert@twinsun.com>
53183
53184         More K&R removal.
53185
53186         * lib/acosl.c (main): Use a prototype.
53187         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
53188         tanl.c: Likewise.
53189
53190         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
53191
53192         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
53193         (getopt, etopt_long, getopt_long_only, _getopt_internal)
53194         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
53195         with a prototype.
53196         * lib/getopt.c (const): Remove macro.
53197         Include <string.h> unconditionally.
53198         (my_index): Remove; all uses changed to strchr.
53199         (strlen): Remove decl.
53200         (exchange): Remove forward decl; no longer needed.
53201         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
53202         Define with prototype.
53203         * lib/getopt1.c (const): Remove macro.
53204         (getopt_long, getopt_long_only, main): Define with prototype.
53205
53206         * lib/getugroups.c: Include <string.h> unconditionally.
53207
53208         * lib/getusershell.c: Include <stdlib.h> unconditionally.
53209         (getusershell, setusershell, endusershell, readname, main):
53210         Define with prototypes.
53211
53212         * lib/group-member.c: Include group-member.h first.
53213         Include <stdlib.h> unconditionally.
53214
53215         * lib/hard-locale.c: Include hard-locale.h first.
53216         Include <stdlib.h>, <string.h> unconditionally.
53217
53218         * lib/hash.c (free, malloc): Remove decls.
53219         Include <stdlib.h> unconditionally.
53220
53221         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
53222         (getenv): Do not declare.
53223
53224         * lib/idcache.c: Include <string.h> unconditionally.
53225
53226         * lib/long-options.c: Include long-options.h first, to test interface.
53227         Include <stdlib.h> unconditionally.
53228
53229         * lib/makepath.c: Include makepath.h first, to test interface.
53230         Include <stdlib.h> and <string.h> unconditionally.
53231
53232         * lib/linebuffer.c: Include <stdlib.h>.
53233         (free): Remove decl.
53234
53235         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
53236         stddef.h. rpl_malloc returns void *, not char *.
53237         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
53238         prototype.
53239
53240         * lib/md5.h: Include <limits.h> unconditionally.
53241         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
53242         (__P): Remove; all uses removed.
53243         * lib/md5.c: Include "md5.h" first.
53244         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
53245         md5_buffer, md5_process_bytes, md5_process_block):
53246         Define with prototypes.
53247         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
53248         * lib/sha.c: Include "sha.h" first.
53249         Include <stdlib.h>, <string.h> unconditionally.
53250
53251         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
53252         * lib/memcmp.c (__ptr_t): Likewise.
53253         * lib/memrchr.c (__ptr_t): Likewise.
53254         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
53255         Include <string.h> unconditionally.
53256         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
53257         * lib/memchr.c: Include <stdlib.h> unconditionally.
53258         * lib/memchr.c (LONG_MAX): Remove.
53259         * lib/memrchr.c (LONG_MAX): Likewise.
53260         * lib/memchr.c (__memchr): Define via a prototype.
53261         * lib/memrchr.c (__memrchr): Likewise.
53262         * lib/memcmp.c (__P): Remove, and remove all uses.
53263         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
53264         Remove forward decls; no longer needed.
53265         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
53266         Use types required by C89 in prototype.
53267
53268         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
53269         * lib/savedir.c: Likewise.
53270         * lib/mkdir.c (free): Remove decl.
53271         * lib/rmdir.c (rmdir): Define with a prototype.
53272         * lib/savedir.c: Include savedir.h first, to test interface.
53273
53274         * lib/mktime.c (STDC_HEADERS): Remove.
53275         Include <stdlib.h>, <string.h> unconditionally.
53276
53277         * lib/modechange.c: Include <stdlib.h> unconditionally.
53278         (malloc): Remove decl.
53279
53280         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
53281         (free): Remove decl.
53282
53283         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
53284         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
53285         (This type really should be intptr_t, but that's a C99ism.)
53286         (_obstack_memcpy): Remove: all uses changed to memcpy.
53287         Include <string.h> unconditionally.
53288         (struct obstack): Assume __STDC__ for types of members
53289         chunkfun, freefun, extra_arg.
53290         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
53291         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
53292         obstack_begin, obstack_specify_allocation,
53293         obstack_specify_allocation_with_arg, obstack_chunkfun,
53294         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
53295         Remove unprototyped decls and the macros that use them.
53296         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
53297         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
53298         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
53299         (defined __STDC__ && __STDC__)]:
53300         Remove nonprototyped code.
53301         Include <stdlib.h> unconditionally.
53302         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
53303         _obstack_allocated_p, _obstack_free, obstack_free,
53304         _obstack_memory_used, print_and_abort):
53305         Define using prototypes.
53306         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
53307         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
53308         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
53309         obstack_next_free, obstack_object_size, obstack_room) [0]:
53310         Remove unused, unprototyped code.
53311
53312         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
53313
53314         * lib/physmem.c (physmem_total, physmem_available, main): Define
53315         with prototypes.
53316
53317         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
53318         (main): Define with a prototype.
53319
53320         * lib/posixver.c (getenv): Remove decl.
53321
53322         * lib/putenv.c (malloc): Returns void *, not char *.
53323         Include <string.h> unconditionally.
53324         (strchr, memcpy, NULL): Do not define.
53325
53326         * lib/readtokens.c: Include readtokens.h first, to test interface.
53327         Include <stdlib.h>, <string.h> unconditionally.
53328         (init_tokenbuffer): Define with a prototype.
53329
53330         * lib/regex.c (PARAMS): Remove.  All uses removed.
53331         All uses of _RE_ARGS removed, too.
53332         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
53333         unconditionally.
53334         (bzero): Assume memset exists.
53335         (memcmp, memcpy, NULL): Remove.
53336         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
53337         char, or assignments to local vars of type signed char.
53338         (init_syntax_once, PREFIX(extract_number_and_incr),
53339         PREFIX(print_partial_compiled_pattern),
53340         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
53341         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
53342         PREFIX(regex_grow_registers), PREFIX(regex_compile),
53343         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
53344         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
53345         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
53346         wcs_compile_range, byte_compile_range, truncate_wchar,
53347         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
53348         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
53349         count_mbs_length, wcs_re_match_2_internal,
53350         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
53351         PREFIX(alt_match_null_string_p),
53352         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
53353         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
53354         regfree, PREFIX(extract_number)): Define with prototype.  Remove
53355         now-unnecessary declaration, if any.
53356         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
53357         regcomp, regexec):
53358         Remove now-unnecessary casts among pointer types.
53359         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
53360
53361         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
53362         (free): Remove decl.
53363
53364         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
53365
53366         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
53367         (free): Remove decl.
53368
53369         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
53370         * lib/xgetcwd.c: Likewise.
53371
53372         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
53373         (free): Remove decl.
53374
53375         * lib/strchrnul.c (strchrnul): Define with a prototype.
53376         Fix bug: c_in was not converted to char before searching.
53377
53378         The following changes are not K&R related:
53379
53380         * lib/group-member.h: Include <sys/types.h>, so that this file is
53381         self-contained.
53382         * lib/makepath.h: Likewise.
53383
53384         * lib/getusershell.c (readname, default_index, line_size, readname):
53385         Use size_t, not int, for sizes.
53386         (readname): If the size overflows, report an error instead of
53387         looping forever.
53388
53389 2003-09-09  Paul Eggert  <eggert@twinsun.com>
53390
53391         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
53392         libc.
53393
53394 2003-09-09  Paul Eggert  <eggert@twinsun.com>
53395
53396         * README: New section: portability guidelines.
53397
53398 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
53399
53400         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
53401         C89 spec.
53402
53403 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
53404
53405         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
53406
53407 2003-09-08  Paul Eggert  <eggert@twinsun.com>
53408
53409         Assume C89 or better; remove K&R cruft.
53410         A few of these changes were first proposed by Derek Robert Price
53411         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
53412
53413         * lib/addext.c: Include <string.h> unconditionally.
53414         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
53415         Don't declare getenv or malloc.
53416
53417         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
53418         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
53419         (NULL): Remove.
53420         (find_stack_direction, alloca): Use prototypes.
53421
53422         * lib/atexit.c (atexit): Define using a prototype.
53423
53424         * lib/basename.c, dirname.c, stripslash.c:
53425         Include <string.h> unconditionally.
53426
53427         * lib/bcopy.c: Include <stddef.h>.
53428         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
53429
53430         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
53431
53432         * lib/error.h (error, error_at_line, error_print_progname)
53433         [! (defined (__STDC__) && __STDC__)]: Remove decls.
53434         * lib/error.c: Include error.h first, to check interface.
53435         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
53436         (VA_START): Remove; all uses changeed to va_start.
53437         (exit, strerror): Remove decls.
53438         (error_print_progname): Prototype uncondionally.
53439         Don't include <errno.h>; no longer needed.
53440         (private_strerror): Remove.
53441         (error_tail): Always define.
53442         (error, error_at_line): Assume C89 or better; always use prototypes.
53443         * lib/fatal.c: Include "fatal.h" first, to test interface.
53444         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
53445         (VA_START): Remove; all uses changed to va_start.
53446         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
53447         this case.
53448         (exit): Remove decl.
53449         (fatal): Prototype unconditionally.  Assume va_start works.
53450         Abort at end, to pacify gcc.
53451
53452         * lib/euidaccess.c (main): Define with a prototype.
53453
53454         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
53455
53456         * lib/exitfail.c: Include <stdlib.h> unconditionally.
53457
53458         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
53459         prototypes.
53460         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
53461         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
53462         (getenv): Remove decl.
53463         (fnmatch): Define using a prototype.
53464         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
53465         (FCT): Define using a prototype.
53466
53467         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
53468
53469         * lib/gethostname.c: Include <stddef.h>.
53470         (gethostname): Define with prototype.  Length is size_t, not int.
53471
53472 2003-09-08  Paul Eggert  <eggert@twinsun.com>
53473
53474         Assume C89 or better; remove K&R cruft.
53475         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
53476         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
53477         string.h, getenv, malloc.
53478         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
53479         headers.
53480         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
53481         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
53482         do not check for strerror.
53483         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
53484         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
53485         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
53486         do not check for doprnt or vprintf.
53487         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
53488         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
53489
53490 2003-09-08  Paul Eggert  <eggert@twinsun.com>
53491
53492         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
53493         getversion.c should have been removed then, but was accidentally
53494         preserved.
53495
53496         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
53497         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
53498
53499 2003-09-08  Karl Berry  <karl@gnu.org>
53500
53501         * config/config.sub, config.guess, srclistvars.sh: update from savannah
53502                 config, forget about prep.
53503
53504         * config/depcomp, missing: update from automake.
53505
53506 2003-09-07  Paul Eggert  <eggert@twinsun.com>
53507
53508         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
53509         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
53510
53511 2003-09-07  Paul Eggert  <eggert@twinsun.com>
53512
53513         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
53514         copy_tm_result.  Bug reported by Simon Josefsson in
53515         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
53516
53517 2003-09-06  Paul Eggert  <eggert@twinsun.com>
53518
53519         * m4/time_r.m4: New file.
53520         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
53521         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
53522         is. Check for timegm declaration.
53523         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
53524         Do not check for gmtime_r.
53525         Replace mktime if __mktime_internal does not exist and if mktime
53526         hasn't been replaced already.
53527
53528 2003-09-06  Paul Eggert  <eggert@twinsun.com>
53529
53530         * lib/time_r.c, lib/time_r.h: New files.
53531
53532         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
53533         __localtime_r.
53534         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
53535         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
53536
53537         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
53538         __gmtime_r.
53539         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
53540         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
53541         Include <time_r.h>.
53542
53543         * lib/timegm.c: Switch to glibc implementation, with the following
53544         changes:
53545         [defined HAVE_CONFIG_H]: Include <config.h>.
53546         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
53547         (__mktime_internal) [!defined _LIBC]: New decl.
53548         (__gmtime_r) [!defined _LIBC]: New macro and function.
53549         (timegm): Use a prototype, since gnulib assumes C89.
53550         Do not bother declaring tmp to be const, as it's not really usefu.
53551         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
53552         (timegm): Declare only if HAVE_DECL_TIMEGM.
53553
53554 2003-09-06  Paul Eggert  <eggert@twinsun.com>
53555
53556         * MODULES.html.sh (func_all_modules): Add time_r.
53557         * modules/time_r: New file.
53558         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
53559         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
53560
53561 2003-09-03  Paul Eggert  <eggert@twinsun.com>
53562
53563         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
53564         Bug reported by Lute Kamstra in
53565         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
53566
53567         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
53568         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
53569         course with correspondingly smaller numbers for tomorrow and
53570         yesterday.  From Tadayoshi Funaba.  Originally installed into
53571         sh-utils on 1999-08-07, but the patch got lost (I guess during the
53572         coreutils merge?).
53573
53574 2003-08-31  Simon Josefsson  <jas@extundo.com>
53575
53576         * modules/timegm: New file.
53577         * MODULES.html.sh (func_all_modules): Add timegm.
53578
53579 2003-08-31  Simon Josefsson  <jas@extundo.com>
53580
53581         * m4/timegm.m4: New file.
53582
53583 2003-08-31  Simon Josefsson  <jas@extundo.com>
53584
53585         * lib/timegm.h: New file.
53586         * lib/timegm.c: New file.  Based on
53587         wget-1.8.2/src/http.c:mktime_from_utc.
53588
53589 2003-08-31  Karl Berry  <karl@gnu.org>
53590
53591         * lib/argp.h: update from libc.
53592
53593 2003-08-28  Bruno Haible  <bruno@clisp.org>
53594
53595         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
53596         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
53597         followed by '#define fnmatch fnmatch_posix' gives an error.
53598
53599 2003-08-28  Bruno Haible  <bruno@clisp.org>
53600
53601         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
53602         warning on QNX, which defines O_BINARY to 000000.
53603
53604 2003-08-27  Jim Meyering  <jim@meyering.net>
53605
53606         * m4/mkstemp.m4: Require that the system mkstemp be able to create
53607         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
53608         would fail after 32.  Reported by Danny Levinson.  Details here:
53609         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
53610
53611 2003-08-24  Bruno Haible  <bruno@clisp.org>
53612
53613         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
53614         MSVC7 <stdio.h> is included later.
53615
53616 2003-08-22  Simon Josefsson  <jas@extundo.com>
53617
53618         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
53619
53620 2003-08-20  Karl Berry  <karl@gnu.org>
53621
53622         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
53623
53624 2003-08-20  Bruno Haible  <bruno@clisp.org>
53625
53626         * modules/progname: New file.
53627         * MODULES.html.sh (func_all_modules): Add progname.
53628
53629 2003-08-20  Bruno Haible  <bruno@clisp.org>
53630
53631         * lib/progname.h: New file, from GNU gettext.
53632         * lib/progname.c: New file, from GNU gettext.
53633         * lib/progreloc.c: New file, from GNU gettext.
53634
53635 2003-08-19  Jim Meyering  <jim@meyering.net>
53636
53637         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
53638         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
53639
53640 2003-08-19  Bruno Haible  <bruno@clisp.org>
53641
53642         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
53643         more.
53644
53645 2003-08-19  Bruno Haible  <bruno@clisp.org>
53646
53647         * lib/xstrdup.c: Assume <string.h> exists.
53648
53649 2003-08-18  Paul Eggert  <eggert@twinsun.com>
53650
53651         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
53652         in makefile rules.
53653
53654 2003-08-18  Jim Meyering  <jim@meyering.net>
53655
53656         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
53657         * m4/lib-ld.m4: Likewise.
53658
53659 2003-08-18  Jim Meyering  <jim@meyering.net>
53660
53661         * lib/setenv.h: Indent nested cpp directive.
53662         * lib/vasnprintf.c: Remove trailing blanks.
53663
53664 2003-08-17  Simon Josefsson  <jas@extundo.com>
53665
53666         * modules/xstrndup: New file.
53667         * MODULES.html.sh (func_all_modules): Add xstrndup.
53668
53669 2003-08-17  Simon Josefsson  <jas@extundo.com>
53670
53671         * modules/argp: Fix autoconf macro name. Add more dependencies.
53672
53673 2003-08-17  Simon Josefsson  <jas@extundo.com>
53674
53675         * m4/xstrndup.m4: New file.
53676
53677 2003-08-17  Simon Josefsson  <jas@extundo.com>
53678
53679         * m4/argp.m4: New file.
53680
53681 2003-08-17  Simon Josefsson  <jas@extundo.com>
53682             Bruno Haible  <bruno@clisp.org>
53683
53684         * lib/xstrndup.h: New file.
53685         * lib/xstrndup.c: New file.
53686
53687 2003-08-17  Bruno Haible  <bruno@clisp.org>
53688
53689         * modules/strndup (Files, Include): Add lib/strndup.h.
53690
53691 2003-08-17  Bruno Haible  <bruno@clisp.org>
53692
53693         * modules/euidaccess (Files): Add lib/euidaccess.h.
53694
53695 2003-08-17  Bruno Haible  <bruno@clisp.org>
53696
53697         * lib/strndup.h: New file.
53698
53699 2003-08-17  Bruno Haible  <bruno@clisp.org>
53700
53701         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
53702         like AC_GNU_SOURCE.
53703         * modules/extensions (configure.ac): Comment out the invocation of
53704         gl_USE_SYSTEM_EXTENSIONS.
53705
53706 2003-08-16  Paul Eggert  <eggert@twinsun.com>
53707
53708         Merges from coreutils, etc.
53709         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
53710         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
53711         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
53712         fixing a typo.
53713         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
53714         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
53715
53716 2003-08-16  Paul Eggert  <eggert@twinsun.com>
53717
53718         Document merge from coreutils.
53719         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
53720         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
53721         * modules/utime: Add m4/utimes-null.m4.
53722
53723 2003-08-16  Paul Eggert  <eggert@twinsun.com>
53724
53725         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
53726         space, undoing this 2003-08-12 change:
53727         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
53728
53729 2003-08-16  Paul Eggert  <eggert@twinsun.com>
53730
53731         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
53732         strtoul.c from libc, undoing this 2003-08-12 change:
53733         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
53734
53735 2003-08-16  Jim Meyering  <jim@meyering.net>
53736
53737         Merges from coreutils.
53738         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
53739         prefix.  Adjust cache variables similarly.  Create 500 rather than
53740         just 300 files, to exercise bug on Darwin6.5, too.
53741         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
53742         $missing_dir.
53743         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
53744         AM_SYS_POSIX_TERMIOS.
53745         Reported by mkc@mathdogs.com.
53746         Also change use of $am_cv_sys_posix_termios
53747         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
53748         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
53749         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
53750         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
53751         in /proc/mounts until it finds one with matching device number.  This
53752         is unnecessary when the FILE argument *is* a mount point.  No stat call
53753         is necessary in that case.  So, disable the statvfs-testing code on
53754         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
53755         as RedHat bug# 84846.
53756         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
53757         to 1MB, so as not to render systems with no stack size limit (e.g.,
53758         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
53759         Include <unistd.h>.  On some systems,
53760         it is required for the definition of _SC_PAGESIZE.
53761
53762 2003-08-16  Jim Meyering  <jim@meyering.net>
53763
53764         Merge from coreutils.
53765         * lib/xstrtoimax.c: #else #if -> #elif.
53766         * lib/xstrtoumax.c: Likewise.
53767
53768 2003-08-16  Jim Meyering  <jim@meyering.net>
53769
53770         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
53771         * m4/utimes.m4: Removed.
53772         * m4/utimes-null.m4: Renamed from utimes.m4.
53773
53774         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
53775         to 1MB, so as not to render systems with no stack size limit (e.g.,
53776         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
53777         Include <unistd.h>.  On some systems,
53778         it is required for the definition of _SC_PAGESIZE.
53779
53780 2003-08-16  Jim Meyering  <jim@meyering.net>
53781         and Paul Eggert  <eggert@cs.ucla.edu>
53782
53783         Merges from coreutils, etc.
53784
53785         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
53786         using the latest version from cvs.  This avoids problems with #line
53787         directives using a vendor (Sun) compiler.
53788         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
53789         Don't set GETGROUPS_LIB here; now it's
53790         done via getgroups.m4's wrapper function.
53791         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
53792         rather than just in sh-util/configure.in, so that the
53793         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
53794         same.
53795         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
53796         AC_FUNC_GETLOADAVG where to find getloadavg.c.
53797         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
53798         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
53799         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
53800         Remove code that is now done by the newly-required macros.
53801         Append $(EXEEXT) to DF_PROG.
53802         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
53803         Do not invoke or require the following here,
53804         since prereq.m4 or some gnulib .m4 now does this for us:
53805         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
53806         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
53807         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
53808         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
53809         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
53810         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
53811         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
53812         AC_FUNC_OBSTACK.
53813         Do not replace the following functions, as this is now the job
53814         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
53815         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
53816         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
53817         atexit getpass, strdup, getpagesize.
53818         Replace 'raise'.
53819         Do not check for the following functions, as this is now the job
53820         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
53821         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
53822         setregid.
53823         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
53824         Check for sys/sysctl.h.
53825         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
53826         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
53827         of checking for ssize_t ourselves.
53828
53829         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
53830         Require every macro that gnulib/modules/* suggests for us.
53831         (jm_PREREQ_ADDEXT): New macro.
53832         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
53833         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
53834
53835         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
53836         (gl_PHYSMEM): Use it.
53837         Also check for `table' function.
53838         Check for new headers and functions.
53839         Add check for sys/sysmp.h.
53840         With suggestions from Kaveh Ghazi.
53841         Ignore headers that are present but cannot be compiled.  This
53842         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
53843         C 5.4.
53844
53845 2003-08-15  Paul Eggert  <eggert@twinsun.com>
53846
53847         Document merge from coreutils.
53848         * modules/userspec: Depend on posixver.
53849         * modules/strftime: Depend on tzset.
53850
53851 2003-08-15  Paul Eggert  <eggert@twinsun.com>
53852
53853         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
53854         rather than tab, after '#' in shell-script copyright notices.
53855         Suggested by Bruno Haible.
53856
53857 2003-08-15  Paul Eggert  <eggert@twinsun.com>
53858
53859         * config/srclist-update: Use three spaces, rather than tab, after '#'
53860         in shell-script copyright notices.  Suggested by Bruno Haible.
53861         Remove unnecessary parenthesization in regular expression.
53862
53863 2003-08-15  Jim Meyering  <jim@meyering.net>
53864
53865         Merge from coreutils.
53866         * lib/xgethostname.c: Include <stdlib.h>.
53867         (xghostname): Don't exit for anything other than memory-related
53868         failure; just return NULL.
53869         * lib/userspec.c: Include "posixver.h".
53870         (parse_user_spec): Accept `.' as a separator only
53871         in pre-POSIX-200112 mode.
53872         * lib/strtoimax.c: Use #elif rather than #else #if.
53873         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
53874         Remove function, now that we can rely on a working tzset function.
53875         [!_LIBC]: Ensure that the required autoconf test has been run.
53876         [!defined _NL_CURRENT && HAVE_STRFTIME]:
53877         Use underlying_strftime for %r.
53878         * lib/sha.c: Merge in some clean-up and optimization changes from
53879         glibc.
53880         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
53881         Ensure that it is a multiple of 64.
53882         Rearrange loop exit tests so as to avoid performing an
53883         additional fread after encountering an error or EOF.
53884         * lib/realloc.c: Update copyright date.
53885
53886 2003-08-15  Jim Meyering  <jim@meyering.net>
53887         and Paul Eggert  <eggert@twinsun.com>
53888
53889         Merge from coreutils.
53890         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
53891         member but strut utmpx does not.  Needed for AIX 4.3.3.
53892         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
53893
53894 2003-08-15  Jim Meyering  <jim@meyering.net>
53895         and Paul Eggert  <eggert@cs.ucla.edu>
53896
53897         Merges from coreutils, etc.
53898         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
53899         Require gl_FUNC_TZSET_CLOBBER.
53900         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
53901         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
53902         members.
53903
53904 2003-08-14  Paul Eggert  <eggert@twinsun.com>
53905
53906         Help the merge from coreutils.
53907         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
53908         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
53909         * m4/tzset.m4: Use it too.
53910
53911 2003-08-14  Paul Eggert  <eggert@twinsun.com>
53912
53913         * modules/tzset: New file.
53914
53915 2003-08-14  Jim Meyering  <jim@meyering.net>
53916
53917         Merges from coreutils.
53918         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
53919         variable names, rather than @FNMATCH_H@.
53920         * modules/alloca: Likewise for $(ALLOCA_H).
53921
53922         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
53923         the three copies of the literal target, `fnmatch.h'.
53924         * modules/alloca (alloca.h): Likewise.
53925
53926 2003-08-14  Jim Meyering  <jim@meyering.net>
53927
53928         Merge from coreutils.
53929         * m4/tzset.m4: New file.
53930         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
53931         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
53932         otherwise, AIX 5.1 systems would end up using the latter.
53933         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
53934         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
53935         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
53936         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
53937
53938 2003-08-14  Jim Meyering  <jim@meyering.net>
53939
53940         Merge from coreutils.
53941         * lib/obstack.h: Whitespace changes.
53942         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
53943         and xcalloc return values.
53944         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
53945         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
53946         hang on OSF/1 5.1 for DIR on both local and remote file systems.
53947         Reported by (and fix confirmed by) Nelson H. F. Beebe.
53948         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
53949         error from mntctl.
53950         Use mntctl's return value to drive the entry-processing loop, since
53951         we can't rely on the value of the vmt_length member in the last
53952         entry.  On some systems doing so could result in exhausting
53953         virtual memory.  Based in part on a patch from Mike Jetzer.
53954
53955 2003-08-14  Jim Meyering  <jim@meyering.net>
53956         and Paul Eggert  <eggert@twinsun.com>
53957
53958         Merges from coreutils, plus other fixes.
53959         * lib/physmem.c: Merge in portability changes from gcc/libiberty
53960         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
53961         for credits and details.  Thanks to Kaveh Ghazi for helping
53962         to keep these files in sync.
53963         (ARRAY_SIZE): Define it.
53964         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
53965         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
53966         (memcasecmp): Don't assume size_t fits in unsigned int.
53967         Remove casts and duplicate code.
53968         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
53969         (memcpy): Remove definition.
53970         Merge in some clean-up and optimization changes from glibc.
53971         [BLOCKSIZE]: Move definition to top of file.
53972         Ensure that it is a multiple of 64.
53973         Rearrange loop exit tests so as to avoid performing an
53974         additional fread after encountering an error or EOF.
53975         * lib/md5.h (md5_uintptr): Define.
53976         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
53977         return to the initial working directory.  Preserve errno
53978         for caller.
53979         * lib/idcache.c: Include "xalloc.h".
53980         (xmalloc, xrealloc): Remove decls.
53981         (getuser): Remove casts no longer required in C89.
53982         * lib/human.c: Include stdio.h, for sprintf.
53983         * lib/group-member.c: Include "xalloc.h".
53984         (xmalloc, xrealloc): Remove decls.
53985         (get_group_info): Remove casts no longer required in C89.
53986         * lib/getusershell.c (readname): Remove casts no longer required in
53987         C89.
53988         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
53989         * lib/getline.c: Whitespace fix, from coreutils.
53990
53991 2003-08-13  Paul Eggert  <eggert@twinsun.com>
53992
53993         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
53994         Check for isascii.
53995
53996         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
53997         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
53998         Undo previous (whitespace-only) change.
53999
54000 2003-08-13  Paul Eggert  <eggert@twinsun.com>
54001
54002         * lib/exclude.c: Include <ctype.h>
54003         (IN_CTYPE_DOMAIN): New macro.
54004         (is_space): New fn.
54005         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
54006         and empty lines.
54007
54008         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
54009         Undo previous (whitespace-only) change.
54010
54011 2003-08-13  Paul Eggert  <eggert@twinsun.com>
54012
54013         * config/srclist-update: Change update back to the old behavior,
54014         leaving whitespace alone.  Use one 'sed' command rather than a
54015         pipeline.
54016         (fixlicense): Now a variable, not a function.
54017         (remove_trailing_blanks): Remove.
54018         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
54019         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
54020         Undo previous (whitespace-only) change.
54021
54022 2003-08-12  Paul Eggert  <eggert@twinsun.com>
54023
54024         Merge from coreutils.
54025         * modules/euidaccess: Add lib_SOURCES, include for new
54026         file euidaccess.h
54027
54028 2003-08-12  Paul Eggert  <eggert@twinsun.com>
54029
54030         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
54031         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
54032         Normalize leading white space and remove trailing white space.
54033
54034         Merge from coreutils
54035         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
54036
54037         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
54038         0.12.1.  These files are now being upgraded automatically by
54039         ../config/srclist-update.
54040
54041 2003-08-12  Paul Eggert  <eggert@twinsun.com>
54042
54043         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
54044         Normalize leading white space and remove trailing white space.
54045         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
54046         notice, as per ../config/srclist-update.
54047
54048         Merge from coreutils.
54049         * lib/euidaccess.h: New file.
54050         * lib/euidaccess.c: Include it.
54051         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
54052         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
54053         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
54054
54055 2003-08-12  Paul Eggert  <eggert@twinsun.com>
54056
54057         * config/srclist-update: Add copyright notice.
54058         (remove_id_lines, remove_trailing_blanks): New constants.
54059         (fixfile): Use them to normalize spacing a bit in copied files.
54060         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
54061         Normalize leading white space and remove trailing white space.
54062
54063         * config/texinfo.tex: Sync with texinfo.
54064
54065         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
54066         strtoul.c from libc, to merge coreutils whitespace changes.
54067
54068         * config/srclist.txt: Get the following m4 files from gettext:
54069         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
54070         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
54071         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
54072         wint_t.m4.
54073
54074 2003-08-12  Karl Berry  <karl@gnu.org>
54075
54076         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
54077         been made.
54078
54079 2003-08-11  Paul Eggert  <eggert@twinsun.com>
54080
54081         * modules/gnu-source, m4/gnu-source.m4:
54082         Remove; we're assuming Autoconf 2.54 or later now.
54083         Suggested by Bruno Haible.
54084         * MODULES.html.sh (func_all_modules): Remove gnu-source.
54085
54086 2003-08-11  Bruno Haible  <bruno@clisp.org>
54087
54088         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
54089
54090 2003-08-11  Bruno Haible  <bruno@clisp.org>
54091
54092         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
54093         (vasnprintf): Use it instead of wcslen.
54094
54095 2003-08-11  Bruno Haible  <bruno@clisp.org>
54096
54097         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
54098         value to ensure that _Bool promotes to int. Use #define for _Bool when
54099         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
54100
54101 2003-08-10  Karl Berry  <karl@gnu.org>
54102
54103         * lib/regex.h: update from libc (whitespace fix).
54104
54105 2003-08-09  Paul Eggert  <eggert@twinsun.com>
54106
54107         Merge some files from coreutils.  These changes were
54108         originally made by Jim Meyering.
54109         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
54110         many older Unixes require this.
54111         * lib/alloca.c (alloca): Remove cast to argument of free;
54112         no longer needed in C89.
54113         * lib/alloca_.h, regex.h: Fix white space to match
54114         what GNU indent does.
54115
54116 2003-08-09  Paul Eggert  <eggert@twinsun.com>
54117
54118         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
54119         apparently Emacs's Unicode mode got confused before my 2003-08-05
54120         checkin.
54121
54122 2003-08-08  Paul Eggert  <eggert@twinsun.com>
54123
54124         * m4/extensions.m4: New file.
54125         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
54126         Require gl_USE_SYSTEM_EXTENSIONS.
54127         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
54128         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
54129
54130 2003-08-08  Paul Eggert  <eggert@twinsun.com>
54131
54132         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
54133         * modules/extensions, modules/gnu-source: New files.
54134         * modules/timespec, modules/unlocked-io: Depend on extensions.
54135
54136 2003-08-07  Paul Eggert  <eggert@twinsun.com>
54137
54138         * modules/restrict: New file.
54139         * MODULES.html.sh (func_all_modules): Add restrict.
54140         * modules/regex: Depend on restrict.
54141
54142 2003-08-07  Paul Eggert  <eggert@twinsun.com>
54143
54144         * m4/restrict.m4: New file.
54145         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
54146
54147 2003-08-07  Bruno Haible  <bruno@clisp.org>
54148
54149         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
54150         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
54151
54152 2003-08-07  Bruno Haible  <bruno@clisp.org>
54153
54154         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
54155         makes the module 'getndelim2' compatible with the module 'getline'.
54156
54157 2003-08-05  Paul Eggert  <eggert@twinsun.com>
54158
54159         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
54160         byte with "\201" to avoid glitches when editing that source file
54161         with multi-gnome-terminal.
54162
54163 2003-08-05  Paul Eggert  <eggert@twinsun.com>
54164
54165         * lib/bumpalloc.h: Remove.
54166
54167 2003-08-05  Paul Eggert  <eggert@twinsun.com>
54168
54169         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
54170         * modules/bumpalloc: Remove.
54171
54172 2003-08-04  Paul Eggert  <eggert@twinsun.com>
54173
54174         * lib/getloadavg.c: Change copyright notice and spacing to conform to
54175         GNU coding style.
54176
54177         Merge from coreutils.
54178         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
54179         1. From glibc.
54180         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
54181         from Karl Berry, implemented by Jim Meyering.
54182         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
54183         from Dmitry V. Levin.
54184         Remove anachronistic cast of xrealloc.
54185         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
54186         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
54187         type. Otherwise, it wouldn't compile with at least /bin/cc on
54188         ymp-cray-unicos9.0.2.X.
54189         Combine two mostly-identical uses of alloca into one.
54190         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
54191
54192 2003-08-04  Dave Love  <d.love@dl.ac.uk>
54193
54194         [From Emacs.]
54195
54196         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
54197         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
54198         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
54199         obsolete NLIST_NAME_UNION.
54200         [__GNU__]: Undef BSD and FSCALE.
54201         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
54202
54203 2003-08-03  Paul Eggert  <eggert@twinsun.com>
54204
54205         * lib/stdbool_.h (_Bool): Make it signed char, instead of
54206         an enum type, so that it's guaranteed to promote to int.  See:
54207         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
54208
54209 2003-08-03  Karl Berry  <karl@gnu.org>
54210
54211         * config/depcomp: update from automake.
54212
54213 2003-07-31  Paul Eggert  <eggert@twinsun.com>
54214
54215         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
54216         (strerror): Don't assume that a printable int fits in 14 bytes.
54217
54218 2003-07-31  Bruno Haible  <bruno@clisp.org>
54219
54220         * modules/getpass-gnu: New file.
54221         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
54222
54223 2003-07-31  Bruno Haible  <bruno@clisp.org>
54224
54225         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
54226
54227 2003-07-24  Karl Berry  <karl@gnu.org>
54228
54229         * config/missing: update from automake.
54230
54231 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
54232             Bruno Haible  <bruno@clisp.org>
54233
54234         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
54235         * lib/getline.c (getline, getdelim): Likewise.
54236         Remove _GNU_SOURCE define; now it's defined in config.h through
54237         m4/getline.m4.
54238
54239 2003-07-23  Karl Berry  <karl@gnu.org>
54240
54241         * config/config.sub: update from prep.
54242
54243 2003-07-22  Paul Eggert  <eggert@twinsun.com>
54244
54245         * modules/xalloc (Depends-on): Add exitfail.
54246         * modules/xmemcoll: Likewise.
54247
54248 2003-07-22  Paul Eggert  <eggert@twinsun.com>
54249
54250         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
54251         over-parenthesization in macros.
54252
54253         Sync with coreutils.
54254
54255         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
54256         required by C99.
54257
54258         Use `exit_failure' for xalloc and xmemcoll instead of their own
54259         private exit-failure variables.
54260         * lib/xalloc.h (xalloc_exit_failure): Remove.
54261         * lib/xmalloc.c: Likewise.  Include exitfail.h.
54262         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
54263         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
54264         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
54265         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
54266
54267 2003-07-20  Jim Meyering  <jim@meyering.net>
54268
54269         * modules/closeout (Depends-on): Add exitfail.
54270         Suggestion from Bruno Haible.
54271
54272 2003-07-19  Karl Berry  <karl@gnu.org>
54273
54274         * config/config.sub: update from prep.
54275
54276 2003-07-18  Paul Eggert  <eggert@twinsun.com>
54277
54278         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
54279         Remove.
54280         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
54281         to test that it can stand by itself.  Include "exitfail.h".
54282         Clients should set exit_failure instead.
54283         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
54284
54285 2003-07-18  Bruno Haible  <bruno@clisp.org>
54286
54287         * modules/getndelim2: New file.
54288         * modules/getline: Share files with module getndelim2.
54289         * modules/getnline: Depend on getndelim2 instead of sharing files with
54290         it. Add getnline.c to lib_SOURCES.
54291         * MODULES.html.sh (func_all_modules): Add getndelim2.
54292
54293 2003-07-18  Bruno Haible  <bruno@clisp.org>
54294
54295         * m4/getndelim2.m4: New file.
54296         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
54297         invoke gl_PREREQ_GETNDELIM2.
54298         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
54299         gl_PREREQ_GETNDELIM2.
54300         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
54301         gl_GETNDELIM2.
54302
54303 2003-07-18  Bruno Haible  <bruno@clisp.org>
54304
54305         * lib/getndelim2.h: New file.
54306         * lib/getndelim2.c: Make into a module of its own. Include config.h,
54307         getndelim2.h.
54308         (getndelim2): Make non-static. Change return type to ssize_t.
54309         * lib/getline.h: Change argument names.
54310         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
54311         * lib/getnline.c: Include getndelim2.h.
54312
54313 2003-07-18  Andreas Schwab  <schwab@suse.de>
54314
54315         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
54316
54317 2003-07-17  Karl Berry  <karl@gnu.org>
54318
54319         * config/config.sub: update from prep.
54320
54321 2003-07-17  Bruno Haible  <bruno@clisp.org>
54322
54323         * modules/getnline: New file.
54324         * modules/getline: Add lib/getndelim2.c to source file list.
54325         * MODULES.html.sh (func_all_modules): Add getnline.
54326
54327 2003-07-17  Bruno Haible  <bruno@clisp.org>
54328
54329         * m4/getnline.m4: New file.
54330
54331 2003-07-17  Bruno Haible  <bruno@clisp.org>
54332
54333         * m4/Makefile.am.in: Remove file.
54334         * m4/Makefile.am: Remove file.
54335         * m4/Makefile.in: Remove file.
54336
54337 2003-07-17  Bruno Haible  <bruno@clisp.org>
54338
54339         * lib/getnline.h: New file.
54340         * lib/getnline.c: New file.
54341         * lib/getndelim2.c: New file, extracted from getline.c.
54342         (getndelim2): Renamed from getdelim2, with added nmax argument.
54343         * lib/getline.c: Include getndelim2.c.
54344         (getdelim2): Moved out to getndelim2.c.
54345         (getline, getdelim): Update.
54346
54347 2003-07-17  Bruno Haible  <bruno@clisp.org>
54348
54349         * lib/Makefile.am: Remove file.
54350         * lib/Makefile.in: Remove file.
54351
54352 2003-07-17  Bruno Haible  <bruno@clisp.org>
54353
54354         * configure.in: Remove file.
54355         * Makefile.in: Remove file.
54356
54357 2003-07-17  Bruno Haible  <bruno@clisp.org>
54358
54359         * MODULES.html.sh: Put the </BODY> right before </HTML>.
54360
54361 2003-07-16  Karl Berry  <karl@gnu.org>
54362
54363         * config/srclist-update: was running fixlicense twice, which caused
54364                 texinfo.tex to be nullified for some reason.  Simplify,
54365                 $gplsrc is no longer needed as far as I can see?
54366
54367 2003-07-16  Jim Meyering  <jim@meyering.net>
54368
54369         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
54370
54371 2003-07-15  Paul Eggert  <eggert@twinsun.com>
54372
54373         * config/srclist.txt: Get the following files from gettext-runtime/intl
54374         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
54375         ref-del.sin.  From Bruno Haible.
54376         * config/srclist-update (fixfile): Change grep pattern again, since the
54377         previous fix didn't work (there was another trailing $).  Use
54378         '[$]' to escape the $s.
54379
54380 2003-07-15  Karl Berry  <karl@gnu.org>
54381
54382         * lib/vasnprintf.c: update from gettext.
54383
54384 2003-07-15  Karl Berry  <karl@gnu.org>
54385
54386         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
54387         gets expanded when surrounded by '$'.
54388
54389 2003-07-15  Jim Meyering  <jim@meyering.net>
54390
54391         * modules/save-cwd: Don't depend on error.  From Derek Price.
54392
54393 2003-07-15  Jim Meyering  <jim@meyering.net>
54394
54395         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
54396
54397 2003-07-14  Simon Josefsson  <jas@extundo.com>
54398
54399         * modules/mempcpy: New file.
54400         * MODULES.html.sh (func_all_modules): Add mempcpy.
54401
54402 2003-07-14  Simon Josefsson  <jas@extundo.com>
54403
54404         * m4/mempcpy.m4: New file.
54405
54406 2003-07-14  Simon Josefsson  <jas@extundo.com>
54407
54408         * lib/mempcpy.h: New file.
54409         * lib/mempcpy.c: New file.
54410
54411 2003-07-14  Paul Eggert  <eggert@twinsun.com>
54412
54413         * modules/getdate, modules/posixtm: Depend on mktime.
54414
54415 2003-07-14  Paul Eggert  <eggert@twinsun.com>
54416
54417         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
54418         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
54419         unicodeio.c, unicodeio.h, unlocked-io.h:
54420         Switch from LGPL to GPL.
54421
54422 2003-07-14  Paul Eggert  <eggert@twinsun.com>
54423
54424         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
54425         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
54426         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
54427         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
54428         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
54429         updated automatically by ../config/srclist-update.  This changes
54430         their license from LPGL to GPL.
54431
54432 2003-07-14  Paul Eggert  <eggert@twinsun.com>
54433
54434         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
54435         assumed to refer to the root of the most recent stable gettext version.
54436         * config/srclistvars.sh: Add defaults for eggert.
54437         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
54438         Match "This program" as well as "The program".  This is needed
54439         for gettext.
54440
54441 2003-07-14  Jim Meyering  <jim@meyering.net>
54442
54443         Don't emit diagnostics.  Let callers do that.
54444         * lib/save-cwd.c: Don't include "error.h".
54445         (save_cwd): Don't call error.  Ensure that errno is valid
54446         when returning nonzero.
54447
54448         * lib/save-cwd.h (restore_cwd): Update prototype.
54449         * lib/save-cwd.c (restore_cwd): Remove two parameters.
54450         Simplify.  Don't call error upon failure.  Let callers do that.
54451         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
54452         when auditing is enabled.  But don't bother updating the #if.
54453
54454 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
54455
54456         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
54457         it breaks C++ compilation.
54458         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
54459
54460 2003-07-10  Simon Josefsson  <jas@extundo.com>
54461
54462         * modules/strchrnul (Makefile.am): Add strchrnul.h.
54463
54464 2003-07-10  Jim Meyering  <jim@meyering.net>
54465
54466         * m4/clock_time.m4: Remove trailing blank.
54467         * m4/intmax_t.m4: Likewise.
54468
54469 2003-07-10  Jim Meyering  <jim@meyering.net>
54470
54471         * lib/vasnprintf.c: Remove trailing blanks.
54472         Make cpp indentation consistent.
54473
54474 2003-07-09  Paul Eggert  <eggert@twinsun.com>
54475
54476         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
54477         posixver.c, strftime.c, strnlen.c, strverscmp.c:
54478         Switch from LGPL to GPL.
54479
54480 2003-07-09  Paul Eggert  <eggert@twinsun.com>
54481
54482         * config/srclist.txt: Sort sublists.  Add
54483         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
54484         that differ from gnulib for one reason or another; we'd like this list
54485         to be smaller but for now let's document what we have.
54486
54487 2003-07-08  Paul Eggert  <eggert@twinsun.com>
54488
54489         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
54490         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
54491         and sweeter "eval x=$x".
54492         * config/srclist.txt: Get lib/argp* from glibc.
54493
54494 2003-07-07  Paul Eggert  <eggert@twinsun.com>
54495
54496         * lib/mktime.c: Fix some boundary cases and remove need for floating
54497         point.
54498
54499         Issue a compile-time diagnostic if time_t is floating point, or if
54500         two's complement arithmetic is not in effect, or if arithmetic
54501         right shift does not propagate the sign.  These assumptions were
54502         all in the original code but they weren't checked.
54503
54504         (TIME_T_MIDPOINT, verify): New macros.
54505         (__isleap): Remove; it has integer overflow problems.
54506         (leapyear): New function, without those problems.
54507         (ydhms_tm_diff): Remove; splitting into two parts.
54508         (ydhms_diff): New function, containing the arithmetic part of
54509         the old ydhms_tm_diff function.  Issue a compile-time
54510         diagnostic if we are not using C99 integer division.
54511         Avoid casts when possible.
54512         (guess_time_tm): New function, containing the checking part of
54513         the old ydhms_tm_diff function.  Return the new value, rather than
54514         the difference between it and the old.  Accept a new argument T
54515         so that *T specifies the old value.  Check for overflow in the result.
54516
54517         (__mktime_internal): Use a time_t offset, not a long int offset.
54518         This undoes the 2003-06-04 change, which is no longer needed now
54519         that we have better overflow checking.
54520         (localtime_offset): Likewise.
54521
54522         (__mktime_internal): Avoid harmful overflow on hosts where time_t
54523         and long are 64-bit but int is only 32-bit.
54524         (ydhms_diff): Use long int to store year1 and yday1.
54525         Issue a compile-time diagnostic if long int is not wide enough.
54526
54527         (__mktime_internal): Use long int to store adjusted year and yday.
54528         Use plain C rather than preprocessor commands, if that doesn't
54529         affect efficiency.
54530         Check for overflow (and try to repair) after each probe
54531         rather than checking only at the very end.  This avoids some bugs
54532         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
54533         does not equal GMT offset at maximum time).
54534         Use integer to check for overflow rather than floating point; this
54535         is more portable to non-IEEE hosts, and is a tad faster.
54536         When we detect that we are oscillating between two values,
54537         don't check whether tm_isdst has the requested value, since
54538         we already know the answer.  When tm_isdst has the wrong value,
54539         use a different heuristic to find the right one, based on the
54540         extreme values actually observed in practice in tz2003a,
54541         rather than the (overly optimistic) "previous 3 calendar quarters".
54542
54543         (not_equal_tm, print_tm, check_result): Use "const T" rather than
54544         "T const" to accommodate glibc style.
54545         (check_result): Use less-confusing report format.  "long" -> "long int.
54546         (main): Likewise.
54547         Don't loop if the iteration overflows time_t.
54548         Allow a negative step in the iteration.
54549
54550 2003-07-06  Karl Berry  <karl@gnu.org>
54551
54552         * config/depcomp: update from automake.
54553         * config/config.sub: update from prep.
54554
54555 2003-07-03  Karl Berry  <karl@gnu.org>
54556
54557         * config/config.guess: update from prep.
54558
54559 2003-07-01  Paul Eggert  <eggert@twinsun.com>
54560
54561         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
54562         xreadlink.c now includes it unconditionally.
54563
54564 2003-07-01  Paul Eggert  <eggert@twinsun.com>
54565
54566         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
54567         having it depend on HAVE_SYS_TYPES_H.
54568
54569 2003-07-01  Bruno Haible  <bruno@clisp.org>
54570
54571         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
54572         <sys/types.h> should be sufficient.
54573         Reported by Paul Eggert.
54574
54575 2003-06-26  Karl Berry  <karl@gnu.org>
54576
54577         * config/depcomp: update from automake.
54578
54579 2003-06-26  Bruno Haible  <bruno@clisp.org>
54580
54581         * modules/human: Depend on module stdbool.
54582
54583 2003-06-25  Bruno Haible  <bruno@clisp.org>
54584
54585         * modules/readlink: New file.
54586         * modules/xreadlink: Depend on it.
54587         * MODULES.html.sh (func_all_modules): Add readlink.
54588
54589 2003-06-25  Bruno Haible  <bruno@clisp.org>
54590
54591         * m4/readlink.m4: New file.
54592
54593 2003-06-25  Bruno Haible  <bruno@clisp.org>
54594
54595         * lib/readlink.c: New file.
54596
54597 2003-06-22  Karl Berry  <karl@gnu.org>
54598
54599         * config/srclist.txt: update mkinstalldirs from automake.
54600         * config/mkinstalldirs: update.
54601
54602 2003-06-22  Bruno Haible  <bruno@clisp.org>
54603
54604         Portability to mingw32.
54605         * m4/ssize_t.m4: New file, from GNU gettext.
54606         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
54607         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
54608
54609 2003-06-22  Bruno Haible  <bruno@clisp.org>
54610
54611         * modules/safe-read: Add m4/ssize_t.m4.
54612         * modules/xreadlink: Add m4/ssize_t.m4.
54613
54614 2003-06-20  Bruno Haible  <bruno@clisp.org>
54615
54616         Assume C89, so PARAMS isn't needed.
54617         * lib/unicodeio.h (PARAMS): Remove.
54618         * lib/unicodeio.c: Don't use PARAMS.
54619
54620 2003-06-18  Karl Berry  <karl@gnu.org>
54621
54622         * config/config.{guess,sub}: update from prep.
54623
54624 2003-06-18  Jim Meyering  <jim@meyering.net>
54625
54626         Merge changes from coreutils.
54627         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
54628         Remove explicit declarations of xmalloc and realloc.
54629         Include xalloc.h.
54630         (read_utmp): Remove anachronistic cast of xmalloc.
54631
54632 2003-06-17  Paul Eggert  <eggert@twinsun.com>
54633
54634         Assume C89, so PARAMS isn't needed.
54635         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
54636         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
54637         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
54638         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
54639         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
54640         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
54641         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
54642         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
54643         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
54644         lib/xstrtod.h, lib/xstrtol.h: Likewise.
54645         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
54646         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
54647         no longer needed. Anyway, config.h should always be included before any
54648         other file.
54649
54650 2003-06-11  Simon Josefsson  <jas@extundo.com>
54651
54652         * modules/sysexits: New file.
54653         * MODULES.html.sh (func_all_modules): Add sysexits.
54654
54655 2003-06-11  Simon Josefsson  <jas@extundo.com>
54656
54657         * lib/sysexit_.h: New file.
54658
54659 2003-06-11  Derek Price  <derek@ximbiot.com>
54660
54661         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
54662         necessary.
54663
54664 2003-06-11  Bruno Haible  <bruno@clisp.org>
54665
54666         * m4/sysexits.m4: New file.
54667
54668 2003-06-10  Simon Josefsson  <jas@extundo.com>
54669
54670         * lib/argp.h: New file, from glibc.
54671         * lib/argp-ba.c: New file, from glibc.
54672         * lib/argp-eexst.c: New file, from glibc.
54673         * lib/argp-fmtstream.c: New file, from glibc.
54674         * lib/argp-fmtstream.h: New file, from glibc.
54675         * lib/argp-fs-xinl.c: New file, from glibc.
54676         * lib/argp-help.c: New file, from glibc.
54677         * lib/argp-namefrob.h: New file, from glibc.
54678         * lib/argp-parse.c: New file, from glibc.
54679         * lib/argp-pv.c: New file, from glibc.
54680         * lib/argp-pvh.c: New file, from glibc.
54681         * lib/argp-xinl.c: New file, from glibc.
54682
54683 2003-06-10  Simon Josefsson  <jas@extundo.com>
54684
54685         * modules/strchrnul: New file.
54686
54687 2003-06-10  Simon Josefsson  <jas@extundo.com>
54688
54689         * modules/argp: New file.
54690
54691 2003-06-10  Simon Josefsson  <jas@extundo.com>
54692
54693         * m4/strchrnul.m4: New file.
54694
54695 2003-06-10  Simon Josefsson  <jas@extundo.com>
54696
54697         * lib/strchrnul.h: New file.
54698         * lib/strchrnul.c: New file.
54699
54700 2003-06-10  Bruno Haible  <bruno@clisp.org>
54701
54702         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
54703
54704 2003-06-07  Karl Berry  <karl@gnu.org>
54705
54706         * config/config.{guess,sub}: update from prep.
54707
54708 2003-06-07  Jim Meyering  <jim@meyering.net>
54709
54710         * modules/strtod: Use $(...) notation, not @...@ for
54711         AC_REPLACE'd variables.
54712         * modules/localcharset: Likewise.
54713
54714 2003-06-07  Jim Meyering  <jim@meyering.net>
54715
54716         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
54717         in place of my name in the copyright comment.
54718         Remove definition and uses of __P.
54719
54720         From coreutils.
54721         * lib/stat.c: Don't declare xmalloc explicitly.
54722         Instead, include "xalloc.h".
54723         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
54724         xrealloc, and xcalloc return values.
54725         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
54726         Improve comment.
54727         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
54728
54729 2003-06-07  Bruno Haible  <bruno@clisp.org>
54730
54731         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
54732         avoid AC_CONFIG_LINKS.
54733         * modules/fnmatch (Makefile.am): Use explicit creation rule for
54734         fnmatch.h, to avoid AC_CONFIG_LINKS.
54735         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
54736
54737 2003-06-07  Bruno Haible  <bruno@clisp.org>
54738
54739         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
54740         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
54741         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
54742         directory.
54743         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
54744         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
54745         directory.
54746
54747 2003-06-06  Jim Meyering  <jim@meyering.net>
54748
54749         Merge from coreutils.
54750         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
54751         Consolidate declarations and initializations of *_base* locals.
54752
54753         Merge from coreutils.
54754         This avoids a core dump on systems without GNU putenv,
54755         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
54756         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
54757         (unsetenv): New static function, from GNU libc.
54758         (rpl_putenv): Use it.
54759
54760         * lib/modechange.c: Remove trailing blanks.
54761
54762         Merge from coreutils.
54763         * lib/fsusage.c: Remove declaration of statfs.
54764         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
54765
54766         * lib/posixtm.c: Include <stdbool.h> unconditionally.
54767
54768 2003-06-06  Jim Meyering  <jim@meyering.net>
54769
54770         * lib/stdbool_.h: Renamed from stdbool.h.in.
54771
54772 2003-06-06  Jim Meyering  <jim@meyering.net>
54773             Bruno Haible  <bruno@clisp.org>
54774
54775         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
54776         Adjust Makefile.am snippet not to redirect directly to target.
54777         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
54778
54779 2003-06-05  Paul Eggert  <eggert@twinsun.com>
54780
54781         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
54782         mismatch, look in future quarters as well as past.  This fixes a
54783         bug when processing fall-backwards gaps immediately after a long
54784         period of daylight-saving time.
54785
54786         * lib/mktime.c: Assume freestanding C89 or better.
54787         (HAVE_LIMITS_H): Remove.  Assume it's 1.
54788         (__P): Remove; not used.
54789         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
54790         (mktime, not_equal_tm, print_tm, check_result,
54791         main): Use prototypes.  Use const * where appropriate.
54792         (main): Fix typo in testing code that uncovered by above changes.
54793         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
54794
54795 2003-06-04  Paul Eggert  <eggert@twinsun.com>
54796
54797         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
54798         locale.h, localeconv.  This merges changes from coreutils.
54799
54800         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
54801         It can be removed after the next Autoconf is released.
54802         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
54803         needed.
54804
54805 2003-06-04  Paul Eggert  <eggert@twinsun.com>
54806
54807         * lib/mktime.c: Fix Debian bug 177940
54808         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
54809         (localtime_offset): Now long int, not time_t, because we want it
54810         to be guaranteed to be signed.  All uses changed.
54811         (__mktime_internal): If overflow would occur when adding offset,
54812         don't add it.
54813
54814         Merge 'human' changes from coreutils.  Rewrite to support
54815         locale-specific notations like thousands separators.
54816         * lib/human.c: Simplify authorship notice.
54817         Include human.h immediately after config.h.
54818         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
54819         <limits.h>: Do not include, since human.h does.
54820         (SIZE_MAX, UINTMAX_MAX): New macros.
54821         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
54822         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
54823         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
54824         (power_letter): Renamed from suffixes.
54825         (generate_suffix_backwards): Remove.
54826         (adjust_value): Now takes int style (because of human.h changes)
54827         and long double value (for greater precision on some platforms).
54828         (group_number): New function.
54829         (human_readable): Use it.  Use integer options, not enum.
54830         Put the options before the sizes in the arg list.
54831         Support all the new options.
54832         The old human_readable function has been removed;
54833         use inttostr.h instead.
54834         (human_readable, default_block_size, humblock):
54835         Use uintmax_t, not int, for block sizes.
54836         (human_readable_inexact, block_size_types): Remove.
54837         (block_size_opts): New constant.
54838         (human_options): Renamed from human_block_size, with new signature
54839         that allows block sizes up to UINTMAX_MAX.  All callers changed.
54840         * lib/human.h: Add copyright and authorship notice.
54841         Include <limits.h> and <stdbool.h> unconditionally.
54842         (PARAMS): Remove.  All uses removed.
54843         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
54844         (enum human_inexact_style): Remove tag; now a nameless enum.
54845         (human_floor, human_ceiling, human_round_to_even): Now have
54846         values 2, 0, 1 rather than -1, 1, 0.
54847         (human_group_digits, human_suppress_point_zero, human_autoscale,
54848         human_base_1024, human_SI, human_B): New constants.
54849         (human_readable_inexact, human_block_size): Remove.
54850         (human_readable): Size args are now uintmax_t, not int.
54851         (human_options): New decl.
54852
54853         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
54854         unnecessary now that we assume C89 or better.  This change
54855         imported from coreutils.
54856
54857         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
54858         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
54859         in the 2003-05-30 sync from glibc.
54860
54861         .h files should stand alone, but we shouldn't include <sys/types.h>
54862         if we can get away with just <stddef.h>.
54863
54864         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
54865         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
54866         rather than <sys/types.h>, as we merely need size_t.
54867         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
54868         to get size_t.
54869         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
54870         Include <stdio.h>, to get FILE.
54871         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
54872         memcasecmp.h has included <stddef.h> and all we need is size_t.
54873         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
54874         our interface, instead of including <sys/types.h>
54875
54876 2003-06-04  Paul Eggert  <eggert@twinsun.com>
54877
54878         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
54879         now, as glibc mktime is buggy on non-glibc systems.
54880
54881 2003-06-03  Karl Berry  <karl@gnu.org>
54882
54883         * config/config.sub: update from prep.
54884
54885 2003-06-02  Paul Eggert  <eggert@twinsun.com>
54886
54887         [from coreutils]
54888         Fix some minor time-related bugs with POSIX time arguments.
54889         Some valid time stamps were being rejected (notably -1, and
54890         time stamps before 1900 on 64-bit hosts).  And some invalid
54891         time stamps were being accepted, e.g. September 31.
54892
54893         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
54894         that we can return (time_t) -1 successfully.
54895         * lib/posixtm.c: Likewise.
54896         [HAVE_STDBOOL_H]: Include <stdbool.h>.
54897         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
54898         (t): Remove static var.
54899         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
54900         of static var.  All uses changed.
54901         (year): Do not reject years before 1900; they can occur with
54902         64-bit time_t.
54903         (posix_time_parse): Do not check for out-of-range components;
54904         that is now the caller's responsibility, since our checks were
54905         only approximations.
54906         (posixtime): Use mktime to check for out-of-range components,
54907         since it knows them exactly.
54908         If mktime returns (time_t) -1, check whether an error actually occurred
54909         by invoking localtime on -1.
54910         (main) [TEST_POSIXTIME]: Check for input data errors, and report
54911         posixtime failures better.
54912         Improve the test data (in comments only).
54913
54914 2003-06-02  Karl Berry  <karl@gnu.org>
54915
54916         * config/mkinstalldirs (version): new variable.
54917         (--version): new option.
54918         (usage): improve message.
54919
54920 2003-05-30  Karl Berry  <karl@gnu.org>
54921
54922         * lib/mktime.c: update from libc.
54923
54924 2003-05-30  Bruno Haible  <bruno@clisp.org>
54925
54926         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
54927         * config/config.rpath: Upgrade to gettext-0.12.1.
54928
54929 2003-05-30  Bruno Haible  <bruno@clisp.org>
54930
54931         * m4/gettext.m4: Upgrade to gettext-0.12.1.
54932         * m4/nls.m4: New file, from gettext-0.12.1.
54933         * m4/po.m4: New file, from gettext-0.12.1.
54934         * m4/progtest.m4: Upgrade to gettext-0.12.1.
54935
54936 2003-05-30  Bruno Haible  <bruno@clisp.org>
54937
54938         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
54939         * lib/localcharset.h: Likewise.
54940         * lib/localcharset.c: Likewise.
54941
54942 2003-05-29  Karl Berry  <karl@gnu.org>
54943
54944         * config/config.rpath: update from gettext.
54945
54946 2003-05-28  Paul Eggert  <eggert@twinsun.com>
54947
54948         Assume the headers required for C89 freestanding compilers.
54949         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
54950         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
54951         * m4/human.m4 (gl_HUMAN): Likewise.
54952         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
54953         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
54954         * m4/userspec.m4 (gl_USERSPEC): Likewise.
54955         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
54956         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
54957         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
54958
54959 2003-05-28  Paul Eggert  <eggert@twinsun.com>
54960
54961         Assume the headers required for C89 freestanding compilers.
54962         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
54963         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
54964         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
54965         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
54966         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
54967         define, since <limits.h> is guaranteed to do that.
54968         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
54969         * lib/exclude.c: Include <stdbool.h> unconditionally.
54970         * lib/tempname.c: Include <stddef.h> unconditionally.
54971         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
54972         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
54973         <stddef.h> does that.
54974         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
54975         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
54976         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
54977         needed.
54978         * lib/xstrtol.c: Likewise.
54979         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
54980         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
54981
54982         * lib/addext.c (addext): Use assignment rather than cast, to avoid
54983         warnings on some platforms.
54984
54985         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
54986         arbitrarily.
54987
54988 2003-05-26  Jim Meyering  <jim@meyering.net>
54989
54990         Merge in a change from coreutils:
54991         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
54992         that is guaranteed to be `no'.  Use `no_such_member' to indicate
54993         that condition, rather than `-1' which is slightly misleading.
54994         Change the name of the cache variable to have the gl_ prefix.
54995         Prompted by a patch from Richard Dawe for DJGPP.
54996
54997 2003-05-24  Karl Berry  <karl@gnu.org>
54998
54999         * config/config.guess: update from prep.
55000
55001 2003-05-22  Karl Berry  <karl@gnu.org>
55002
55003         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
55004
55005 2003-05-20  Karl Berry  <karl@gnu.org>
55006
55007         * config/config.guess: update from prep.
55008
55009 2003-05-18  Karl Berry  <karl@gnu.org>
55010
55011         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
55012         might actually be set by the user.
55013
55014         * config/depcomp, install-sh, mdate-sh: update from automake.
55015
55016 2003-05-17  Bruno Haible  <bruno@clisp.org>
55017
55018         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
55019         invalid expansion for AC_EGREP_CPP.
55020         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
55021         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
55022         Suggested by Akim Demaille <akim@epita.fr> in
55023         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
55024
55025 2003-05-12  Jim Meyering  <jim@meyering.net>
55026
55027         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
55028         the space-padded-by-default conversion specifiers, %e, %k, %l.
55029
55030 2003-05-12  Bruno Haible  <bruno@clisp.org>
55031
55032         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
55033         the string is longer than 4 KB.
55034
55035 2003-05-11  Karl Berry  <karl@gnu.org>
55036
55037         * config/config.{guess,sub}: update from prep.
55038
55039 2003-05-09  Bruno Haible  <bruno@clisp.org>
55040
55041         * modules/error: Add m4/strerror_r.m4 to file list.
55042
55043 2003-05-03  Bruno Haible  <bruno@clisp.org>
55044
55045         Upgrade to Unicode-4.0.
55046         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
55047         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
55048         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
55049         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
55050         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
55051         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
55052         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
55053         Change width of U+E0100..U+E01EF from 1 to 0.
55054
55055 2003-04-25  Jim Meyering  <jim@meyering.net>
55056
55057         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
55058         of type size_t, not int.
55059
55060 2003-04-25  Bruno Haible  <bruno@clisp.org>
55061
55062         * lib/copy-file.c: Include <stddef.h>, for size_t.
55063
55064 2003-04-21  Paul Eggert  <eggert@twinsun.com>
55065
55066         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
55067         code which expansion is under static control.  Patch imported from
55068         Akim Demaille's patch to Bison; see
55069         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
55070
55071 2003-04-14  Bruno Haible  <bruno@clisp.org>
55072
55073         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
55074
55075 2003-04-11  Jim Meyering  <jim@meyering.net>
55076
55077         Merge changes from Coreutils.
55078
55079         2003-03-22  Jim Meyering  <jim@meyering.net>
55080
55081         * lib/strftime.c (widen): Cast alloca return value to proper type.
55082
55083         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
55084
55085         From GNU libc.
55086         * lib/strftime.c (my_strftime): Handle very large width
55087         specifications for numeric values correctly.  Improve checks for
55088         overflow.
55089
55090         2003-01-19  Jim Meyering  <jim@meyering.net>
55091
55092         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
55093         definitions.
55094         (nl_get_alt_digit) [! defined my_strftime]: Define.
55095         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
55096         _nl_get_alt_digit and _nl_get_walt_digit.
55097
55098         * lib/strftime.c (my_strftime): Merge in locale-related changes from
55099         libc. These changes have no effect outside of _LIBC.
55100
55101 2003-04-10  Bruno Haible  <bruno@clisp.org>
55102
55103         * modules/findprog: New file.
55104         * MODULES.html.sh (func_all_modules): Add it.
55105
55106 2003-04-10  Bruno Haible  <bruno@clisp.org>
55107
55108         * m4/findprog.m4: New file.
55109         * m4/eaccess.m4: New file.
55110
55111 2003-04-10  Bruno Haible  <bruno@clisp.org>
55112
55113         * lib/findprog.h: New file, from GNU gettext.
55114         * lib/findprog.c: New file, from GNU gettext.
55115
55116 2003-04-05  Jim Meyering  <jim@meyering.net>
55117
55118         Merge changes from Coreutils.
55119
55120         * lib/exclude.h (PARAMS): Remove definition and uses.
55121         * lib/exclude.c: Remove uses of `PARAMS'.
55122
55123         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
55124         Add test-cases for DOS filenames. Declare program_name.
55125         (main): Set up program_name.  Patch by Rich Dawe.
55126
55127         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
55128         error from mntctl.
55129         Use mntctl's return value to drive the entry-processing loop, since
55130         we can't rely on the value of the vmt_length member in the last
55131         entry.  On some systems doing so could result in exhausting
55132         virtual memory.  Based in part on a patch from Mike Jetzer.
55133
55134 2003-04-04  Bruno Haible  <bruno@clisp.org>
55135
55136         * modules/linebreak: New file.
55137         * MODULES.html.sh (func_all_modules): Add it.
55138
55139 2003-04-04  Bruno Haible  <bruno@clisp.org>
55140
55141         * m4/linebreak.m4: New file.
55142
55143 2003-04-04  Bruno Haible  <bruno@clisp.org>
55144
55145         * lib/linebreak.h: New file, from GNU gettext.
55146         * lib/linebreak.c: New file, from GNU gettext with slight
55147         modifications.
55148         * lib/lbrkprop.h: New file, from GNU gettext.
55149
55150 2003-04-03  Bruno Haible  <bruno@clisp.org>
55151
55152         * modules/utf8-ucs4: New file.
55153         * modules/utf16-ucs4: New file.
55154         * modules/ucs4-utf8: New file.
55155         * modules/ucs4-utf16: New file.
55156         * MODULES.html.sh (func_all_modules): Add them.
55157
55158 2003-04-03  Bruno Haible  <bruno@clisp.org>
55159
55160         * m4/utf-ucs4.m4: New file.
55161         * m4/ucs4-utf.m4: New file.
55162
55163 2003-04-03  Bruno Haible  <bruno@clisp.org>
55164
55165         * lib/utf8-ucs4.h: New file, from GNU gettext.
55166         * lib/utf16-ucs4.h: New file, from GNU gettext.
55167         * lib/ucs4-utf8.h: New file, from GNU gettext.
55168         * lib/ucs4-utf16.h: New file, from GNU gettext.
55169
55170 2003-04-02  Bruno Haible  <bruno@clisp.org>
55171
55172         * modules/binary-io: New file.
55173         * MODULES.html.sh (func_all_modules): Add it.
55174
55175 2003-04-02  Bruno Haible  <bruno@clisp.org>
55176
55177         * lib/binary-io.h: New file, from GNU gettext.
55178
55179 2003-04-01  Bruno Haible  <bruno@clisp.org>
55180
55181         * modules/pathname: New file.
55182         * MODULES.html.sh (func_all_modules): Add it.
55183
55184 2003-04-01  Bruno Haible  <bruno@clisp.org>
55185
55186         * lib/pathname.h: New file, from GNU gettext.
55187         * lib/concatpath.c: New file, from GNU gettext.
55188
55189 2003-03-30  Bruno Haible  <bruno@clisp.org>
55190
55191         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
55192
55193 2003-03-30  Bruno Haible  <bruno@clisp.org>
55194
55195         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
55196         function chown() doesn't exist.
55197
55198 2003-03-28  Bruno Haible  <bruno@clisp.org>
55199
55200         * modules/copy-file: New file.
55201         * MODULES.html.sh (func_all_modules): Add it.
55202
55203 2003-03-28  Bruno Haible  <bruno@clisp.org>
55204
55205         * m4/copy-file.m4: New file.
55206
55207 2003-03-28  Bruno Haible  <bruno@clisp.org>
55208
55209         * lib/copy-file.h: New file, from GNU gettext.
55210         * lib/copy-file.c: New file, from GNU gettext.
55211
55212 2003-03-18  Jim Meyering  <jim@meyering.net>
55213
55214         * lib/quote.c (quote_n): Fix typo in comment.
55215
55216 2003-03-18  Bruno Haible  <bruno@clisp.org>
55217
55218         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
55219         checking.
55220         * m4/onceonly_2_57.m4: Likewise.
55221
55222 2003-03-17  Bruno Haible  <bruno@clisp.org>
55223
55224         * m4/onceonly.m4: Require autoconf 2.54 or newer.
55225         (m4_quote): Remove macro.
55226         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
55227
55228 2003-03-14  Jim Meyering  <jim@meyering.net>
55229
55230         Merge changes from Coreutils.
55231         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
55232         to be const, in order to avoid warnings.
55233         (obstack_room): Likewise.
55234         (obstack_empty_p): Likewise.
55235
55236 2003-03-14  Bruno Haible  <bruno@clisp.org>
55237
55238         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
55239         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
55240
55241 2003-03-13  Paul Eggert  <eggert@twinsun.com>
55242
55243         Merge changes from Bison.
55244         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
55245         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
55246         when compiling Bison 1.875's `bitset bset = obstack_alloc
55247         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
55248         * lib/hash.c: Include <stdbool.h> unconditionally.
55249
55250 2003-03-13  Paul Eggert  <eggert@twinsun.com>
55251
55252         * m4/onceonly.m4 (m4_quote): New macro.
55253         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
55254         Quote AC_FOREACH variable-expansions properly.
55255
55256 2003-03-13  Paul Eggert  <eggert@twinsun.com>
55257
55258         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
55259
55260 2003-03-09  Paul Eggert  <eggert@twinsun.com>
55261
55262         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
55263         Reported by Bruce Becker; see:
55264         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
55265
55266 2003-03-03  Paul Eggert  <eggert@twinsun.com>
55267             Bruno Haible  <bruno@clisp.org>
55268
55269         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
55270         Reported by John Hughes, see
55271         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
55272
55273 2003-02-20  Bruno Haible  <bruno@clisp.org>
55274
55275         * MODULES.html.sh (func_all_modules): Add poll.
55276
55277 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
55278
55279         * modules/poll: New file.
55280
55281 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
55282
55283         * lib/poll_.h: New file.
55284         * lib/poll.c: New file.
55285
55286 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
55287
55288         * m4/poll.m4: New file.
55289
55290 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
55291
55292         * modules/mathl: New file.
55293
55294 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
55295
55296         * lib/mathl.h: New file.
55297         * lib/acosl.c: New file.
55298         * lib/asinl.c: New file.
55299         * lib/atanl.c: New file.
55300         * lib/ceill.c: New file.
55301         * lib/cosl.c: New file.
55302         * lib/expl.c: New file.
55303         * lib/floorl.c: New file.
55304         * lib/frexpl.c: New file.
55305         * lib/ldexpl.c: New file.
55306         * lib/logl.c: New file.
55307         * lib/sincosl.c: New file.
55308         * lib/sinl.c: New file.
55309         * lib/sqrtl.c: New file.
55310         * lib/tanl.c: New file.
55311         * lib/trigl.c: New file.
55312         * lib/trigl.h: New file.
55313
55314 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
55315
55316         * m4/mathl.m4: New file.
55317
55318 2003-02-18  Bruno Haible  <bruno@clisp.org>
55319
55320         * MODULES.html.sh (func_all_modules): Add mathl.
55321
55322 2003-02-17  Bruno Haible  <bruno@clisp.org>
55323
55324         * modules/mkdtemp: New module.
55325         * MODULES.html.sh (func_all_modules): Add it.
55326
55327 2003-02-17  Bruno Haible  <bruno@clisp.org>
55328
55329         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
55330
55331 2003-02-17  Bruno Haible  <bruno@clisp.org>
55332
55333         * lib/mkdtemp.h: New file, from GNU gettext.
55334         * lib/mkdtemp.c: New file, from GNU gettext.
55335
55336 2003-02-02  Jim Meyering  <jim@meyering.net>
55337
55338         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
55339         e.g. glibc-2.2.93.
55340
55341 2003-01-31  Bruno Haible  <bruno@clisp.org>
55342
55343         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
55344         'rpl_rename'.
55345         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
55346         'rpl_strnlen'.
55347         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
55348         'rpl_strtod'.
55349         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
55350         'rpl_utime'.
55351
55352 2003-01-31  Bruno Haible  <bruno@clisp.org>
55353
55354         * lib/rename.c: #undef rename before defining rpl_rename.
55355         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
55356
55357 2003-01-30  Bruno Haible  <bruno@clisp.org>
55358
55359         * modules/vasnprintf, modules/vasprintf: New modules.
55360         * MODULES.html.sh (func_all_modules): Add them.
55361
55362 2003-01-30  Bruno Haible  <bruno@clisp.org>
55363
55364         * m4/signed.m4: New file, from GNU gettext.
55365         * m4/longdouble.m4: New file, from GNU gettext.
55366         * m4/wchar_t.m4: New file, from GNU gettext.
55367         * m4/wint_t.m4: New file, from GNU gettext.
55368         * m4/vasnprintf.m4: New file.
55369         * m4/vasprintf.m4: New file.
55370
55371 2003-01-30  Bruno Haible  <bruno@clisp.org>
55372
55373         * lib/printf-args.h: New file, from GNU gettext.
55374         * lib/printf-args.c: New file, from GNU gettext.
55375         * lib/printf-parse.h: New file, from GNU gettext.
55376         * lib/printf-parse.c: New file, from GNU gettext.
55377         * lib/vasnprintf.h: New file, from GNU gettext.
55378         * lib/vasnprintf.c: New file, from GNU gettext.
55379         * lib/asnprintf.c: New file, from GNU gettext.
55380         * lib/vasprintf.h: New file, from GNU gettext with modifications.
55381         * lib/vasprintf.c: New file, from GNU gettext.
55382         * lib/asprintf.c: New file, from GNU gettext.
55383
55384 2003-01-29  Bruno Haible  <bruno@clisp.org>
55385
55386         * modules/stpncpy: New module.
55387         * MODULES.html.sh (func_all_modules): Add it.
55388
55389 2003-01-29  Bruno Haible  <bruno@clisp.org>
55390
55391         * m4/stpncpy.m4: New file.
55392
55393 2003-01-29  Bruno Haible  <bruno@clisp.org>
55394
55395         * lib/stpncpy.h: New file, from GNU gettext with modifications.
55396         * lib/stpncpy.c: New file, from GNU gettext with modifications.
55397
55398 2003-01-28  Bruno Haible  <bruno@clisp.org>
55399
55400         * modules/c-ctype: New module.
55401         * MODULES.html.sh (func_all_modules): Add it.
55402
55403 2003-01-28  Bruno Haible  <bruno@clisp.org>
55404
55405         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
55406         Paul Eggert.
55407         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
55408         Paul Eggert.
55409
55410 2003-01-27  Bruno Haible  <bruno@clisp.org>
55411
55412         * modules/xsetenv: New module.
55413         * MODULES.html.sh (func_all_modules): Add it.
55414
55415 2003-01-27  Bruno Haible  <bruno@clisp.org>
55416
55417         * lib/xsetenv.h: New file, from GNU gettext.
55418         * lib/xsetenv.c: New file, from GNU gettext.
55419
55420 2003-01-23  Jim Meyering  <jim@meyering.net>
55421
55422         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
55423         from working on systems without dirfd (at least Irix and OSF1/Tru64).
55424
55425 2003-01-23  Bruno Haible  <bruno@clisp.org>
55426
55427         * modules/minmax: New module.
55428         * MODULES.html.sh (func_all_modules): Add it.
55429
55430 2003-01-23  Bruno Haible  <bruno@clisp.org>
55431
55432         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
55433         Eggert.
55434
55435 2003-01-22  Bruno Haible  <bruno@clisp.org>
55436
55437         * modules/exit: New module.
55438         * MODULES.html.sh (func_all_modules): Add it.
55439
55440 2003-01-22  Bruno Haible  <bruno@clisp.org>
55441
55442         * lib/exit.h: New file, from GNU gettext.
55443
55444 2003-01-19  Bruno Haible  <bruno@clisp.org>
55445
55446         * gnulib-tool: Recognize option --extract-maintainer.
55447         (func_get_maintainer): New function.
55448         * modules/*: Add Maintainer entry.
55449
55450 2003-01-16  Jim Meyering  <jim@meyering.net>
55451
55452         * m4/regex.m4: The `regex' struct is both input and output.
55453         Initialize it before each use.  Patch by Tim Waugh.
55454
55455 2003-01-16  Bruno Haible  <bruno@clisp.org>
55456
55457         * MODULES.html.sh: Add a table of contents. Add the module name as
55458         leftmost column. Add hyperlinks.
55459
55460 2003-01-15  Bruno Haible  <bruno@clisp.org>
55461
55462         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
55463
55464 2003-01-15  Bruno Haible  <bruno@clisp.org>
55465
55466         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
55467         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
55468         suffix.
55469
55470 2003-01-15  Bruno Haible  <bruno@clisp.org>
55471
55472         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
55473
55474 2003-01-15  Bruno Haible  <bruno@clisp.org>
55475
55476         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
55477         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
55478
55479 2003-01-14  Jim Meyering  <jim@meyering.net>
55480
55481         * lib/same.c (same_name): Tweak a comment.
55482
55483 2003-01-14  Bruno Haible  <bruno@clisp.org>
55484
55485         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
55486         when a string comparison is sufficient.
55487
55488 2003-01-14  Bruno Haible  <bruno@clisp.org>
55489
55490         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
55491         'unsigned int'.
55492
55493 2003-01-14  Bruno Haible  <bruno@clisp.org>
55494
55495         * lib/hash-pjw.c: Add comment about low quality of this function.
55496
55497 2003-01-13  Bruno Haible  <bruno@clisp.org>
55498
55499         * modules/stpcpy: Distribute lib/stpcpy.h.
55500         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
55501
55502 2003-01-13  Bruno Haible  <bruno@clisp.org>
55503
55504         * modules/*: Add a description.
55505         * modules/strpbrk: Fix Makefile.am snippet.
55506         * modules/strtoimax: Fix dependencies.
55507         * modules/strtoumax: Likewise.
55508
55509 2003-01-13  Bruno Haible  <bruno@clisp.org>
55510
55511         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
55512         * modules/alloca (Makefile.am): All object files depend on alloca.h.
55513         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
55514
55515 2003-01-13  Bruno Haible  <bruno@clisp.org>
55516
55517         * gnulib-tool (func_create_testdir): Store config/* files in the main
55518         directory.
55519         * config.rpath: Move to ...
55520         * config/config.rpath: ... here.
55521         * modules/gettext: Contains config/config.rpath, not config.rpath.
55522         * modules/iconv: Likewise.
55523
55524 2003-01-12  Paul Eggert  <eggert@twinsun.com>
55525
55526         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
55527         to avoid collisions with libcurses and libreadline.
55528
55529         * m4/getstr.m4: Remove.
55530         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
55531
55532 2003-01-12  Paul Eggert  <eggert@twinsun.com>
55533
55534         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
55535         to avoid collisions with libcurses and libreadline.
55536
55537         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
55538         * lib/getstr.h, getstr.c: Remove.
55539         * lib/getline.c: Include "getline.h", to check interface.
55540         Move body of old getstr.c here: this defines MIN_CHUNK and
55541         declares getdelim2, which is renamed from getstr.
55542         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
55543
55544         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
55545         All uses changed.
55546         * lib/linebuffer.h: Likewise.
55547         (readline): Remove backward-compatibility macro.
55548
55549 2003-01-12  Paul Eggert  <eggert@twinsun.com>
55550
55551         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
55552         to avoid collisions with libcurses and libreadline.
55553         * getstr: Remove.
55554         * MODULES.html.sh: Remove getstr.
55555         * modules/getline: Depend on unlocked-io, not getstr.
55556
55557 2003-01-12  Jim Meyering  <jim@meyering.net>
55558
55559         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
55560
55561 2003-01-10  Bruno Haible  <bruno@clisp.org>
55562
55563         * modules/alloca: Change Makefile.am requirements. Simplify Include
55564         requirements. Add lib/alloca_.h to file list.
55565
55566 2003-01-10  Bruno Haible  <bruno@clisp.org>
55567
55568         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
55569
55570 2003-01-10  Bruno Haible  <bruno@clisp.org>
55571
55572         * lib/alloca_.h: New file.
55573         * lib/getdate.y: Unconditionally include alloca.h.
55574         * lib/makepath.c: Likewise.
55575         * lib/setenv.c: Likewise.
55576         * lib/userspec.c: Likewise.
55577
55578 2003-01-09  Karl Berry  <karl@gnu.org>
55579
55580         * MODULES.html.sh: include `dirname $0` in PATH, to find
55581         gnulib-tool.
55582
55583 2003-01-09  Bruno Haible  <bruno@clisp.org>
55584
55585         * modules/stdbool: Change configure.ac, Makefile.am requirements.
55586         Simplify Include requirements. Add lib/stdbool.h.in to file list.
55587
55588 2003-01-09  Bruno Haible  <bruno@clisp.org>
55589
55590         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
55591
55592 2003-01-09  Bruno Haible  <bruno@clisp.org>
55593
55594         * lib/stdbool.h.in: New file.
55595
55596 2003-01-09  Bruno Haible  <bruno@clisp.org>
55597
55598         * gnulib-tool (func_all_modules): Ignore files ending in ~.
55599         * MODULES.html.sh: Likewise.
55600
55601 2003-01-08  Jim Meyering  <jim@meyering.net>
55602
55603         * lib/full-write.c: Undefine and define-away `const' after inclusion
55604         of errno.h, not before.  Suggestion from Bruno Haible.
55605
55606 2003-01-08  Bruno Haible  <bruno@clisp.org>
55607
55608         * modules/full-read: Depend on full-write.
55609
55610 2003-01-08  Bruno Haible  <bruno@clisp.org>
55611
55612         * lib/safe-read.c: Include specification header first, to ensure its
55613         selfcontainedness.
55614         * lib/full-write.c: Likewise.
55615
55616 2003-01-07  Jim Meyering  <jim@meyering.net>
55617
55618         * lib/full-write.c: Rework so that it may serve to define full_read,
55619         too.
55620         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
55621
55622 2003-01-07  Bruno Haible  <bruno@clisp.org>
55623
55624         * lib/strtoimax.c: Include <stdint.h> as an alternative to
55625         <inttypes.h>.
55626         * lib/xstrtol.h: Likewise.
55627         * lib/xstrtoimax.c: Likewise.
55628         * lib/xstrtoumax.c: Likewise.
55629         * lib/human.h: Likewise.
55630
55631         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
55632         on systems that have <inttypes.h> but not <stdint.h>.
55633
55634 2003-01-07  Bruno Haible  <bruno@clisp.org>
55635
55636         * MODULES.html.sh: Add copyright notice.
55637         (missed_files): Omit CVS directory entries.
55638         (func_module): Make it work with sed-3.02.
55639         * MODULES.txt: Remove file.
55640
55641 2003-01-06  Jim Meyering  <jim@meyering.net>
55642
55643         * lib/version-etc.c: Update year in translatable copyright string.
55644
55645 2003-01-03  Karl Berry  <karl@gnu.org>
55646
55647         * config/config.{guess,sub}: update from prep.
55648
55649 2003-01-02  Karl Berry  <karl@gnu.org>
55650
55651         * doc/COPYING.DOC: belatedly updated to 1.2.
55652
55653 2003-01-01  Karl Berry  <karl@gnu.org>
55654
55655         * gnulib-tool (func_verify_module): report module name $module in
55656         error message, not $1.
55657         * gnulib-tool (create-testdir): don't complain if destdir couldn't
55658         be created, only if it doesn't exist.
55659         * gnulib-tool (last_checkin_date): don't expand the $Date here.
55660
55661 2002-12-31  Paul Eggert  <eggert@twinsun.com>
55662
55663         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
55664
55665 2002-12-31  Paul Eggert  <eggert@twinsun.com>
55666
55667         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
55668         memcmp if strcoll doesn't work.
55669
55670 2002-12-31  Bruno Haible  <bruno@clisp.org>
55671
55672         * lib/utime.c (utime_null): No need to call ftruncate if the file was
55673         nonempty.
55674
55675 2002-12-31  Bruno Haible  <bruno@clisp.org>
55676
55677         * lib/memcoll.c (STRCOLL): New macro.
55678         (memcoll): Use it.
55679
55680 2002-12-31  Bruno Haible  <bruno@clisp.org>
55681
55682         * lib/localcharset.h: New file.
55683         * lib/localcharset.c: Include it.
55684         * lib/unicodeio.c: Likewise.
55685
55686 2002-12-31  Bruno Haible  <bruno@clisp.org>
55687
55688         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
55689         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
55690
55691 2002-12-31  Bruno Haible  <bruno@clisp.org>
55692
55693         * lib/getline.h: Include <stddef.h>, for size_t.
55694
55695         * lib/unicodeio.h: Include <stddef.h>, for size_t.
55696         * lib/unicodeio.c: Don't include <stddef.h>.
55697
55698 2002-12-31  Bruno Haible  <bruno@clisp.org>
55699
55700         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
55701         HAVE_TM_ZONE.
55702
55703 2002-12-24  Karl Berry  <karl@gnu.org>
55704
55705         * config/config.guess: update from prep.
55706
55707 2002-12-24  Bruno Haible  <bruno@clisp.org>
55708
55709         General infrasructure.
55710         * m4/README: Rewritten.
55711         * m4/onceonly.m4: New file.
55712         * m4/onceonly_2_57.m4: New file.
55713
55714         Module atexit.
55715         * m4/atexit.m4: New file.
55716
55717         Module strtod.
55718         * m4/strtod.m4: New file.
55719
55720         Module strtol.
55721         * m4/strtol.m4: New file.
55722
55723         Module strtoul.
55724         * m4/strtoul.m4: New file.
55725
55726         Module memchr.
55727         * m4/memchr.m4: New file.
55728
55729         Module memcmp.
55730         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
55731         (jm_FUNC_MEMCMP): Invoke it.
55732
55733         Module memcpy.
55734         * m4/memcpy.m4: New file.
55735
55736         Module memmove.
55737         * m4/memmove.m4: New file.
55738
55739         Module memset.
55740         * m4/memset.m4: New file.
55741
55742         Module strcspn.
55743         * m4/strcspn.m4: New file.
55744
55745         Module strpbrk.
55746         * m4/strpbrk.m4: New file.
55747
55748         Module strstr.
55749         * m4/strstr.m4: New file.
55750
55751         Module strerror.
55752         * m4/strerror.m4: New file.
55753
55754         Module mktime.
55755         * m4/mktime.m4: Renamed from jm-mktime.m4.
55756         (gl_PREREQ_MKTIME): New macro.
55757         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
55758
55759         Module malloc.
55760         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
55761         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
55762         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
55763
55764         Module realloc.
55765         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
55766         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
55767         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
55768
55769         Module strftime.
55770         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
55771         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
55772         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
55773         gl_TM_GMTOFF.
55774         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
55775
55776         Module xalloc.
55777         * m4/xalloc.m4: New file.
55778
55779         Module alloca.
55780         * m4/alloca.m4: New file.
55781
55782         Module putenv.
55783         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
55784         (jm_FUNC_PUTENV): Invoke it.
55785
55786         Module setenv.
55787         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
55788         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
55789         when invoked twice.
55790         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
55791         gt_FUNC_SETENV.
55792
55793         Module memrchr.
55794         * m4/memrchr.m4: New file.
55795
55796         Module stpcpy.
55797         * m4/stpcpy.m4: New file.
55798
55799         Module strcase.
55800         * m4/strcase.m4: New file.
55801
55802         Module strdup.
55803         * m4/strdup.m4: New file.
55804
55805         Module strnlen.
55806         * m4/strnlen.m4: New file.
55807
55808         Module strndup.
55809         * m4/strndup.m4: New file.
55810
55811         Module xstrtod.
55812         * m4/xstrtod.m4: New file.
55813
55814         Module xstrtol.
55815         * m4/xstrtol.m4: New file.
55816
55817         Module getdate.
55818         * m4/getdate.m4: New file.
55819
55820         Module unlocked-io.
55821         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
55822         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
55823         * m4/jm-glibc-io.m4n: Remove file.
55824
55825         Module long-options.
55826         * m4/long-options.m4: New file.
55827
55828         Module md5.
55829         * m4/md5.m4: New file.
55830
55831         Module sha.
55832         * m4/sha.m4: New file.
55833
55834         Module getstr.
55835         * m4/getstr.m4: New file.
55836
55837         Module getline.
55838         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
55839         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
55840         <sys/types.h>, for size_t. Use the function name gnu_getline, not
55841         simply getline. Infoke gl_PREREQ_GETLINE.
55842
55843         Module obstack.
55844         * m4/obstack.m4: New file.
55845
55846         Module hash.
55847         * m4/hash.m4: New file.
55848
55849         Module readtokens.
55850         * m4/readtokens.m4: New file.
55851
55852         Module strverscmp.
55853         * m4/strverscmp.m4: New file.
55854
55855         Module stdbool.
55856         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
55857         OSF/1.
55858
55859         Module strtoll.
55860         * m4/strtoll.m4: New file.
55861
55862         Module strtoull.
55863         * m4/strtoull.m4: New file.
55864
55865         Module strtoimax.
55866         * m4/strtoimax.m4: New file.
55867
55868         Module strtoumax.
55869         * m4/strtoumax.m4: New file.
55870
55871         Module xstrtoimax.
55872         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
55873         jm_AC_PREREQ_XSTRTOIMAX.
55874         Moved the strtol prerequisites to strtol.m4.
55875         Moved the strtoll prerequisites to strtoll.m4.
55876         Moved the strtoimax prerequisites to strtoimax.m4.
55877
55878         Module xstrtoumax.
55879         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
55880         jm_AC_PREREQ_XSTRTOUMAX.
55881         Moved the strtoul prerequisites to strtoul.m4.
55882         Moved the strtoull prerequisites to strtoull.m4.
55883         Moved the strtoumax prerequisites to strtoumax.m4.
55884
55885         Module chown.
55886         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
55887         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
55888
55889         Module dup2.
55890         * m4/dup2.m4: New file.
55891
55892         Module ftruncate.
55893         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
55894         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
55895
55896         Module getgroups.
55897         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
55898         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
55899
55900         Module gettimeofday.
55901         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
55902         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
55903         gl_PREREQ_GETTIMEOFDAY.
55904
55905         Module mkdir.
55906         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
55907         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
55908
55909         Module mkstemp.
55910         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
55911         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
55912         jm_AC_TYPE_UINTMAX_T.
55913         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
55914
55915         Module stat.
55916         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
55917         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
55918
55919         Module lstat.
55920         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
55921         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
55922
55923         Module timespec.
55924         * m4/timespec.m4 (gl_TIMESPEC): New macro.
55925         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
55926         * m4/st_mtim.m4: Indentation.
55927
55928         Module nanosleep.
55929         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
55930         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
55931         gl_PREREQ_NANOSLEEP.
55932
55933         Module regex.
55934         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
55935         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
55936         (gl_REGEX): New macro.
55937
55938         Module rename.
55939         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
55940         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
55941
55942         Module rmdir.
55943         * m4/rmdir.m4: New file.
55944
55945         Module utime.
55946         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
55947         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
55948         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
55949
55950         Module dirname.
55951         * m4/dirname.m4: New file.
55952
55953         Module getopt.
55954         * m4/getopt.m4: New file.
55955
55956         Module unistd-safer.
55957         * m4/unistd-safer.m4: New file.
55958
55959         Module fnmatch.
55960         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
55961         declaration.
55962         (gl_PREREQ_FNMATCH_EXTRA): New macro.
55963         (gl_FUNC_FNMATCH_POSIX): New macro.
55964         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
55965         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
55966         simply fnmatch.
55967
55968         Module exclude.
55969         * m4/exclude.m4: New file.
55970
55971         Module human.
55972         * m4/human.m4: New file.
55973
55974         Module acl.
55975         * m4/acl.m4: Nop.
55976
55977         Module backupfile.
55978         * m4/backupfile.m4: New file.
55979         * m4/d-ino.m4: Indentation.
55980
55981         Module fsusage.
55982         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
55983         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
55984         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
55985
55986         Module dirfd.
55987         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
55988         requirements.
55989
55990         Module euidaccess.
55991         * m4/euidaccess.m4: New file.
55992
55993         Module file-type.
55994         * m4/file-type.m4: New file.
55995
55996         Module fileblocks.
55997         * m4/fileblocks.m4: New file.
55998
55999         Module filemode.
56000         * m4/filemode.m4: New file.
56001
56002         Module isdir.
56003         * m4/isdir.m4: New file.
56004
56005         Module lchown.
56006         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
56007         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
56008
56009         Module makepath.
56010         * m4/makepath.m4: New file.
56011
56012         Module modechange.
56013         * m4/modechange.m4: New file.
56014
56015         Module mountlist.
56016         * m4/mountlist.m4: New file.
56017         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
56018         Indentation.
56019
56020         Module path-concat.
56021         * m4/path-concat.m4: New file.
56022
56023         Module pathmax.
56024         * m4/pathmax.m4: New file.
56025
56026         Module same.
56027         * m4/same.m4: New file.
56028
56029         Module save-cwd.
56030         * m4/save-cwd.m4: New file.
56031
56032         Module savedir.
56033         * m4/savedir.m4: New file.
56034
56035         Module xgetcwd.
56036         * m4/xgetcwd.m4: New file.
56037         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
56038
56039         Module xreadlink.
56040         * m4/xreadlink.m4: New file.
56041
56042         Module safe-read.
56043         * m4/safe-read.m4: New file.
56044
56045         Module safe-write.
56046         * m4/safe-write.m4: New file.
56047
56048         Module closeout.
56049         * m4/closeout.m4: New file.
56050
56051         Module stdio-safer.
56052         * m4/stdio-safer.m4: New file.
56053
56054         Module getpass.
56055         * m4/getpass.m4: New file.
56056
56057         Module getugroups.
56058         * m4/getugroups.m4: New file.
56059
56060         Module group-member.
56061         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
56062         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
56063
56064         Module idcache.
56065         * m4/idcache.m4: New file.
56066
56067         Module userspec.
56068         * m4/userspec.m4: New file.
56069
56070         Module gettime.
56071         * m4/clock_time.m4: New file.
56072         * m4/gettime.m4: New file.
56073
56074         Module settime.
56075         * m4/settime.m4: New file.
56076
56077         Module posixtm.
56078         * m4/posixtm.m4: New file.
56079
56080         Module gethostname.
56081         * m4/gethostname.m4: New file.
56082
56083         Module canon-host.
56084         * m4/canon-host.m4: New file.
56085
56086         Module gettext.
56087         * m4/codeset.m4: New file, from gettext-0.11.5.
56088         * m4/gettext.m4: New file, from gettext-0.11.5.
56089         * m4/glibc21.m4: New file, from gettext-0.11.5.
56090         * m4/iconv.m4: New file, from gettext-0.11.5.
56091         * m4/intdiv0.m4: New file, from gettext-0.11.5.
56092         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
56093         * m4/inttypes.m4: New file, from gettext-0.11.5.
56094         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
56095         * m4/isc-posix.m4: New file, from gettext-0.11.5.
56096         * m4/lcmessage.m4: New file, from gettext-0.11.5.
56097         * m4/lib-ld.m4: New file, from gettext-0.11.5.
56098         * m4/lib-link.m4: New file, from gettext-0.11.5.
56099         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
56100         * m4/progtest.m4: New file, from gettext-0.11.5.
56101         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
56102         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
56103         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
56104
56105         Module localcharset.
56106         * m4/localcharset.m4: New file.
56107
56108         Module hard-locale.
56109         * m4/hard-locale.m4: New file.
56110
56111         Module mbswidth.
56112         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
56113         onceonly macros.
56114         * m4/mbrtowc.m4: Add comment.
56115
56116         Module memcasecmp.
56117         * m4/memcasecmp.m4: New file.
56118
56119         Module memcoll.
56120         * m4/memcoll.m4: New file.
56121
56122         Module unicodeio.
56123         * m4/unicodeio.m4: New file.
56124
56125         Module rpmatch.
56126         * m4/rpmatch.m4: New file.
56127
56128         Module yesno.
56129         * m4/yesno.m4: New file.
56130
56131         Module exitfail.
56132         * m4/exitfail.m4: New file.
56133
56134         Module c-stack.
56135         * m4/c-stack.m4 (gl_C_STACK): New macro.
56136         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
56137
56138         Module error.
56139         * m4/error.m4 (gl_ERROR): New macro.
56140         (jm_PREREQ_ERROR): Use onceonly macros.
56141
56142         Module fatal.
56143         * m4/fatal.m4: New file.
56144
56145         Module getloadavg.
56146         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
56147         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
56148
56149         Module getpagesize.
56150         * m4/getpagesize.m4: New file.
56151
56152         Module getusershell.
56153         * m4/getusershell.m4: New file.
56154
56155         Module physmem.
56156         * m4/physmem.m4: New file.
56157
56158         Module posixver.
56159         * m4/posixver.m4: New file.
56160
56161         Module quotearg.
56162         * m4/quotearg.m4: New file.
56163
56164         Module quote.
56165         * m4/quote.m4: New file.
56166
56167         Module readutmp.
56168         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
56169
56170         Module sig2str.
56171         * m4/sig2str.m4: New file.
56172
56173         Other.
56174         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
56175         ulonglong.m4.
56176         * m4/intmax_t.m4: New file.
56177         * m4/d-type.m4: Indentation.
56178         * m4/jm-macros.m4: Update.
56179         * m4/prereq.m4 (jm_PREREQ): Update.
56180         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
56181         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
56182         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
56183         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
56184         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
56185         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
56186         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
56187         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
56188         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
56189         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
56190         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
56191         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
56192         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
56193         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
56194         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
56195         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
56196         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
56197         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
56198         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
56199
56200 2002-12-24  Bruno Haible  <bruno@clisp.org>
56201
56202         * MODULES.txt: Update according to m4/ changes.
56203
56204         Module gettext.
56205         * config.rpath: New file, from gettext-0.11.5.
56206
56207         * modules/*: New module descriptions.
56208         * gnulib-tool: New file.
56209         * MODULES.html.sh: New file.
56210
56211 2002-12-21  Karl Berry  <karl@gnu.org>
56212
56213         * doc/fdl.texi: update to version 1.2.
56214
56215 2002-12-19  Karl Berry  <karl@gnu.org>
56216
56217         * config/config.guess: update from prep.
56218
56219 2002-12-18  Bruno Haible  <bruno@clisp.org>
56220
56221         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
56222         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
56223
56224 2002-12-17  Bruno Haible  <bruno@clisp.org>
56225
56226         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
56227         stdlib.h, string.h.
56228
56229 2002-12-17  Bruno Haible  <bruno@clisp.org>
56230
56231         * lib/canon-host.c (strdup): Remove unused declaration.
56232
56233         * lib/fsusage.c: Include full_read.h.
56234         (get_fs_usage): Use full_read instead of safe_read.
56235
56236         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
56237
56238 2002-12-12  Karl Berry  <karl@gnu.org>
56239
56240         * config/config.guess: update from prep.
56241
56242 2002-12-11  Bruno Haible  <bruno@clisp.org>
56243
56244         * m4/setenv.m4: New file, from gettext-0.11.5.
56245
56246 2002-12-11  Bruno Haible  <bruno@clisp.org>
56247
56248         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
56249         not unsetenv().
56250         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
56251         modifications:
56252
56253         2002-12-11  Bruno Haible  <bruno@clisp.org>
56254
56255                 * setenv.c (alloca): Fall back to malloc.
56256                 (freea): New macro.
56257                 (setenv): Use freea() to free memory allocated with alloca().
56258
56259         2002-11-13  Bruno Haible  <bruno@clisp.org>
56260
56261                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
56262                 function declarations.
56263                 * unsetenv.c (unsetenv): Likewise.
56264
56265         2002-03-04  Bruno Haible  <bruno@clisp.org>
56266
56267                 Portability to AIX 4.3.3.
56268                 * unsetenv.c: New file, extracted from setenv.c.
56269                 * setenv.c: Move the unsetenv() function to unsetenv.c.
56270
56271         2001-12-20  Bruno Haible  <bruno@clisp.org>
56272
56273                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
56274                 use malloc instead. For SunOS 4.
56275
56276         2001-12-11  Bruno Haible  <bruno@clisp.org>
56277
56278                 * setenv.c: Declare alloca.
56279                 (compar_fn_t): New typedef.
56280                 (KNOWN_VALUE, STORE_VALUE): Use it.
56281
56282         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
56283         setenv.h.
56284
56285 2002-12-10  Paul Eggert  <eggert@twinsun.com>
56286
56287         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
56288         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
56289         Choose values that are less likely to collide with system fnmatch
56290         options.
56291         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
56292         defined (e.g., a pure POSIX system).
56293         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
56294         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
56295
56296 2002-12-06  Paul Eggert  <eggert@twinsun.com>
56297
56298         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
56299         a pain in practice to deal with generated m4 files.  This change
56300         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
56301
56302         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
56303         and jm-glibc-io.m4, as they are no longer a special case.
56304         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
56305         kludge and the auto-generation stuff.  Check only whether the
56306         functions are declared, not whether they exist, since older hosts
56307         that don't declare the functions can't use the optimization anyway.
56308
56309 2002-12-06  Jim Meyering  <jim@meyering.net>
56310
56311         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
56312
56313         Merge in changes from libc's misc/error.c, in preparation
56314         for the merge of gnulib's changes back into libc.
56315
56316         * lib/error.c (_): Define only if not already defined.
56317         Move definition to follow all #include directives.
56318         Include unlocked-io.h only if !_LIBC.
56319         [_LIBC]: Include <libio/libioP.h>.
56320         [USE_IN_LIBIO]: Include <libio/iolibio.h>
56321         (fflush): Tweak definition to use INTUSE.
56322         (putc): Define.
56323
56324 2002-12-05  Paul Eggert  <eggert@twinsun.com>
56325
56326         * lib/alloca.c [defined emacs]: Include "lisp.h".
56327         (xalloc_die) [defined emacs]: New macro.
56328         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
56329         [! defined emacs]: Include <xalloc.h>.
56330         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
56331         (pointer): Typedef to POINTER_TYPE *.
56332         (malloc): Remove decl; we now always use xmalloc.
56333         (alloca): Use old-style definition, since Emacs needs this.
56334         Check for arithmetic overflow when computing combined size.
56335
56336 2002-12-04  Paul Eggert  <eggert@twinsun.com>
56337
56338         Do not generate unlocked-io.h automatically, since it's easier to
56339         maintain it by hand.
56340
56341         * lib/unlocked-io.h: New file, from GNU diffutils,
56342         but with proper copyright notice and attribution.
56343         * lib/gen-uio: Remove.
56344         * lib/Makefile.am: Add copyright notice.
56345         (libfetish_a_SOURCES): Add unlocked-io.h.
56346         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
56347         (DISTCLEANFILES, io_functions): Remove macros.
56348         (EXTRA_DIST): Remove gen_uio.
56349         (unlocked-io.h): Remove rule.
56350
56351 2002-12-04  Jim Meyering  <jim@meyering.net>
56352
56353         Reflect the fact that stat.c and lstat.c are no longer generated.
56354         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
56355         (DISTCLEANFILES): Likewise.
56356         (EXTRA_DIST): Likewise.
56357         (all_local): Don't depend on stat.c or lstat.c.
56358         (stat.c, lstat.c): Remove rules.
56359         (EXTRA_DIST): Remove xstat.in.
56360
56361         * lib/xstat.in: Remove file.  Contents moved into stat.c.
56362         * lib/stat.c: New file.  Contents mostly from xstat.in.
56363         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
56364         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
56365
56366         * lib/safe-read.c: Rework so that it may serve to define safe_write,
56367         too.
56368         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
56369
56370 2002-12-03  Jim Meyering  <jim@meyering.net>
56371
56372         * lib/safe-read.c, safe-write.c: Change variable names and comments,
56373         but not semantics, to minimize the differences between these two files.
56374         (safe_read): Change comment to mention SAFE_READ_ERROR.
56375
56376         * lib/safe-read.c (IS_EINTR): Define.
56377         (safe_read): Use IS_EINTR in place of in-function cpp directives.
56378
56379 2002-12-02  Jim Meyering  <jim@meyering.net>
56380
56381         * lib/safe-read.c (EINTR): Define.
56382         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56383         (INT_MAX): Provide fallback.
56384         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
56385
56386         * lib/safe-read.h (SAFE_READ_ERROR): Define.
56387
56388 2002-12-02  Bruno Haible  <bruno@clisp.org>
56389
56390         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
56391         Define, taken from safe-read.c.
56392         (INT_MAX): Provide fallback.
56393         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
56394         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
56395
56396         * lib/safe-read.c (EINTR): Remove definition.
56397         (safe_read): Don't use EINTR if it is absent.
56398
56399 2002-12-01  Jim Meyering  <jim@meyering.net>
56400
56401         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
56402         zero.
56403         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
56404
56405 2002-11-27  Paul Eggert  <eggert@twinsun.com>
56406
56407         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
56408         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
56409         with `if (! (value < limit)) abort ();', for readability.
56410
56411 2002-11-26  Karl Berry  <karl@gnu.org>
56412
56413         * lib/strdup.c: copy from libc again, with jim's ok.
56414         * lib/.cppi-disable: re-add strdup.c
56415
56416 2002-11-25  Karl Berry  <karl@gnu.org>
56417
56418         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
56419         instead of "strtol.c".
56420
56421 2002-11-25  Karl Berry  <karl@gnu.org>
56422
56423         * config/install-sh: update from automake for variable quoting, $0 in
56424         error msgs, etc.
56425
56426         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
56427         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
56428         entry.
56429
56430 2002-11-25  Jim Meyering  <jim@meyering.net>
56431
56432         * lib/mktime.c: Sync from libc, now that it has the latest fix.
56433
56434 2002-11-24  Karl Berry  <karl@gnu.org>
56435
56436         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
56437         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
56438
56439 2002-11-24  Jim Meyering  <jim@meyering.net>
56440
56441         Update from coreutils:
56442
56443         * lib/mktime.c: Merge in changes from libc.
56444
56445         Avoid a link-time failure on some Linux systems.
56446         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
56447         (otherwise).
56448         (__mon_yday): Declare with the STATIC attribute.
56449         (__mktime_internal): Likewise.
56450         Based on a report from Greg Schafer.
56451
56452 2002-11-23  Jim Meyering  <jim@meyering.net>
56453
56454         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
56455         Use `unsigned', not `int', as type of index.
56456
56457         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
56458
56459         * lib/fsusage.c: Remove unneeded parentheses around operands of
56460         `defined'.
56461
56462 2002-11-22  Paul Eggert  <eggert@twinsun.com>
56463
56464         * lib/quotearg.h: Allow multiple inclusion by surrounding with
56465         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
56466         so that we can be included first.
56467         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
56468         * lib/quotearg.c: Include quotearg.h immediately after config.h.
56469         No need to include stddef.h or sys/types.h any more.
56470         Surround local include files with "", not "<>".
56471         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
56472         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
56473         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
56474         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
56475         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
56476         (ISPRINT): Remove; no longer needed now that we assume C89.
56477
56478         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
56479         Preserve errno.
56480
56481         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
56482         quotearg_char): Use SIZE_MAX rather than
56483         (size_t) -1 when we are talking about "infinity".
56484
56485         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
56486
56487 2002-11-22  Paul Eggert  <eggert@twinsun.com>
56488
56489         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
56490         hint that one should use `if (! x) abort ();' rather than `assert
56491         (x);', and anyway it's one less thing to worry about configuring.
56492         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
56493         hash_rehash, hash_insert): Use abort rather than assert.
56494
56495 2002-11-22  Bruno Haible  <bruno@clisp.org>
56496
56497         * lib/safe-read.h: Assume C89. Add comments.
56498         (safe_read): Change return type to size_t.
56499         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
56500         byte counts > SSIZE_MAX correctly.
56501         * lib/safe-write.h: New file.
56502         * lib/safe-write.c: New file.
56503         * lib/full-read.h: New file.
56504         * lib/full-read.c: New file.
56505         * lib/full-write.h: Assume C89. Add comments.
56506         * lib/full-write.c: Include safe-write.h.
56507         (full_write): Rewritten to use safe_write.
56508         Suggested by Jim Meyering and Paul Eggert.
56509
56510 2002-11-21  Jim Meyering  <jim@meyering.net>
56511
56512         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
56513
56514         Merge in changes from the coreutils.
56515
56516         2002-09-25  Paul Eggert  <eggert@twinsun.com>
56517         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
56518         <stdint.h>.
56519         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
56520         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
56521         int.  Work more efficiently if X is the same width as uintmax_t.
56522         Do not compare X to -1, to avoid bogus compiler warning.
56523         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
56524         Don't assume that f_frsize and f_bsize are the same type.
56525
56526         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
56527         warning on FreeBSD.
56528
56529         * lib/makepath.c (make_path): Restore umask *before* creating the final
56530         component.
56531         (make_path): Minor reformatting.
56532
56533         * lib/xmalloc.c: Adjust to work with new autoconf macros,
56534         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
56535         HAVE_MALLOC/HAVE_REALLOC.
56536
56537         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
56538         dummy ones.  At least on GNU/Linux systems, `auto' means something
56539         else.
56540         From Michael Stone.
56541
56542 2002-11-21  Bruno Haible  <bruno@clisp.org>
56543
56544         Remove case insensitive option matching.
56545         * lib/argmatch.h (argcasematch): Remove declaration.
56546         (ARGCASEMATCH): Remove macro.
56547         (__xargmatch_internal): Remove case_sensitive argument.
56548         (XARGMATCH): Update.
56549         (XARGCASEMATCH): Remove macro.
56550         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
56551         case_sensitive argument.
56552         (argcasematch): Remove function.
56553         (__xargmatch_internal): Remove case_sensitive argument.
56554         (main): Use XARGMATCH instead of XARGCASEMATCH.
56555
56556         * lib/xmalloc.c: Change compile-time error message. Add comment about
56557         required autoconf version.
56558
56559 2002-11-20  Paul Eggert  <eggert@twinsun.com>
56560
56561         Merge argmatch cleanups from Bison.  Assume C89.
56562
56563         * lib/argmatch.c: Include config.h here, not in argmatch.h.
56564         Include stdlib.h, for EXIT_FAILURE.
56565         Always include <string.h>, since we assume C89.
56566         (EXIT_FAILURE): Remove pre-C89 bug workaround.
56567         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
56568         Include <stddef.h> instead, since it's all we need for size_t.
56569         (PARAMS): Remove.  All uses removed.
56570         (ARRAY_CARDINALITY): Do not bother to #undef.
56571         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
56572         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
56573         Remove unnecessary parentheses.
56574         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
56575         Insert necessary parentheses.
56576         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
56577         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
56578
56579 2002-11-19  Bruno Haible  <bruno@clisp.org>
56580
56581         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
56582         * lib/mbswidth.h: Include <stddef.h>, for size_t.
56583
56584         * lib/mbswidth.h (PARAMS): Remove macro.
56585         (mbswidth, mbsnwidth): Use ANSI C function declarations.
56586         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
56587
56588         * lib/gcd.h (PARAMS): Remove macro.
56589         (gcd): Use ANSI C function declarations.
56590         * lib/gcd.c (gcd): Likewise.
56591
56592 2002-11-15  Bruno Haible  <bruno@clisp.org>
56593
56594         * lib/strcspn.c: Include <stddef.h>.
56595         (strcspn): Use ANSI C function declaration. Change return type to
56596         size_t. Use NULL.
56597         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
56598         (strpbrk): Use NULL.
56599         * lib/strpbrk.h (PARAMS): Remove macro.
56600         (strpbrk): Use ANSI C function declaration.
56601         * lib/strstr.c: Don't include <sys/types.h>.
56602         * lib/strstr.h (PARAMS): Remove macro.
56603         (strstr): Use ANSI C function declarations.
56604
56605 2002-11-14  Karl Berry  <karl@gnu.org>
56606
56607         * config/mkinstalldirs: `do' on separate line, instead of
56608         `for var; do'.
56609
56610 2002-11-06  Bruno Haible  <bruno@clisp.org>
56611
56612         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
56613         * lib/gcd.c (gcd): Likewise.
56614
56615 2002-11-05  Bruno Haible  <bruno@clisp.org>
56616
56617         * lib/gcd.h: New file, from gettext-0.11.5.
56618         * lib/gcd.c: New file, from gettext-0.11.5.
56619
56620 2002-11-05  Bruno Haible  <bruno@clisp.org>
56621
56622         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
56623         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
56624         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
56625         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
56626
56627         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
56628         <libintl.h>.
56629         * lib/makepath.c: Include gettext.h instead of <locale.h> and
56630         <libintl.h>.
56631
56632         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
56633         * lib/human.c: Include gettext.h instead of <libintl.h>.
56634         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
56635         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
56636         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
56637         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
56638         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
56639         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
56640         (textdomain): Remove definition.
56641         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
56642
56643         * lib/long-options.c: Remove include of <libintl.h> and definition of
56644         _.
56645         * lib/same.c: Remove include of <libintl.h> and definition of _.
56646
56647 2002-11-04  Owen Taylor  <otaylor@redhat.com>
56648
56649         * lib/config.charset: A few additions for Solaris.
56650
56651 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
56652
56653         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
56654         * lib/localcharset.c (locale_charset): Declare as extern "C".
56655
56656 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
56657
56658         * lib/config.charset: msdos in uk_UA uses CP1125.
56659
56660 2002-11-04  Bruno Haible  <bruno@clisp.org>
56661
56662         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
56663         * lib/strcase.h: New file, from GNU gettext-0.11.5.
56664         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
56665         * lib/strstr.h: New file, from GNU gettext-0.11.5.
56666         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
56667
56668 2002-11-04  Bruno Haible  <bruno@clisp.org>
56669
56670         * lib/localcharset.c (locale_charset): Don't return an empty string.
56671
56672 2002-11-04  Bruno Haible  <bruno@clisp.org>
56673
56674         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
56675         aliases.
56676
56677 2002-11-04  Bruno Haible  <bruno@clisp.org>
56678
56679         * lib/config.charset: Update for newest glibc. Add canonical names
56680         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
56681
56682 2002-11-04  Bruno Haible  <bruno@clisp.org>
56683
56684         * lib/config.charset: Add support for NetBSD.
56685
56686 2002-11-04  Bruno Haible  <bruno@clisp.org>
56687
56688         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
56689
56690 2002-11-01  Bruno Haible  <bruno@clisp.org>
56691
56692         * configure.in: Add AC_CONFIG_AUX_DIR call.
56693         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
56694         test/Makefile.
56695         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
56696
56697 2002-09-28  Karl Berry  <karl@gnu.org>
56698
56699         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
56700         installed automake until the next release, since changes have been
56701         made.
56702
56703 2002-09-25  Karl Berry  <karl@gnu.org>
56704
56705         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
56706         * lib/getopt*: copy from libc/posix.
56707         * lib/gettext.h: copy from gettext.
56708         * lib/.cppi-disable: add strdup.c, gettext.h.
56709
56710 2002-09-25  Karl Berry  <karl@gnu.org>
56711
56712         * config/srclist.txt: enable gettext.h check.
56713         * config/config.{guess,sub}: update from prep.
56714         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
56715                 from automake 1.6.3.
56716         See srclist*.
56717
56718 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
56719
56720         * regex.c (PATFETCH): Remove the translating fetch.
56721         (PATFETCH_RAW): Rename to PATFETCH.
56722         (set_image_of_range): New fun.
56723         (SET_RANGE_TABLE_WORK_AREA): Use it.
56724         (regex_compile): Don't translate the pattern chars so eagerly.
56725         Only do it when inserting an `exactn' bytecode or when handling
56726         a char-range.
56727         (mutually_exclusive_p): Avoid empty statement.
56728
56729 2002-07-06  Jim Meyering  <meyering@lucent.com>
56730
56731         * m4/README: Don't mention Makefile.am.in.
56732         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
56733
56734 2002-07-01  Jim Meyering  <meyering@lucent.com>
56735
56736         * lib/c-stack.c: Include sys/time.h.
56737         From Volker Borchert.
56738
56739 2002-06-26  Paul Eggert  <eggert@twinsun.com>
56740
56741         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
56742
56743 2002-06-26  Paul Eggert  <eggert@twinsun.com>
56744
56745         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
56746         New macro.  Use it uniformly instead of
56747         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
56748         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
56749         reported by Vin Shelton.
56750
56751 2002-06-22  Paul Eggert  <eggert@twinsun.com>
56752
56753         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
56754         Do not assume SA_SIGINFO behavior.
56755         Bug reported by Jim Meyering on NetBSD 1.5.2.
56756
56757 2002-06-22  Jim Meyering  <meyering@lucent.com>
56758
56759         * m4/c-stack.m4: New file, from diffutils-2.8.2.
56760         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
56761
56762         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
56763         now that configure.ac uses AC_GNU_SOURCE.
56764         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
56765         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
56766
56767         Update to latest tools.  Suggestions from Paul Eggert.
56768         * m4/stdbool.m4: New file, from diffutils-2.8.2.
56769         * m4/gnu-source.m4: Update from diffutils-2.8.2.
56770         * m4/fnmatch.m4: Likewise.
56771         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
56772         to AC_HEADER_STDBOOL
56773
56774 2002-06-22  Jim Meyering  <meyering@lucent.com>
56775
56776         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
56777         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
56778
56779 2002-06-22  Jim Meyering  <meyering@lucent.com>
56780
56781         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
56782
56783         * lib/exitfail.c, exitfail.h: Likewise.
56784         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
56785
56786         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
56787         of fnmatch.h.
56788         (EXTRA_DIST): Add fnmatch_loop.c.
56789         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
56790
56791         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
56792         * lib/fnmatch.c: Update from diffutils-2.8.2.
56793         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
56794         * lib/fnmatch.h: Remove file.
56795
56796 2002-06-21  Jim Meyering  <meyering@lucent.com>
56797
56798         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
56799         * m4/mbrtowc.m4: Likewise.
56800
56801         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
56802         * m4/mbswidth.m4: Reflect name change:
56803         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
56804         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
56805
56806         * m4/lib-link.m4: Update from gettext-0.11.2.
56807         * m4/gettext.m4: Likewise.
56808
56809         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
56810         From Alfred M. Szmidt.
56811
56812 2002-06-18  Paul Eggert  <eggert@twinsun.com>
56813
56814         * lib/file-type.h: Report an error if neither S_ISREG nor
56815         S_IFREG is defined, instead of using a test specific to glibc
56816         2.2.  This should be safe, since POSIX requires S_ISREG and
56817         Unix Version 7 had S_IFREG.  We don't need to check for
56818         <sys/types.h> since we don't use any symbols that it defines.
56819
56820 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
56821
56822         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
56823         $@-t, so that each temporary file name is unique and valid in the first
56824         8 characters, for operation under DOS.
56825
56826 2002-06-15  Paul Eggert  <eggert@twinsun.com>
56827
56828         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
56829
56830 2002-06-15  Jim Meyering  <meyering@lucent.com>
56831
56832         Work even with DJGPP 2.03, which lacks support for symlinks.
56833         From Richard Dawe.
56834         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
56835         is defined.
56836         * lib/lchown.c (S_ISLNK): Likewise.
56837
56838 2002-06-15  Jim Meyering  <meyering@lucent.com>
56839
56840         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
56841         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
56842         have been included before this file.
56843
56844 2002-06-14  Jim Meyering  <meyering@lucent.com>
56845
56846         * lib/file-type.h: Use the version from diffutils-2.8.2.
56847         * lib/file-type.c: Likewise.
56848
56849 2002-06-07  Jim Meyering  <meyering@lucent.com>
56850
56851         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
56852         They're needed at least for NetBSD 1.5.2.
56853         ($statxfs_includes): Include those same headers.
56854         ($statxfs_includes): Include sys/vfs.h if available.
56855         ($statxfs_includes): Likewise for sys/statvfs.h.
56856         Check for the following members in both structs statfs and statvfs:
56857         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
56858
56859 2002-06-01  Jim Meyering  <meyering@lucent.com>
56860
56861         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
56862         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
56863
56864 2002-05-28  Jim Meyering  <meyering@lucent.com>
56865
56866         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
56867         Reported by Volker Borchert.
56868
56869 2002-05-27  Jim Meyering  <meyering@lucent.com>
56870
56871         Fix a problem seen only on nonconforming systems whereby ls.c's
56872         use of localtime, and then of gettimeofday would cause trouble:
56873         the localtime call used to initialize rpl_gettimeofday's save
56874         mechanism would clobber ls's current local time information so
56875         that in any long listing the first file would always be listed
56876         with date 1970-01-01.  Analysis by Volker Borchert.
56877
56878         * lib/gettimeofday.c (localtime): Undefine.
56879         (rpl_localtime): New function.
56880
56881 2002-05-27  Jim Meyering  <meyering@lucent.com>
56882
56883         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
56884         localtime.
56885
56886         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
56887         use the replacement function; it wouldn't resolve at link time.
56888         Reported by Volker Borchert.
56889
56890 2002-05-22  Jim Meyering  <meyering@lucent.com>
56891
56892         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
56893         file-type.h.
56894         * lib/file-type.h: New file.
56895         * lib/file-type.c (file_type): New file/function.  Extracted from
56896         diffutils.
56897
56898 2002-04-30  Jim Meyering  <meyering@lucent.com>
56899
56900         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
56901
56902 2002-04-29  Paul Eggert  <eggert@twinsun.com>
56903
56904         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
56905
56906 2002-04-29  Paul Eggert  <eggert@twinsun.com>
56907
56908         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
56909         Do not check for alloca.h (no longer used) or stdbool.h (was never
56910         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
56911
56912 2002-04-29  Paul Eggert  <eggert@twinsun.com>
56913
56914         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
56915
56916 2002-04-29  Jim Meyering  <meyering@lucent.com>
56917
56918         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
56919         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
56920         Use AC_FUNC_STRNLEN here instead.
56921
56922         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
56923         With autoconf-2.53a, it's part of AC_PROG_CC.
56924
56925 2002-04-28  Paul Eggert  <eggert@twinsun.com>
56926
56927         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
56928         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
56929
56930 2002-04-28  Paul Eggert  <eggert@twinsun.com>
56931
56932         * lib/sig2str.h, lib/sig2str.c: New files.
56933         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
56934
56935 2002-04-28  Paul Eggert  <eggert@twinsun.com>
56936
56937         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
56938         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
56939         of 127, since 64 is the largest conceivable number for ancient
56940         nonstandard hosts.
56941         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
56942
56943 2002-04-28  Jim Meyering  <meyering@lucent.com>
56944
56945         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
56946
56947 2002-04-24  Jim Meyering  <meyering@lucent.com>
56948
56949         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
56950         (jm_PREREQ): Use it.
56951
56952         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
56953         mach/mach.h fcntl.h.
56954         Check for this function: setlocale.
56955
56956 2002-04-24  Jim Meyering  <meyering@lucent.com>
56957
56958         * lib/gettext.h: New file, from Gettext.
56959         * lib/Makefile.am (INCLUDES): Remove -I../intl.
56960         (libfetish_a_SOURCES): Add gettext.h.
56961
56962 2002-04-16  Jim Meyering  <meyering@lucent.com>
56963
56964         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
56965         ut_pid, ut_id, ut_exit.
56966
56967 2002-04-16  Jim Meyering  <meyering@lucent.com>
56968
56969         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
56970         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
56971         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
56972
56973 2002-04-12  Jim Meyering  <meyering@lucent.com>
56974
56975         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
56976         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
56977         existence of the getmntinfo function.  Needed for Darwin 5.3.
56978
56979         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
56980         This is necessary at least on Darwin 5.3.
56981
56982         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
56983         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
56984         strnlen.o in the library, and that makes some versions of ranlib
56985         object.
56986
56987 2002-04-12  Jim Meyering  <meyering@lucent.com>
56988
56989         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
56990
56991 2002-04-09  Jim Meyering  <meyering@lucent.com>
56992
56993         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
56994         to be more precise.  Rather than saying we're checking whether the
56995         function `works', say what we're testing.
56996         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
56997         Reported by Bruno Haible.
56998
56999 2002-03-10  Jim Meyering  <meyering@lucent.com>
57000
57001         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
57002         Suggestion from Santiago Vila.
57003
57004 2002-03-08  Jim Meyering  <meyering@lucent.com>
57005
57006         * lib/rename.c: Mention that this wrapper is needed also on
57007         mips-dec-ultrix4.4 systems.
57008
57009 2002-03-02  Jim Meyering  <meyering@lucent.com>
57010
57011         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
57012         not HAVE_CLOCK_SETTIME.
57013
57014 2002-02-27  Paul Eggert  <eggert@twinsun.com>
57015
57016         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
57017         Check for clock_settime.
57018
57019 2002-02-27  Paul Eggert  <eggert@twinsun.com>
57020
57021         * lib/nanosleep.h: Rename to....
57022         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
57023
57024         * lib/gettime.c: New file.
57025         * lib/settime.c: New file.
57026         * lib/stime.c: Remove.
57027
57028         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
57029         timespec.h.  Remove nanosleep.h.
57030
57031 2002-02-25  Paul Eggert  <eggert@twinsun.com>
57032
57033         * m4/acl.m4: New file.
57034         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
57035         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
57036
57037 2002-02-25  Paul Eggert  <eggert@twinsun.com>
57038
57039         * lib/acl.c, lib/acl.h: New files.
57040         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
57041
57042 2002-02-24  Jim Meyering  <meyering@lucent.com>
57043
57044         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
57045         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
57046         cause trouble.  Reported by Nelson Beebe.
57047
57048 2002-02-23  Paul Eggert  <eggert@twinsun.com>
57049
57050         * lib/path-concat.c (xpath_concat): Reorder code to pacify
57051         compilers that don't know that xalloc_die never returns.
57052
57053 2002-02-20  Jim Meyering  <meyering@lucent.com>
57054
57055         * lib/getdate.c: Regenerate using bison-1.33.
57056
57057 2002-02-17  Jim Meyering  <meyering@lucent.com>
57058
57059         * config/config.guess (main): Don't use `head -1'; it's no longer
57060         portable. Use `sed 1q' instead.
57061
57062 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
57063
57064         * m4/codeset.m4: Upgrade to gettext-0.11.
57065         * m4/gettext.m4: Upgrade to gettext-0.11.
57066         * m4/glibc21.m4: Upgrade to gettext-0.11.
57067         * m4/iconv.m4: Upgrade to gettext-0.11.
57068         * m4/isc-posix.m4: Upgrade to gettext-0.11.
57069         * m4/lcmessage.m4: Upgrade to gettext-0.11.
57070         * m4/lib-ld.m4: New file, from gettext-0.11.
57071         * m4/lib-link.m4: New file, from gettext-0.11.
57072         * m4/lib-prefix.m4: New file, from gettext-0.11.
57073         * m4/progtest.m4: Upgrade to gettext-0.11.
57074
57075 2002-02-15  Paul Eggert  <eggert@twinsun.com>
57076
57077         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
57078         (jm_PREREQ): Use it.
57079
57080 2002-02-15  Paul Eggert  <eggert@twinsun.com>
57081
57082         * lib/posixver.c, lib/posixver.h: New files.
57083         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
57084
57085 2002-02-02  Paul Eggert  <eggert@twinsun.com>
57086             Bruno Haible  <bruno@clisp.org>
57087
57088         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
57089         (fwrite_success_callback): New declaration.
57090         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
57091         print_unicode_char. Call failure callback instead of error.
57092         (fwrite_success_callback): New function.
57093         (exit_failure_callback): New function.
57094         (fallback_failure_callback): New function.
57095         (print_unicode_char): Call unicode_to_mb.
57096
57097 2002-01-26  Jim Meyering  <meyering@lucent.com>
57098
57099         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
57100         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
57101
57102 2002-01-26  Jim Meyering  <meyering@lucent.com>
57103
57104         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
57105
57106 2002-01-22  Paul Eggert  <eggert@twinsun.com>
57107
57108         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
57109
57110 2002-01-22  Jim Meyering  <meyering@lucent.com>
57111
57112         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
57113         Otherwise, some versions of automake would omit the rule that makes
57114         Makefile from Makefile.in.
57115
57116 2002-01-21  Paul Eggert  <eggert@twinsun.com>
57117
57118         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
57119         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
57120         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
57121         (memcoll): Set errno to zero if there is no error.
57122
57123         * lib/quotearg.c (quotearg_buffer_restyled):
57124         Fix bug with quoting buffers containing NUL when backslashing escapes.
57125         This bug was exposed by the other changes in this patch.
57126         (quotearg_n_options): New arg ARGSIZE.
57127         All callers changed.
57128         (quoting_options_from_style): New function.
57129         (quotearg_n_style): Use it.
57130         (quotearg_n_style_mem): New function.
57131
57132         * lib/quotearg.h (quotearg_n_style_mem): New function.
57133
57134 2002-01-19  Jim Meyering  <meyering@lucent.com>
57135
57136         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
57137         Remove useless quotes: DF_PROG="df".
57138         * m4/strnlen.m4: New file.
57139
57140 2002-01-16  Paul Eggert  <eggert@twinsun.com>
57141
57142         * lib/backupfile.c (ISDIGIT): Comment fix.
57143         * lib/getdate.y (ISDIGIT): Likewise.
57144         * lib/posixtm.c (ISDIGIT, year): Likewise.
57145         * lib/strverscmp.c (ISDIGIT): Likewise.
57146         * lib/userspec.c (ISDIGIT): Likewise.
57147
57148 2002-01-16  Jim Meyering  <meyering@lucent.com>
57149
57150         * lib/getdate.y: Add three semicolons, each just before a closing
57151         brace. Bison (as of version 1.31) no longer papers over that mistake.
57152
57153 2002-01-05  Jim Meyering  <meyering@lucent.com>
57154
57155         * lib/version-etc.c (version_etc_copyright): Update copyright year.
57156
57157 2001-12-19  Paul Eggert  <eggert@twinsun.com>
57158
57159         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
57160         not silently exit merely because the output buffer happens to
57161         have nothing pending.
57162
57163 2001-12-18  Paul Eggert  <eggert@twinsun.com>
57164
57165         See the big note in ../ChangeLog.
57166         * lib/human.c (suffixes): Prefer K to k for 1024.
57167         (generate_suffix_backwards): New function.
57168         (human_readable_inexact): Use it.
57169         * lib/xstrtol.c (__xstrtol): If there is no number but there
57170         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
57171         Accept 'K' as well as 'k'.
57172
57173 2001-12-15  Jim Meyering  <meyering@lucent.com>
57174
57175         * lib/regex.h (__restrict_arr): Update from libc.
57176
57177         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
57178         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
57179         (STREQ): Define.
57180
57181 2001-12-14  Jim Meyering  <meyering@lucent.com>
57182
57183         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
57184         Suggestion from Bruno Haible.
57185
57186 2001-12-10  Jim Meyering  <meyering@lucent.com>
57187
57188         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
57189         xrealloc, Instead, include "xalloc.h".
57190         (initbuffer): Don't cast xmalloc return value to char*.
57191         (readline): Reword comment.
57192         Don't cast xrealloc return value to char*
57193         Return NULL, not 0.
57194
57195 2001-12-09  Jim Meyering  <meyering@lucent.com>
57196
57197         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
57198         about `signed and unsigned type in conditional expression'.
57199         * lib/posixtm.c (posix_time_parse): Likewise.
57200
57201         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
57202
57203         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
57204         to avoid a pedantic warning.
57205
57206         * lib/getstr.c: Don't include assert.h.
57207         (getstr): Remove warning-evoking assertions.
57208         Return -1 if offset parameter is out of bounds.
57209         Change the type of a local from int to size_t.
57210
57211         * lib/strftime.c (my_strftime_localtime_r): Include this function
57212         definition in the `#if ! HAVE_TM_GMTOFF' block.
57213
57214         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
57215         Include xalloc.h instead.
57216
57217 2001-12-02  Jim Meyering  <meyering@lucent.com>
57218
57219         * lib/tempname.c: Don't declare getenv, thus reverting the change of
57220         2001-11-18.  It's no longer necessary, now that stdlib.h is always
57221         included.
57222
57223         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
57224         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
57225
57226 2001-11-30  Akim Demaille  <akim@epita.fr>
57227
57228         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
57229         before being defined.
57230
57231 2001-11-27  Paul Eggert  <eggert@twinsun.com>
57232
57233         * lib/quotearg.h (quotearg_n, quotearg_n_style):
57234         First arg is int, not unsigned.
57235         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
57236         (SIZE_MAX, UINT_MAX): New macros.
57237         (quotearg_n_options): Abort if N is negative.
57238         Avoid overflow check on hosts where size_t is 64 bits and int
57239         is 32 bits, as overflow is impossible there.
57240         Fix off-by-one typo that caused unnecessary reallocation.
57241
57242 2001-11-27  Jim Meyering  <meyering@lucent.com>
57243
57244         * lib/tempname.c: Merge with version from libc.
57245         * lib/regex.c: Likewise.
57246
57247         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
57248         systems for which STDC_HEADERS is 0, it was not included, resulting in
57249         a warning about an integer-to-pointer conversion problem with getenv.
57250         Reported by Volker Borchert.
57251
57252 2001-11-26  Jim Meyering  <meyering@lucent.com>
57253
57254         * lib/gtod.h: Remove file.
57255         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
57256         * lib/gettimeofday.c: Don't include gtod.h.
57257         (GTOD_init): Remove function.
57258         (rpl_gettimeofday): Do its job here instead, rather than aborting.
57259         Suggestion from Volker Borchert.
57260
57261 2001-11-23  Jim Meyering  <meyering@lucent.com>
57262
57263         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
57264         it.
57265         * lib/hash.c (struct hash_table): Define it here instead.
57266
57267 2001-11-22  Jim Meyering  <meyering@lucent.com>
57268
57269         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
57270
57271 2001-11-20  Jim Meyering  <meyering@lucent.com>
57272
57273         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
57274         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
57275
57276 2001-11-19  Jim Meyering  <meyering@lucent.com>
57277
57278         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
57279         directory.  Use "conftestXXXXXX" as the template.
57280         Suggestion from Paul Eggert.
57281
57282         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
57283         immediately, so the test doesn't mistakenly hit the max-open-files
57284         limit.
57285
57286 2001-11-18  Paul Eggert  <eggert@twinsun.com>
57287
57288         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
57289         (TEMPORARIES): New macro.
57290         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
57291         removes an artificial limitation (e.g. HP-UX 10.20, where
57292         TMP_MAX is 17576).
57293
57294 2001-11-18  Jim Meyering  <meyering@lucent.com>
57295
57296         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
57297
57298 2001-11-18  Jim Meyering  <meyering@lucent.com>
57299
57300         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
57301         on SunOS 4.
57302
57303         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
57304         files will be created before anything else.
57305
57306 2001-11-17  Paul Eggert  <eggert@twinsun.com>
57307
57308         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
57309         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
57310
57311 2001-11-17  Jim Meyering  <meyering@lucent.com>
57312
57313         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
57314         Prompted by a report from Bob Proulx.
57315
57316         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
57317         Instead, require UTILS_FUNC_MKSTEMP.
57318
57319 2001-11-17  Jim Meyering  <meyering@lucent.com>
57320
57321         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
57322         Now, that's done as part of AC_FUNC_STRTOD.
57323
57324 2001-11-17  Jim Meyering  <meyering@lucent.com>
57325
57326         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
57327         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
57328         rather than group writable.  Patch by Juan F. Codagnone.
57329
57330         * lib/readtokens.c: Remove explicit declarations of xmalloc and
57331         xrealloc, Instead, include "xalloc.h".
57332
57333         * lib/mountlist.c: Include unlocked-io.h after all system headers.
57334         Remove explicit declarations of xmalloc, xrealloc,
57335         and xstrdup.  Instead, include "xalloc.h".
57336
57337         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
57338         unlocked-io.h.
57339         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
57340         Likewise.
57341         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
57342
57343         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
57344         Reported by Padraig Brady.
57345
57346         * lib/mkstemp.c: #undef mkstemp.
57347         Include config.h.
57348         (rpl_mkstemp): Rename from mkstemp.
57349         Protoize.
57350
57351 2001-11-16  Jim Meyering  <meyering@lucent.com>
57352
57353         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
57354         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
57355         determine the amount of total physical memory, use pstat_getstatic.
57356         HPUX-11 doesn't define _SC_PHYS_PAGES.
57357         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
57358         If sysconf couldn't be used to determine the amount of available
57359         physical memory, use both pstat_getstatic and pstat_getdynamic.
57360         Based on a patch from Bob Proulx.
57361
57362 2001-11-10  Jim Meyering  <meyering@lucent.com>
57363
57364         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
57365         (jm_PREREQ): Use it.
57366
57367 2001-11-09  Jim Meyering  <meyering@lucent.com>
57368
57369         * m4/jm-macros.m4: Require autoconf-2.52f.
57370         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
57371         Use these AC_-prefixed names, not the AM_-prefixed ones.
57372
57373         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
57374
57375 2001-11-05  Jim Meyering  <meyering@lucent.com>
57376
57377         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
57378
57379 2001-11-04  Jim Meyering  <meyering@lucent.com>
57380
57381         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
57382         $DEFS.
57383
57384 2001-11-03  Jim Meyering  <meyering@lucent.com>
57385
57386         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
57387         of AC_DEFUN.
57388
57389         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
57390         know the name of the variable in the macro definition.
57391
57392 2001-11-03  Jim Meyering  <meyering@lucent.com>
57393
57394         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
57395         in argmatch_to_argument call.
57396
57397         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
57398         argument.
57399
57400         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
57401         e.g., a fault due to an attempt to free a NULL pointer.
57402
57403 2001-11-01  Jim Meyering  <meyering@lucent.com>
57404
57405         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
57406         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
57407
57408 2001-11-01  Jim Meyering  <meyering@lucent.com>
57409
57410         * lib/dirfd.c, lib/dirfd.h: New files.
57411         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
57412
57413         * lib/hash.c (hash_print) [TESTING]: Clean up.
57414
57415 2001-10-22  Paul Eggert  <eggert@twinsun.com>
57416
57417         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
57418         to avoid a warning if -Wall.
57419
57420 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
57421
57422         * README: New file
57423         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
57424         (per RMS's instructions, this is now the canonical source)
57425         * lgpl/, gpl/: New directories.
57426
57427 2001-10-21  Paul Eggert  <eggert@twinsun.com>
57428
57429         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
57430
57431 2001-10-21  Jim Meyering  <meyering@lucent.com>
57432
57433         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
57434         this code would end up calling gettext even in packages built
57435         with --disable-nls.
57436         * lib/getopt.c (_): Likewise.
57437         * lib/regex.c (_): Likewise.
57438
57439 2001-10-20  Paul Eggert  <eggert@twinsun.com>
57440
57441         * m4/error.m4 (jm_PREREQ_ERROR):
57442         Do not invoke AC_CHECK_FUNCS with strerror_r, as
57443         AC_FUNC_STRERROR_R does that.
57444         Check for strerror declaration.
57445
57446         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
57447         are supposed to have them these days.
57448         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
57449         Merge changes from latest Autoconf CVS.
57450         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
57451         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
57452         POSIX decided to standardize on the int flavor of strerror_r.
57453
57454 2001-10-20  Paul Eggert  <eggert@twinsun.com>
57455
57456         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
57457         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
57458         Use strerror_r that is only a macro, even if it is not a function.
57459         (strerror): Check for HAVE_DECL_STRERROR before declaring.
57460         (private_strerror): Use prototypes, not old-style function definition.
57461         (print_errno_message): New function.
57462         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
57463         char*-flavored one.
57464         (error_tail, error, error_at_line): Use it.
57465
57466 2001-10-11  Jim Meyering  <meyering@lucent.com>
57467
57468         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
57469         and quote_n (1, ... to avoid clobbering a buffer.
57470
57471 2001-10-05  Jim Meyering  <meyering@lucent.com>
57472
57473         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
57474         hash-pjw.h.
57475         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
57476         * lib/hash-pjw.h: New file.
57477
57478 2001-09-30  Jim Meyering  <meyering@lucent.com>
57479
57480         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
57481         `struct fsstat' has the `f_fstypename' member.
57482         Use that to define FS_TYPE, which is now used to make
57483         the getfsstat link test tighter.
57484
57485 2001-09-30  Jim Meyering  <meyering@lucent.com>
57486
57487         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
57488         Include <sys/ucred.h>, for Apple Darwin.
57489         Include sys/mount.h and sys/fs_types.h only if available.
57490         (FS_TYPE): Define.
57491         (read_filesystem_list): Use FS_TYPE.
57492
57493 2001-09-29  Paul Eggert  <eggert@twinsun.com>
57494
57495         * lib/exclude.c (excluded_filename): 0 -> false, since it's
57496         a boolean context.
57497
57498 2001-09-29  Jim Meyering  <meyering@lucent.com>
57499
57500         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
57501         [one-argument getmntent function]): Include stdio.h before mntent.h.
57502         SunOS 4.1.x needs it for the declaration of `FILE'.
57503         Patch by Volker Borchert.
57504
57505         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
57506         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
57507         sys/fs_types.h, and make the link-test for getfsstat guard #include
57508         directives with appropriate #if HAVE_*_H tests so that we can
57509         detect getfsstat on Apple Darwin1.3.7 systems.
57510         Reported by Nelson Beebe.
57511         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
57512
57513 2001-09-28  Paul Eggert  <eggert@twinsun.com>
57514
57515         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
57516         #defines strtoimax.  Also treat the other strto* functions
57517         like strtoimax.
57518
57519         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
57520         Check for strtoul and strtoumax,
57521         as those declarations are made even in the signed case.
57522         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
57523         Likewise, for strtol and strtoimax.
57524
57525 2001-09-28  Paul Eggert  <eggert@twinsun.com>
57526
57527         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
57528         #defines strtoimax.  Also treat the other strto* functions
57529         like strtoimax.
57530
57531         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
57532         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
57533         (strtoimax, strtoumax): Do not declare if already defined as a macro.
57534
57535 2001-09-26  Jim Meyering  <meyering@lucent.com>
57536
57537         Most macros in unlocked-io.h had the wrong number of arguments.
57538         * lib/gen-uio: New script.
57539         (USE_UNLOCKED_IO): Define to 1 if not already defined.
57540         * lib/unlocked-io.hin: Remove file.
57541         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
57542         rather than trying to embed it here.
57543         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
57544         Reported by Padraig Brady.
57545
57546 2001-09-25  Volker Borchert  <bt@teknon.de>
57547
57548         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
57549         `result'.
57550
57551 2001-09-24  Jim Meyering  <meyering@lucent.com>
57552
57553         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
57554
57555 2001-09-23  Jim Meyering  <meyering@lucent.com>
57556
57557         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
57558         instead of the mere test for existence of mntent.h.  The latter
57559         would get a false-positive on AIX 3.4 systems.
57560         In the outer getmntent if-block, don't die if neither of the getmntent
57561         tests succeeds.  Instead, just fall through and continue with the
57562         remaining tests.
57563
57564 2001-09-23  Jim Meyering  <meyering@lucent.com>
57565
57566         * lib/mountlist.c: Remove useless parentheses in #if directives.
57567         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
57568         the deprecated MOUNTED symbol is no longer defined in mntent.h.
57569
57570 2001-09-22  Jim Meyering  <meyering@lucent.com>
57571
57572         * m4/gettext.m4: New file.  From gettext.
57573         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
57574         * m4/progtest.m4: Likewise
57575         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
57576         * m4/glibc21.m4: Likewise.
57577
57578         * m4/libintl.m4: Remove.  No longer used.
57579
57580 2001-09-22  Jim Meyering  <meyering@lucent.com>
57581
57582         * lib/localcharset.c: Update from latest gettext.
57583         * lib/config.charset: Likewise.
57584
57585 2001-09-20  Jim Meyering  <meyering@lucent.com>
57586
57587         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
57588         strtoimax.
57589         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
57590         strtoumax.
57591
57592 2001-09-20  Jim Meyering  <meyering@lucent.com>
57593
57594         * lib/xstrtol.c (strtoimax): Guard declaration with
57595         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
57596         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
57597         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
57598         (strtoumax): Likewise, for completeness (it wasn't necessary).
57599
57600 2001-09-17  Paul Eggert  <eggert@twinsun.com>
57601
57602         * lib/strtoimax.c (HAVE_LONG_LONG):
57603         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
57604         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
57605         to work around bug in IBM C compiler.
57606
57607 2001-09-17  Jim Meyering  <meyering@lucent.com>
57608
57609         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
57610         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
57611         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
57612         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
57613         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
57614         whenever the right hand side need not be expanded by the shell.
57615
57616 2001-09-16  Paul Eggert  <eggert@twinsun.com>
57617
57618         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
57619         library.  It's not correct, as some older glibcs are buggy.
57620         fnmatch wasn't fixed until glibc 2.2.
57621
57622         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
57623         special shell magic here.
57624
57625 2001-09-16  Jim Meyering  <meyering@lucent.com>
57626
57627         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
57628         * m4/jm-macros.m4: Require it.
57629
57630 2001-09-16  Jim Meyering  <meyering@lucent.com>
57631
57632         * lib/mkdir.c: New file.
57633
57634 2001-09-15  Jim Meyering  <meyering@lucent.com>
57635
57636         * m4/jm-macros.m4: Check for help2man.
57637
57638 2001-09-11  Jim Meyering  <meyering@lucent.com>
57639
57640         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
57641         The body, by Paul Eggert, was moved here from configure.in.
57642         * m4/jm-macros.m4: Require UTILS_HOST_OS.
57643
57644 2001-09-04  Paul Eggert  <eggert@twinsun.com>
57645
57646         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
57647         (jm_PREREQ): Use it.
57648
57649 2001-09-04  Paul Eggert  <eggert@twinsun.com>
57650
57651         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
57652         Use ssize_t, not int, to store result of readlink.
57653         Check for ssize_t overflow as well as size_t overflow,
57654         as POSIX says the result of readlink is implementation-defined
57655         when ssize_t overflows.
57656         Remove unnecessary cast to char*.
57657         Use free+malloc instead of realloc, as the storage doesn't need
57658         to be preserved and it's clearer and can be more efficient that way.
57659         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
57660         * lib/xreadlink.h (xreadlink): Update prototype.
57661
57662 2001-09-04  Paul Eggert  <eggert@twinsun.com>
57663
57664         * lib/xgetcwd.c: Revert some of the previous change; intead,
57665         fix the HAVE_GETCWD_NULL code to behave more like the
57666         !HAVE_GETCWD_NULL code used to.
57667
57668         Include "xalloc.h".
57669         (xgetcwd): Do not return NULL when memory is exhausted; instead,
57670         invoke xalloc_die.
57671
57672 2001-09-03  Paul Eggert  <eggert@twinsun.com>
57673
57674         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
57675         sys/param.h, as pathmax.h includes them.
57676
57677 2001-09-03  Paul Eggert  <eggert@twinsun.com>
57678
57679         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
57680         (jm_PREREQ_XGETCWD): New macro.
57681
57682         * m4/getcwd.m4: New file.
57683
57684 2001-09-03  Paul Eggert  <eggert@twinsun.com>
57685
57686         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
57687         like the HAVE_GETCWD_NULL code.
57688         Include pathmax.h if not HAVE_GETCWD.
57689         Do not include xalloc.h.
57690         (INITIAL_BUFFER_SIZE): New symbol.
57691         Do not use xmalloc / xrealloc, since the caller is responsible for
57692         handling errors.  Preserve errno around `free' during failure.
57693         Do not overrun buffer when using getwd.
57694
57695 2001-09-03  Paul Eggert  <eggert@twinsun.com>
57696
57697         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
57698         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
57699         getcwd (NULL, 0).
57700
57701 2001-09-03  Paul Eggert  <eggert@twinsun.com>
57702
57703         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
57704         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
57705         spotted by Jim Meyering.
57706
57707 2001-09-03  Jim Meyering  <meyering@lucent.com>
57708
57709         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
57710         failure.
57711
57712 2001-09-02  Jim Meyering  <meyering@lucent.com>
57713
57714         * lib/error.c: Update from GNU libc.
57715
57716 2001-09-01  Jim Meyering  <meyering@lucent.com>
57717
57718         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
57719         Used by df.
57720
57721 2001-09-01  Jim Meyering  <meyering@lucent.com>
57722
57723         * lib/xreadlink.c: New file.
57724         * lib/xreadlink.h: New file.
57725         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
57726         xreadlink.h.
57727
57728         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
57729         doesn't conflict with sparc Solaris 7's definition in
57730         /usr/include/sys/int_types.h.
57731
57732         * lib/exclude.c: Use `""', not `<>' to #include non-system header
57733         files.
57734         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
57735         and strncasecmp as r-values.  Unixware didn't have declarations.
57736
57737 2001-08-31  Paul Eggert  <eggert@twinsun.com>
57738
57739         * lib/xstrtol.h: Add copyright notice.
57740         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
57741         LONGINT_INVALID_SUFFIX_CHAR.
57742
57743 2001-08-31  Paul Eggert  <eggert@twinsun.com>
57744
57745         * lib/xstrtol.c (strtoimax): New decl.
57746
57747 2001-08-31  Paul Eggert  <eggert@twinsun.com>
57748
57749         * lib/xgetcwd.c: Don't include pathmax.h.
57750         Include stdlib.h and unistd.h if available.
57751         Include xalloc.h.
57752         (xmalloc, xstrdup, free): Remove decls.
57753         (xgetcwd): Don't assume sizes fit in unsigned.
57754         Check for overflow when computing sizes.
57755         Simplify reallocation code.
57756
57757 2001-08-31  Paul Eggert  <eggert@twinsun.com>
57758
57759         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
57760         a directory's st_size can have an arbitrary value, so the old
57761         usage could waste an arbitrary amount of memory.  All uses
57762         changed.
57763         * lib/savedir.h: Update prototype.
57764
57765 2001-08-31  Paul Eggert  <eggert@twinsun.com>
57766
57767         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
57768
57769         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
57770         old strtoimax.c.
57771
57772         Also, make the following further changes to make this file's
57773         configuration more similar to that of strtol.c:
57774         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
57775         (strtoumax, uintmax_t, strtoull, strtol): Remove.
57776         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
57777         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
57778         changed to signed values.
57779
57780         And make the following changes as well:
57781         Fix copyright notice, as 1999 was missing.
57782         (verify): New macro.
57783         (strtoimax): Check sizes at compile-time, not run-time.
57784         Prefer strtol to strtoll if both work.
57785         (main): Remove; it was not that useful and was a pain to maintain.
57786
57787         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
57788
57789 2001-08-31  Jim Meyering  <meyering@lucent.com>
57790
57791         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
57792         Use an initial, malloc'd, buffer of length 128 rather than
57793         a statically allocated one of length 1024.
57794
57795 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57796
57797         Simplify code, partly by assuming autoconf 2.52 semantics.
57798
57799         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
57800
57801         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
57802         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
57803         All uses removed.
57804         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
57805         Move AC_REQUIRE to next-to-top level, to avoid confusion.
57806         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
57807         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
57808         jm_AC_HEADER_INTTYPES_H.
57809         * m4/jm-macros.m4 (jm_MACROS): Likewise.
57810
57811         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
57812
57813         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
57814         Quote first arg of AC_DEFUN.
57815         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
57816         since they are needed to parse the include file even if we need
57817         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
57818         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
57819         but with opposite signedness.
57820
57821 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57822
57823         Merge 'exclude' changes from tar 1.13.22.
57824         This fixes one or two unlikely storage allocation overflow bugs,
57825         but doesn't change user-visible behavior otherwise.
57826
57827 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57828
57829         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
57830         (jm_PREREQ_EXCLUDE): New macro.
57831
57832 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57833
57834         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
57835         tm to be declared.
57836
57837 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57838
57839         * lib/hash.c: Remove '2001' from copyright notice.
57840
57841 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57842
57843         * lib/full-write.h: New file.
57844         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
57845         * lib/full-write.c: Correct credits, as cccp.c no longer
57846         exists and anyway it was so heavily changed from the old cccp
57847         code as to be unrecognizable.  Include full-write.h.
57848         (full_write) Return size_t, with short writes meaning failure.
57849         All callers changed.  This fixes a bug with large buffers
57850         on 64-bit hosts.
57851         * lib/utime.c: Include full-write.h.
57852
57853 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57854
57855         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
57856         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
57857         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
57858         Include if available.
57859         (<xalloc.h>): Include
57860         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
57861         (verify): New macro.  Use it to verify that EXCLUDE macros do not
57862         collide with FNM macros.
57863         (struct patopts): New struct.
57864         (struct exclude): Use it, as exclude patterns now come with options.
57865         (new_exclude): Support above changes.
57866         (new_exclude, add_exclude_file):
57867         Initial size must now be a power of two to simplify overflow checking.
57868         (free_exclude, fnmatch_no_wildcards): New function.
57869         (excluded_filename): No longer requires options arg, as the options
57870         are determined by add_exclude.  Now returns bool, not int.
57871         (excluded_filename, add_exclude):
57872         Add support for the fancy new exclusion options.
57873         (add_exclude, add_exclude_file): Now takes int options arg.
57874         Check for arithmetic overflow when computing sizes.
57875         (add_exclude_file): xrealloc might modify errno, so don't
57876         realloc until after errno might be used.
57877
57878         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
57879         New macros.
57880         (free_exclude): New decl.
57881         (add_exclude, add_exclude_file): Now takes int options arg.
57882         (excluded_filename): No longer requires options arg, as the options
57883         are determined by add_exclude.  Now returns bool, not int.
57884
57885 2001-08-30  Paul Eggert  <eggert@twinsun.com>
57886
57887         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
57888
57889 2001-08-27  Jim Meyering  <meyering@lucent.com>
57890
57891         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
57892
57893         * lib/version-etc.c (N_): Remove definition.
57894         Revert most of last change.
57895         Instead, simply don't mark the `Copyright...' string for translation.
57896         Based on advice from Paul Eggert.
57897
57898         * lib/strtoxmax.c: Tweak comment.
57899
57900 2001-08-26  Jim Meyering  <meyering@lucent.com>
57901
57902         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
57903
57904         * m4/xstrtoimax.m4: New file.
57905         * m4/xstrtoumax.m4: Add comments explaining why we
57906         AC_REPLACE_FUNCS(strtol).
57907
57908 2001-08-26  Jim Meyering  <meyering@lucent.com>
57909
57910         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
57911         of copyright with `%s' so translators don't get an untranslated
57912         message in 2002.
57913         (COPYRIGHT_YEAR): Define.
57914         (version_etc): Use fprintf rather than fputs.
57915         Suggestion from Ulrich Drepper.
57916
57917         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
57918
57919         * lib/strtoll.c: New file, from GNU libc.
57920         * lib/xstrtoimax.c: New file.
57921
57922         * lib/xstrtol.h: Add xstrtoimax.
57923         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
57924         * lib/strtoimax.c: New file.  Likewise, but first define
57925         STRTOUXMAX_SIGNED.
57926
57927         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
57928         ...
57929         * lib/strtoxmax.c: ... then renamed to this.
57930
57931 2001-08-18  Paul Eggert  <eggert@twinsun.com>
57932
57933         * m4/inttypes.m4: Add AC_PREREQ(2.13).
57934         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
57935         (jm_AC_TYPE_INTMAX_T): New macro.
57936         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
57937
57938         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
57939
57940         * m4/longlong.m4: Renamed from ulonglong.m4.
57941         * m4/inttypes.m4: Renamed from inttypes_h.m4.
57942         * m4/uintmax_t.m4: Removed.
57943
57944 2001-08-13  Paul Eggert  <eggert@twinsun.com>
57945
57946         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
57947         Port to Solaris 8, where 'sed' requires a space after the 'r'
57948         command, and where sh dislikes "$/".  Clean up the spacing a bit.
57949         Redirect output to $tmp just once.
57950
57951 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
57952
57953         * lib/addext.c (<errno.h>): Include.
57954         (errno): Declare if not defined.
57955         (addext): Work correctly when pathconf returns -1 and leaves
57956         errno alone because there is no limit.  Also, work even if
57957         pathconf returns a value greater than SIZE_MAX.
57958
57959 2001-08-12  Jim Meyering  <meyering@lucent.com>
57960
57961         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
57962         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
57963         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
57964         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
57965         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
57966         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
57967         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
57968         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
57969         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
57970         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
57971         utime.m4, utimes.m4, xstrtoumax.m4:
57972         Quote the first argument in each use of AC_DEFUN.
57973
57974 2001-08-12  Jim Meyering  <meyering@lucent.com>
57975
57976         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
57977         Simply `return getcwd (NULL, 0);'.
57978         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
57979         Use 1300 as initial value for length, not PATH_MAX.
57980
57981         * lib/pathmax.h: Clean up cpp syntax.
57982
57983 2001-08-12  Jim Meyering  <meyering@lucent.com>
57984
57985         * lib/gettimeofday.c: New file.
57986         * lib/gtod.h: New file.
57987         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
57988
57989 2001-08-05  Jim Meyering  <meyering@lucent.com>
57990
57991         * m4/jm-macros.m4: Require autoconf-2.52.
57992
57993 2001-08-04  Jim Meyering  <meyering@lucent.com>
57994
57995         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
57996         stmt, to get in sync with glibc.
57997
57998 2001-08-03  Paul Eggert  <eggert@twinsun.com>
57999
58000         The following changes are from gettext 0.10.39 as maintained by
58001         Bruno Haible.
58002
58003         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
58004         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
58005         with inverted sense.  All uses changed.
58006
58007         * lib/mbswidth.c: Don't include <limits.h>.
58008         Include <stdlib.h> and <string.h> unconditionally.
58009         (iswcntrl, mbsinit, ISCNTRL): New macros.
58010         (mbsnwidth): Use K&R style function declarations.
58011         Don't bother checking for MB_LEN_MAX == 1, since the compiler
58012         can optimize it when MB_CUR_MAX == 1.
58013         The width of control characters is zero, not 1.
58014
58015 2001-08-03  Paul Eggert  <eggert@twinsun.com>
58016
58017         The following changes are from gettext 0.10.39 as maintained by
58018         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
58019
58020         * m4/codeset.m4: Upgrade to serial AM1.
58021         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
58022         all uses changed.  Quote first arg of AC_DEFUN.
58023         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
58024
58025         * m4/iconv.m4: Upgrade to serial AM2.
58026         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
58027         Add --with-libconv-prefix.
58028         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
58029         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
58030         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
58031         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
58032         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
58033
58034         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
58035         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
58036         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
58037         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
58038         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
58039         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
58040         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
58041         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
58042         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
58043
58044         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
58045         string.h any more.
58046
58047         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
58048         not the default value.
58049
58050         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
58051         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
58052         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
58053         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
58054         Also check for iswcntrl, used for wcwidth fallback.
58055         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
58056         to Autoconf 2.13.
58057
58058 2001-08-03  Jim Meyering  <meyering@lucent.com>
58059
58060         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
58061         as it was in the original.  Reported by Paul Eggert.
58062
58063 2001-07-16  Jim Meyering  <meyering@lucent.com>
58064
58065         * m4/gettimeofday.m4: New file.
58066         Prompted by a report from Bernhard Baehr.
58067
58068 2001-07-15  Jim Meyering  <meyering@lucent.com>
58069
58070         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
58071         stuff. Now it's in ../Makefile.cfg.
58072
58073 2001-07-15  Jim Meyering  <meyering@lucent.com>
58074
58075         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
58076         (BUILT_SOURCES): Add unlocked-io.h.
58077         (io_functions): Define.
58078         (unlocked-io.h): New rule.
58079         (DISTCLEANFILES): Add unlocked-io.h.
58080         (all-local): Depend on unlocked-io.h, to ensure it is created.
58081
58082         * lib/unlocked-io.hin: New file
58083
58084         * lib/regex.c: Update from glibc.
58085
58086 2001-07-05  Jim Meyering  <meyering@lucent.com>
58087
58088         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
58089         recommendation.
58090         (libfetish_a_SOURCES): Put all .h files here instead.
58091         Remove a thus-exposed (better checks in automake) duplicate and
58092         two unnecessary .h files.
58093
58094 2001-07-04  Jim Meyering  <meyering@lucent.com>
58095
58096         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
58097         that generates jm-glibc-io.m4 so that it doesn't trigger any make
58098         distcheck failure.
58099
58100 2001-07-02  Jim Meyering  <meyering@lucent.com>
58101
58102         The following changes were prompted by suggestions from Bruno Haible.
58103
58104         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
58105         is now generated.
58106         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
58107         definition of EXTRA_DIST.
58108         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
58109         ensure that the generated file is created/updated whenever the list
58110         of $(unlocked_functions) is changed.
58111         (jm-glibc-io.m4): New rule.
58112         (unlocked-io.h): New rule -- currently unused.
58113
58114 2001-06-24  Jim Meyering  <meyering@lucent.com>
58115
58116         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
58117         unmatched right bracket, rather than kludging it with an extra,
58118         falsely-matching quote in a comment.  Patch by Akim Demaille.
58119
58120 2001-06-11  Jim Meyering  <meyering@lucent.com>
58121
58122         * lib/regex.c: Update from GNU libc.
58123
58124 2001-05-27  Jim Meyering  <meyering@lucent.com>
58125
58126         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
58127         Check for ut_type in struct utmp.
58128
58129 2001-05-27  Jim Meyering  <meyering@lucent.com>
58130
58131         * lib/readutmp.h (UT_TYPE): Define.
58132
58133 2001-05-24  Jim Meyering  <meyering@lucent.com>
58134
58135         * lib/argmatch.c: Include "quote.h".
58136         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
58137         quote function.  Reported by Göran Uddeborg.
58138
58139 2001-05-22  Jim Meyering  <meyering@lucent.com>
58140
58141         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
58142         now that we use the package-supplied version unconditionally.
58143         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
58144
58145 2001-05-21  Jim Meyering  <meyering@lucent.com>
58146
58147         * m4/regex.m4: Change a couple backticks to single quotes to avoid
58148         shell syntax errors.
58149
58150 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
58151
58152         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
58153
58154 2001-05-20  Paul Eggert  <eggert@twinsun.com>
58155
58156         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
58157         Don't bother to check library strftime, since
58158         we'll be using our own my_strftime function anyway.
58159         Define my_strftime instead of strftime.
58160
58161 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
58162
58163         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
58164         which is not yet declared.
58165
58166 2001-05-15  Jim Meyering  <meyering@lucent.com>
58167
58168         * m4/regex.m4: Use proper quoting so brackets appear in the test
58169         program.
58170         Reported by, and with help from, Bruno Haible.
58171
58172 2001-05-13  Jim Meyering  <meyering@lucent.com>
58173
58174         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
58175         undefined.
58176
58177 2001-05-11  Paul Eggert  <eggert@twinsun.com>
58178
58179         dirname code cleanup.  base_name now behaves more compatibly
58180         with POSIX basename when given file names that have trailing
58181         slashes, and similarly for dir_name.  Add new primitives
58182         base_len and dir_len.  Put the directory-name-related decls
58183         into dirname.h.
58184
58185         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
58186         * lib/backupfile.c (base_name): Likewise.
58187         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
58188         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
58189         * lib/makepath.c (strip_trailing_slashes): Likewise.
58190         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
58191         ISSLASH): Likewise.
58192         * lib/rename.c (strip_trailing_slashes): Likewise.
58193         * lib/same.c (base_name): Likewise.
58194         * lib/stripslash.c (ISSLASH): Likewise.
58195
58196         * lib/addext.c: Include <dirname.h> after size_t is defined.
58197         * lib/backupfile.c: Likewise.
58198
58199         * lib/addext.c (addext): Use base_len to trim redundant
58200         trailing slashes instead of doing it ourselves.
58201         But do not trim the last slash if it is not redundant.
58202
58203         * lib/backupfile.c (find_backup_file_name,
58204         max_backup_version): Use base_len instead of rolling it ourselves.
58205         Handle the case of "" and (on DOS) "C:" correctly.
58206
58207         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
58208         needed. Include <string.h>, <dirname.h>.
58209         (base_name): Allow file names ending in slashes, other than names
58210         that are all slashes.  In this case, return the basename followed
58211         by the slashes.  This is more general, and can be used in places
58212         where the original base_name purposely had an assertion failure.
58213         (base_len): New function.
58214
58215         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
58216         Do not include <assert.h>; no longer needed.
58217         Include xalloc.h.
58218         (memrchr): Remove decl.
58219         (dir_name_r): Remove.
58220         (dir_len): Renamed from dirlen.  All callers changed.
58221         Rewrite in terms of base_name, for simplicity and consistency.
58222         (dir_name): Never return NULL.  All callers changed.
58223         Do not include <stdlib.h> in test program; no longer needed.
58224         return 0; is fine for test program.
58225
58226         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
58227         New macros.
58228         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
58229
58230         * lib/path-concat.c (path_concat): Use base_len to compute
58231         base length, not strlen; this means we cannot rely on memcpy
58232         to null-terminate.
58233
58234         * lib/same.c (STREQ): Remove.
58235         (same_name): Handle the case where the basename ends in trailing '/'.
58236
58237         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
58238         a slash was stripped.  Do not strip the last slash after a
58239         file system prefix.
58240
58241 2001-05-11  Paul Eggert  <eggert@twinsun.com>
58242
58243         * lib/Makefile.am (libfetish_a_SOURCES):
58244         Add strftime.c, since we now compile it on all hosts.
58245
58246         * lib/strftime.c (my_strftime):
58247         Define to nstrftime if emacs, but only if my_strftime is not defined.
58248         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
58249         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
58250         Add one more extra argument: a nanoseconds value.
58251         All uses changed.
58252         (ns): New macro.
58253         (my_strftime function): Add %N format.
58254         (emacs_strftimeu): Renamed from emacs_strftime,
58255         with extra ut argument.
58256
58257 2001-05-09  Paul Eggert  <eggert@twinsun.com>
58258
58259         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
58260
58261 2001-04-21  Jim Meyering  <meyering@lucent.com>
58262
58263         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
58264         doesn't interfere.
58265
58266 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
58267
58268         * m4/ftruncate.m4: Check for chsize.
58269         Link with ftruncate.o unconditionally if ftruncate is missing.
58270         This was required when cross-compiling to i586-mingw32msvc.
58271
58272 2001-04-08  Jim Meyering  <meyering@lucent.com>
58273
58274         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
58275         recomputed; that's necessary when the offset spans a DST transition.
58276         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
58277
58278 2001-04-02  Jim Meyering  <meyering@lucent.com>
58279
58280         * lib/regex.h, regex.c: Update from GNU libc.
58281
58282 2001-03-24  Jim Meyering  <meyering@lucent.com>
58283
58284         * m4/jm-macros.m4: Require autoconf-2.49d.
58285
58286 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
58287
58288         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
58289
58290 2001-03-19  Paul Eggert  <eggert@twinsun.com>
58291
58292         * lib/version-etc.c (version_etc_copyright): Update to 2001.
58293
58294 2001-03-17  Jim Meyering  <meyering@lucent.com>
58295
58296         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
58297         now that the version in autoconf is equivalent.
58298         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
58299
58300         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
58301         Suggestion from Akim Demaille.
58302
58303         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
58304         (jm_PREREQ_TEMPNAME): New function.
58305
58306 2001-03-16  Paul Eggert  <eggert@twinsun.com>
58307
58308         * lib/tempname.c (uint64_t): Define to uintmax_t if
58309         not defined, and if UINT64_MAX is not defined.
58310         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
58311         Reported by John David Anglin.
58312
58313 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
58314
58315         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
58316         resolve alias if codeset is empty.
58317         * lib/config.charset (BeOS): Use wildcard syntax.
58318
58319 2001-03-13  Jim Meyering  <meyering@lucent.com>
58320
58321         * lib/path-concat.c (path_concat)
58322         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
58323         concatenating e.g., `C:' and `foo'.
58324         From Bruno Haible.
58325
58326 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
58327
58328         * lib/localcharset.c (locale_charset): Don't use
58329         setlocale(LC_CTYPE,NULL). Don't return NULL.
58330         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
58331
58332 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
58333
58334         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
58335         support for DOS/DJGPP.
58336
58337 2001-03-01  Paul Eggert  <eggert@twinsun.com>
58338
58339         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
58340         lacks mkstemp.  Compile our own tempname.c if we compile our own
58341         mkstemp.c, as mkstemp relies on tempname.
58342
58343 2001-03-01  Jim Meyering  <meyering@lucent.com>
58344
58345         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
58346         AH_VERBATIM really does output its argument verbatim.
58347
58348 2001-02-28  Paul Eggert  <eggert@twinsun.com>
58349
58350         * lib/Makefile.am (libfetish_a_SOURCES):
58351         Add dup-safer.c, fopen-safer.c.
58352         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
58353
58354         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
58355         * lib/unistd-safer.h: New files.
58356
58357 2001-02-25  Paul Eggert  <eggert@twinsun.com>
58358
58359         The mkstemp replacement is taken from glibc 2.2.2, with some
58360         portability fixes for use outside glibc, as follows:
58361
58362         * lib/tempname.c (struct_stat64): New macro.
58363         (direxists, __gen_tempname): Use it.
58364         This avoids a portability problem with Solaris 8.
58365
58366         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
58367         (<stddef.h>, <stdint.h>, <string.h>):
58368         Include only if STDC_HEADERS || _LIBC.
58369         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
58370         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
58371         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
58372         (__set_errno): Define this macro if <errno.h> doesn't.
58373         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
58374         Define these macros if <stdio.h> doesn't.
58375         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
58376         Define these macros if <sys/stat.h>
58377         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
58378         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
58379         __xstat64): Define if not _LIBC.
58380         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
58381         (__gen_tempname): Invoke gettimeofday only if
58382         HAVE_GETTIMEOFDAY || _LIBC;
58383         otherwise, fall back on plain "time".
58384         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
58385
58386         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
58387
58388         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
58389
58390 2001-02-18  Paul Eggert  <eggert@twinsun.com>
58391
58392         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
58393
58394 2001-02-17  Paul Eggert  <eggert@twinsun.com>
58395
58396         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
58397         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
58398         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
58399         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
58400
58401 2001-02-17  Paul Eggert  <eggert@twinsun.com>
58402
58403         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
58404         Remove workaround macros for hosts that have mbrtowc but not
58405         mbstate_t, as we now insist on proper declarations for both
58406         before using mbrtowc.
58407
58408 2001-02-17  Jim Meyering  <meyering@lucent.com>
58409
58410         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
58411         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
58412         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
58413         UnixWare 7.1.1.
58414
58415         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
58416         rather than AC_CACHE_VAL.
58417
58418 2001-02-17  Jim Meyering  <meyering@lucent.com>
58419
58420         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
58421         around included file name.
58422
58423         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
58424
58425         * lib/strftime.c: Update from GNU libc (the only changes were to
58426         comments).
58427
58428 2001-02-17  Jim Meyering  <meyering@lucent.com>
58429
58430         * lib/regex.c: Update from libc.
58431
58432 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
58433
58434         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
58435         clash.
58436
58437 2001-02-16  Paul Eggert  <eggert@twinsun.com>
58438
58439         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
58440         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
58441         Reported by Mark Hounschell via Paul Eggert.
58442
58443 2001-02-07  Jim Meyering  <meyering@lucent.com>
58444
58445         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
58446
58447 2001-02-05  Jim Meyering  <meyering@lucent.com>
58448
58449         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
58450         it includes the patch required for `large file' support with at least
58451         HP-UX's 10.20 /bin/cc.
58452
58453 2001-02-03  Jim Meyering  <meyering@lucent.com>
58454
58455         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
58456         AS_IF, now that it works once again (mysteriously).
58457         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
58458
58459 2001-01-30  Jim Meyering  <meyering@lucent.com>
58460
58461         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
58462         * m4/chown.m4: Rename conftestchown to conftest.chown.
58463         * m4/rename.m4: s/conftestdir/conftest.d1/ and
58464         s/conftestdir2/conftest.d2/.
58465         * m4/utimes.m4: s/conftestdata/conftest.data/
58466         Inspired by Pavel Roskin's change in autoconf.
58467
58468 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
58469
58470         * lib/config.charset: Update for FreeBSD 4.2.
58471
58472 2001-01-27  Jim Meyering  <meyering@lucent.com>
58473
58474         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
58475         a use of AS_IF.
58476         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
58477
58478 2001-01-26  Jim Meyering  <meyering@lucent.com>
58479
58480         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
58481         quotearg.c includes it.
58482
58483 2001-01-26  Jim Meyering  <meyering@lucent.com>
58484
58485         * lib/quotearg.c: Include stddef.h.
58486         * lib/quote.c: Include stddef.h.
58487         Reported by Axel Kittenberger.
58488
58489         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
58490         line in double quotes so that it evokes a better diagnostic.
58491         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
58492         Reported by Axel Kittenberger.
58493
58494 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
58495
58496         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
58497         as if it was a `charset'.
58498
58499 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
58500
58501         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
58502         has const.
58503
58504 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
58505
58506         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
58507         to avoid a warning.  Add back 'const' to inptr.
58508
58509 2001-01-20  Jim Meyering  <meyering@lucent.com>
58510
58511         Be sure that headers are checked before used in code compiled
58512         for the type checks.
58513         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
58514         In place of that, invoke jm_CHECK_ALL_TYPES.
58515         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
58516         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
58517         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
58518         The check for ssize_t was mistakenly run before the test for unistd.h.
58519
58520         The configure-time check for stdbool.h was missing.
58521         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
58522         (jm_PREREQ_HASH): New function.
58523
58524 2001-01-17  Jim Meyering  <meyering@lucent.com>
58525
58526         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
58527         for autoconf-2.49c.
58528         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
58529
58530 2001-01-16  Jim Meyering  <meyering@lucent.com>
58531
58532         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
58533         From Bruno Haible.
58534
58535 2001-01-14  Jim Meyering  <meyering@lucent.com>
58536
58537         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
58538         foo and bar.  Create conftestdir/ in the script, not in the C code.
58539         Remove directories in the script, not in the C code.
58540         Remove conftestdir{,2} before trying to create the directory.
58541         Make the entire configure script fail if the mkdir fails.
58542
58543 2001-01-14  Jim Meyering  <meyering@lucent.com>
58544
58545         * lib/rename.c: New file.  From Volker Borchert.
58546         Include stdlib.h, string.h or strings.h, and xalloc.h.
58547         Use strip_trailing_slashes rather than open-coding it.
58548
58549 2001-01-03  Paul Eggert  <eggert@twinsun.com>
58550
58551         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
58552
58553 2001-01-03  Jim Meyering  <meyering@lucent.com>
58554
58555         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
58556         of local `inptr' to avoid warning with some system declarations of
58557         iconv.
58558
58559 2001-01-02  Volker Borchert  <bt@teknon.de>
58560
58561         * m4/rename.m4: New file.
58562         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
58563
58564 2001-01-01  Jim Meyering  <meyering@lucent.com>
58565
58566         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
58567         even on systems with utmpx.h.  It's necessary for the declaration of
58568         utmp's ut_user member.  Reported by Andreas Jaeger.
58569
58570         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
58571         available. They are required for the declarations of getgrgid and
58572         getpwuid resp.
58573         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
58574         Reported by Andreas Jaeger.
58575
58576 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
58577
58578         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
58579         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
58580         so `make install' also works in VPATH builds.
58581
58582 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
58583
58584         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
58585         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
58586         can be used in subdirectories.
58587
58588 2000-12-29  Paul Eggert  <eggert@twinsun.com>
58589
58590         * lib/modechange.c: Do not assume that mode_t uses the
58591         traditional octal encoding.  E.g. "chmod 1 FOO" should set
58592         the other-execute bit of FOO even if S_IXOTH != 1.
58593
58594         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
58595         WOTH, XOTH, ALLM): New macros.
58596         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
58597          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
58598         Use them.
58599         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
58600         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
58601         (mode_compile):
58602         No need to use uintmax_t; unsigned long is long enough.
58603         Don't bother to get suffix since we don't use it.
58604
58605 2000-12-26  Jim Meyering  <meyering@lucent.com>
58606
58607         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
58608         better with autoheader.
58609
58610 2000-12-24  Jim Meyering  <meyering@lucent.com>
58611
58612         * lib/hash.c (is_prime): Return explicit boolean values.
58613         (hash_get_first): Return NULL to appease Irix5.6's 89.
58614         Reported by Nelson Beebe.
58615
58616 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
58617
58618         * lib/localcharset.c (locale_charset): Add support for Win32.
58619
58620 2000-12-18  Paul Eggert  <eggert@twinsun.com>
58621
58622         * lib/physmem.h, lib/physmem.c: New files.
58623
58624         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
58625         (noinst_HEADERS): Add physmem.h.
58626
58627         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
58628         't' for compatibility with Solaris 8 sort.
58629
58630 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
58631
58632         * lib/config.charset: Add support for BeOS.
58633
58634 2000-12-17  Jim Meyering  <meyering@lucent.com>
58635
58636         * m4/dos.m4 (jm_AC_DOS): New file and macro.
58637         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
58638
58639 2000-12-16  Jim Meyering  <meyering@lucent.com>
58640
58641         This bug had a serious impact on chown: `chown N:M FILE' (for integer
58642         N and M) would have treated it like `chown N:N FILE'.
58643
58644         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
58645
58646 2000-12-16  Jim Meyering  <meyering@lucent.com>
58647
58648         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
58649         SHELLS_FILE to a file name that's useful on djgpp systems.
58650         Include stdlib.h.
58651         (ADDITIONAL_DEFAULT_SHELLS): Define.
58652         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
58653         Based mostly on a patch from Prashant TR.
58654
58655 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
58656
58657         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
58658         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
58659         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
58660
58661 2000-12-08  Andreas Schwab  <schwab@suse.de>
58662
58663         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
58664         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
58665
58666 2000-12-07  Jim Meyering  <meyering@lucent.com>
58667
58668         * lib/stripslash.c (ISSLASH): Define.
58669         (strip_trailing_slashes): Use ISSLASH rather than comparing against
58670         `/'.
58671         From Prashant TR.
58672
58673         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
58674         (dir_name_r): Declare this function as static.
58675         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
58676         manifest itself on a name containing a mix of slashes and
58677         backslashes.
58678         Make this function work with names starting with a DOS-style
58679         drive letter and colon prefix.
58680         (dir_name): Append `.' if necessary.
58681         Based mostly on patches from Prashant TR and Eli Zaretskii.
58682
58683         * lib/dirname.h (dir_name_r): Remove prototype.
58684
58685 2000-12-06  Paul Eggert  <eggert@twinsun.com>
58686
58687         * m4/off_t-format.m4: Remove this file.
58688         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
58689
58690 2000-12-06  Jim Meyering  <meyering@lucent.com>
58691
58692         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
58693         replacement strtoull, we may well need the replacement strtoul, too.
58694         Check for declarations of strtoul and strtoull.
58695         Check for strtol.  Mainly as a cue to cause automake to include
58696         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
58697         Check for limits.h -- strtol.c needs it.
58698
58699 2000-12-05  Jim Meyering  <meyering@lucent.com>
58700
58701         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
58702
58703 2000-12-04  Jim Meyering  <meyering@lucent.com>
58704
58705         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
58706         Also include memory.h, stdlib.h, unistd.h if appropriate.
58707         Reported by Andreas Jaeger (conflicting declaration of malloc).
58708
58709 2000-12-02  Jim Meyering  <meyering@lucent.com>
58710
58711         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
58712         * m4/jm-macros.m4 (jm_MACROS): require it.
58713
58714 2000-12-02  Jim Meyering  <meyering@lucent.com>
58715
58716         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
58717
58718 2000-12-01  Paul Eggert  <eggert@twinsun.com>
58719
58720         * lib/memrchr.c: Include <config.h> before any system include file.
58721
58722 2000-11-30  Jim Meyering  <meyering@lucent.com>
58723
58724         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
58725
58726 2000-11-30  Jim Meyering  <meyering@lucent.com>
58727
58728         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
58729
58730 2000-11-29  Paul Eggert  <eggert@twinsun.com>
58731
58732         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
58733
58734 2000-11-26  Jim Meyering  <meyering@lucent.com>
58735
58736         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
58737
58738 2000-11-22  Paul Eggert  <eggert@twinsun.com>
58739
58740         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
58741         size of (size_t) -1; it's not portable.
58742
58743 2000-11-17  Jim Meyering  <meyering@lucent.com>
58744
58745         * lib/strstr.c: Update from GNU libc.
58746
58747 2000-11-17  Akim Demaille  <akim@epita.fr>
58748
58749         * lib/obstack.h: Formatting changes.
58750         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
58751         prevent type checking.
58752         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
58753         cast the value to (void *): assigning a `foo *' to a `void *'
58754         variable is valid.
58755         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
58756
58757 2000-11-16  Jim Meyering  <meyering@lucent.com>
58758
58759         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
58760
58761 2000-11-11  Jim Meyering  <meyering@lucent.com>
58762
58763         * lib/error.c: Add a couple #includes, merging from GNU libc version.
58764
58765 2000-11-10  Jim Meyering  <meyering@lucent.com>
58766
58767         * lib/obstack.h: Update from GNU libc.
58768         * lib/obstack.c: Likewise.
58769
58770 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
58771
58772         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
58773
58774 2000-11-06  Paul Eggert  <eggert@twinsun.com>
58775
58776         * lib/getusershell.c (setusershell): Use rewind rather than
58777         fseek/fseeko, to avoid configuration hassles with fseeko.
58778         Don't bother opening SHELLS_FILE if shellstream is NULL;
58779         it's not necessary.
58780
58781 2000-11-05  Jim Meyering  <meyering@lucent.com>
58782
58783         * lib/makepath.h (make_dir): Declare.
58784         * lib/makepath.c (make_dir): Remove `static' attribute.
58785         Tweak a comment.
58786
58787 2000-11-04  Jim Meyering  <meyering@lucent.com>
58788
58789         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
58790
58791 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
58792
58793         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
58794         last one in a bucket, advance to the next bucket.
58795
58796 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
58797
58798         * lib/fnmatch.c: Do not comment out all the code if we are using
58799         the GNU C library, because in some cases we are replacing buggy
58800         code in the GNU C library itself.
58801
58802 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
58803
58804         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
58805         (regex_compile): Catch bogus \(\1\).
58806
58807 2000-10-30  Paul Eggert  <eggert@twinsun.com>
58808
58809         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
58810         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
58811         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
58812
58813 2000-10-30  Paul Eggert  <eggert@twinsun.com>
58814
58815         * lib/error.h, getline.h, modechange.h:
58816         Remove "2000" from Copyright line, as the file hasn't been
58817         changed this year other than in the copyright notice.
58818
58819         * lib/xalloc.h: Add "2000" to Copyright line, as this file
58820         was changed this year.
58821
58822 2000-10-29  Jim Meyering  <meyering@lucent.com>
58823
58824         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
58825         renaming.
58826         * m4/ls-mntd-fs.m4: Likewise
58827
58828 2000-10-29  Jim Meyering  <meyering@lucent.com>
58829
58830         * lib/xstat.in: Fix grammar in comment.
58831
58832 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
58833
58834         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
58835         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
58836         doesn't define __restrict_arr.
58837
58838 2000-10-28  Jim Meyering  <meyering@lucent.com>
58839
58840         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
58841         (jm_PREREQ_MEMCHR): New function.
58842
58843 2000-10-28  Jim Meyering  <meyering@lucent.com>
58844
58845         * lib/memchr.c: Update from libc.
58846         Adjust for portability:
58847         [HAVE_STDLIB_H]: Include stdlib.h.
58848         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
58849         Undef __memchr, too.
58850         [!weak_alias]: Define __memchr to memchr.
58851
58852         * lib/regex.c: Update from libc.
58853         * lib/regex.h: Likewise.
58854         * lib/getopt1.c: Likewise.
58855         * lib/memcmp.c: Likewise.
58856
58857         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
58858         Avoid using fseek, when possible -- it's broken by design.
58859         Patch by Ulrich Drepper.
58860
58861 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
58862
58863         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
58864         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
58865         Giving in to popular pressure to shut up the compiler with casts.
58866
58867 2000-10-26  Jim Meyering  <meyering@lucent.com>
58868
58869         * lib/strftime.c: Update from libc.
58870
58871 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
58872
58873         * regex.c: More `unsigned char' -> `re_char' changes.
58874         Also change several `int' into `re_wchar_t'.
58875         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
58876         (PUSH_FAILURE_POINTER): Don't cast any more.
58877         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
58878         We want GCC to complain, since this piece of code makes
58879         re_match non-reentrant, which *should* be fixed.
58880         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
58881         (EXTEND_BUFFER): Use RETALLOC.
58882         (SET_LIST_BIT): Don't cast.
58883         (re_wchar_t): New type.
58884         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
58885         that those two functions will always properly return.
58886         (IMMEDIATE_QUIT_CHECK): Cast to void.
58887         (analyse_first): Use recursion rather than an explicit stack.
58888         (re_compile_fastmap): Can't fail anymore.
58889         (re_search_2): Don't check re_compile_fastmap for failure.
58890         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
58891         Now also sets the new value (passed in a new argument).
58892         (re_match_2_internal): Use it.
58893         Also, use a new var `reg' of type size_t when looping through regs
58894         rather than reuse the inappropriate `mcnt'.
58895
58896 2000-10-25  Jim Meyering  <meyering@lucent.com>
58897
58898         * lib/obstack.c: Update from libc.
58899
58900 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
58901
58902         * regex.c (regex_compile): Change the way of handling a range from
58903         a char less than 256 to a char not less than 256.
58904
58905 2000-10-24  Andrew Innes  <andrewi@gnu.org>
58906
58907         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
58908         NT-Emacs only.
58909         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
58910         so that re_search functions only quit when callers expect them to.
58911
58912 2000-10-23  Jim Meyering  <meyering@lucent.com>
58913
58914         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
58915         wrong.  That set_locale call must not have any side effects.
58916         From Paul Eggert.
58917
58918 2000-10-22  Jim Meyering  <meyering@lucent.com>
58919
58920         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
58921         [CYCLIC]: Remove now-unused definition.
58922
58923         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
58924         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
58925         Suggestion from Ulrich Drepper.
58926
58927 2000-10-21  Jim Meyering  <meyering@lucent.com>
58928
58929         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
58930         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
58931         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
58932
58933 2000-10-21  Jim Meyering  <meyering@lucent.com>
58934
58935         * lib/dirname.c (memrchr): Declare if necessary.
58936         (dir_name): Remove the restriction that there be no
58937         trailing slashes.  Now, this code skips past them, effectively
58938         ignoring them.
58939         [TEST_DIRNAME] (main): New unit tests.
58940
58941         * lib/memrchr.c: New file from GNU libc.
58942         Undef __memrchr, too.
58943         [!weak_alias]: Define __memrchr to memrchr.
58944         Guard weak_alias use with `#ifdef weak_alias'.
58945
58946 2000-10-21  Jim Meyering  <meyering@lucent.com>
58947
58948         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
58949         (dir_name): Use dir_name_r.
58950         * lib/dirname.h (dir_name_r): Declare it.
58951
58952 2000-10-17  Jim Meyering  <meyering@lucent.com>
58953
58954         * lib/quote.h (PARAMS): Define and use.
58955         Reported by Akim Demaille.
58956
58957         * lib/getopt.c: Update from libc.
58958
58959 2000-10-16  Jim Meyering  <meyering@lucent.com>
58960
58961         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
58962         setlocale.
58963         From Jan Fedak.
58964
58965 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
58966
58967         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
58968
58969 2000-09-25  Jim Meyering  <meyering@lucent.com>
58970
58971         * lib/md5.h (rol): Define (from GnuPG).
58972
58973         * lib/sha.c: Give credit (GnuPG) where due.
58974         (M): Use rol rather than open-coding it.
58975         Add a FIXME comment.
58976
58977 2000-09-21  Jim Meyering  <meyering@lucent.com>
58978
58979         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
58980         Reported by Michael Stone.
58981
58982 2000-09-20  Jim Meyering  <meyering@lucent.com>
58983
58984         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
58985         (noinst_HEADERS): Add sha.h.
58986         Based on code from Scott G. Miller and from GnuPG.
58987
58988 2000-09-18  Jim Meyering  <meyering@lucent.com>
58989
58990         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
58991         LIBS. Otherwise, everyone ends up linking with -lelf for some
58992         configurations.
58993         Reported by Mike Stone.
58994
58995 2000-09-15  Jim Meyering  <meyering@lucent.com>
58996
58997         * lib/regex.c: Update from libc.
58998
58999 2000-09-10  Jim Meyering  <meyering@lucent.com>
59000
59001         * lib/getopt.c (_getopt_internal): Update from glibc.
59002
59003 2000-09-09  Jim Meyering  <meyering@lucent.com>
59004
59005         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
59006         think it should be used as a general replacement for isascii.
59007         * lib/fnmatch.c: Likewise.
59008         * lib/mbswidth.c: Likewise
59009         * lib/regex.c: Likewise.
59010
59011         Don't use atoi.
59012         * lib/userspec.c: Include sys/param.h and limits.h.
59013         Include xstrtol.h.
59014         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
59015         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
59016         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
59017         UID, GID.  Check range.
59018
59019 2000-09-06  Jim Meyering  <meyering@lucent.com>
59020
59021         * lib/getopt.c (_getopt_internal): Update from glibc.
59022
59023 2000-08-30  Jim Meyering  <meyering@lucent.com>
59024
59025         * lib/strftime.c: Merge in changes from GNU libc.
59026
59027 2000-08-26  Jim Meyering  <meyering@lucent.com>
59028
59029         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
59030         * m4/fpending.m4: New file.
59031
59032 2000-08-26  Jim Meyering  <meyering@lucent.com>
59033
59034         * lib/closeout.c: Include "__fpending.h".
59035         (close_stdout_status): Return right away if there's nothing to flush.
59036
59037         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
59038         * lib/__fpending.c: New file.
59039         * lib/__fpending.h: New file.
59040
59041 2000-08-20  Jim Meyering  <meyering@lucent.com>
59042
59043         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
59044         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
59045         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
59046
59047 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
59048
59049         Improve fileutils installation on systems where running
59050         programs (like install) can't be unlinked.
59051         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
59052         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
59053
59054 2000-08-07  Paul Eggert  <eggert@twinsun.com>
59055
59056         Standardize on "memory exhausted" instead of "Memory exhausted"
59057         or "virtual memory exhausted".
59058         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
59059         "virtual memory exhausted".
59060         * lib/same.c (same_name): Invoke xalloc_die instead of printing
59061         our own message.
59062         * lib/userspec.c (parse_user_spec): Likewise.
59063         * lib/bumpalloc.h: comment fix
59064         * lib/same.c, userspec.c: Include xalloc.h.
59065
59066         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
59067         not char *const and pointing to a constant array.
59068         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
59069         (xrealloc): Comment fix.
59070
59071         * lib/userspec.c (parse_user_spec):
59072         Don't translate a message until just before returning,
59073         to avoid unnecessary translation.
59074
59075 2000-08-07  Jim Meyering  <meyering@lucent.com>
59076
59077         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
59078         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
59079         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
59080         getgroups.c, gethostname.c, getopt.h, group-member.c,
59081         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
59082         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
59083         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
59084         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
59085         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
59086         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
59087         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
59088         yesno.c: Back out Copyright date changes for each file with no change
59089         this year.  This eases coordination with other programs using the same
59090         source code modules.  From Paul Eggert.
59091
59092 2000-08-06  Paul Eggert  <eggert@twinsun.com>
59093
59094         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
59095         not char, for compatibility with glibc 2.1.3 strftime.c.
59096
59097 2000-08-03  Greg McGary  <greg@mcgary.org>
59098
59099         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
59100         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
59101         (EXTEND_BUFFER): Use them.
59102
59103 2000-08-01  Jim Meyering  <meyering@lucent.com>
59104
59105         * lib/dirname.c (ISSLASH): Define.
59106         (BACKSLASH_IS_PATH_SEPARATOR): Define.
59107         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
59108         both `\' and `/' may be use as path separators.
59109         Based on a patch from Prashant TR.
59110
59111 2000-07-31  Paul Eggert  <eggert@twinsun.com>
59112
59113         * lib/quotearg.c (quotearg_n_options): Don't make the initial
59114         slot vector a constant, since it might get modified.
59115
59116 2000-07-31  Jim Meyering  <meyering@lucent.com>
59117
59118         * lib/xmalloc.c: Use `virtual memory exhausted', not
59119         `Memory exhausted'.
59120         * lib/obstack.c (print_and_abort): Likewise.
59121
59122 2000-07-30  Paul Eggert  <eggert@twinsun.com>
59123
59124         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
59125         buffer, so that the caller can always quote one small
59126         component of a "memory exhausted" message in slot 0.
59127         From a suggestion by Jim Meyering.
59128
59129 2000-07-30  Jim Meyering  <meyering@lucent.com>
59130
59131         * lib/makepath.c (make_path): Quote the other instance, too.
59132
59133         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
59134         (STATIC_BUF_SIZE): Define.
59135         (quotearg_n_options): Use only statically allocated storage when
59136         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
59137         than STATIC_BUF_SIZE.
59138
59139 2000-07-29  Jim Meyering  <meyering@lucent.com>
59140
59141         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
59142         * lib/dirname.c (dir_name): Likewise.
59143
59144         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
59145         `/'.
59146
59147         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
59148         (dir_name): Assert that there are no trailing slashes.
59149
59150 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
59151
59152         * lib/mbswidth.h (mbswidth): Add a flags argument.
59153         (mbswidth): New declaration.
59154         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
59155         * lib/mbswidth.c (mbswidth): Add a flags argument.
59156         (mbsnwidth): New function.
59157
59158 2000-07-24  Jim Meyering  <meyering@lucent.com>
59159
59160         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
59161
59162 2000-07-23  Paul Eggert  <eggert@twinsun.com>
59163
59164         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
59165
59166 2000-07-23  Paul Eggert  <eggert@twinsun.com>
59167
59168         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
59169         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
59170         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
59171         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
59172         invoke multibyte primitives.
59173
59174 2000-07-23  Paul Eggert  <eggert@twinsun.com>
59175
59176         * lib/quotearg.c:
59177         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
59178         so that mbstate_t is always defined.
59179
59180         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
59181         be 1 in at least one GCC installation, and this configuration
59182         error is likely to be common.  Ignoring MB_LEN_MAX hurts
59183         performance on hosts that have mbrtowc but have only unibyte
59184         locales, but I assume these hosts are rare.
59185
59186 2000-07-23  Paul Eggert  <eggert@twinsun.com>
59187
59188         * lib/mbswidth.c (_XOPEN_SOURCE):
59189         Don't define; this causes problems on Solaris 7.
59190         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
59191
59192 2000-07-23  Jim Meyering  <meyering@lucent.com>
59193
59194         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
59195         too: getgrgid, getpwuid, getuid.
59196
59197 2000-07-23  Jim Meyering  <meyering@lucent.com>
59198
59199         * lib/basename.c (base_name): Add an assertion.
59200
59201 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
59202
59203         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
59204         shadow its mbsinit function.
59205
59206 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
59207
59208         * lib/mbswidth.h: New file.
59209         * lib/mbswidth.c: New file.
59210         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
59211         (noinst_HEADERS): Add mbswidth.h.
59212
59213 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
59214
59215         * lib/config.charset: Add support for FreeBSD. Improve support for
59216         HP-UX and IRIX 6.
59217
59218 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
59219
59220         * m4/mbswidth.m4: New file.
59221         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
59222
59223 2000-07-15  Jim Meyering  <meyering@lucent.com>
59224
59225         * lib/makepath.c: Include quote.h.
59226         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
59227         corresponding argument in a `quote (...)' call.
59228         Give better diagnostics.
59229
59230         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
59231         (noinst_HEADERS): Add quote.h.
59232
59233         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
59234         from tar's src/misc.c.
59235         * lib/quote.h: New file.  Prototypes for same.
59236
59237 2000-07-14  Paul Eggert  <eggert@twinsun.com>
59238
59239         From a suggestion by Bruno Haible.
59240         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
59241         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
59242         to decide whether to define the BeOS workaround macro;
59243         this adjusts to the change to AC_MBSTATE_T.
59244
59245 2000-07-14  Jim Meyering  <meyering@lucent.com>
59246
59247         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
59248         jm_AC_TYPE_UINTMAX_T.
59249
59250 2000-07-13  Paul Eggert  <eggert@twinsun.com>
59251
59252         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
59253
59254         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
59255         quotearg_buffer_restyled): Add support for
59256         clocale_quoting_style.  Undo previous change to
59257         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
59258         and "{RIGHT QUOTATION MARK}" msgids.
59259
59260 2000-07-10  Paul Eggert  <eggert@twinsun.com>
59261
59262         From a suggestion by Bruno Haible.
59263         * m4/mbstate_t.m4 (AC_MBSTATE_T):
59264         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
59265         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
59266         and mbstate_t, to a single-part test that simply defines mbstate_t.
59267         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
59268         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
59269
59270 2000-07-10  Jim Meyering  <meyering@lucent.com>
59271
59272         * m4/strerror_r.m4: Mirror the correction made in autoconf.
59273
59274         * m4/gnu-source.m4: Output to confdefs.h directly.
59275         Suggestion from Akim Demaille.
59276
59277 2000-07-09  Paul Eggert  <eggert@twinsun.com>
59278
59279         The old behavior of quoting `like this' doesn't look good with
59280         newer, ISO-style fonts.  See:
59281         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
59282
59283         Instead, quote "like this" by default.  Let the translator
59284         tailor the locale-specific quoting behavior by providing
59285         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
59286
59287         * lib/quotearg.c (N_): New macro.
59288         (gettext_default): New function.
59289         (quotearg_buffer_restyled): Use
59290         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
59291         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
59292
59293 2000-07-09  Jim Meyering  <meyering@lucent.com>
59294
59295         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
59296         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
59297
59298         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
59299         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
59300
59301 2000-07-09  Jim Meyering  <meyering@lucent.com>
59302
59303         * lib/Most files: Update copyright dates to include 2000.
59304
59305 2000-07-08  Jim Meyering  <meyering@lucent.com>
59306
59307         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
59308         if not defined.
59309         (xgethostname): Remove now-unnecessary #ifdef.
59310         Move declaration of `err' into loop where it's used.
59311
59312 2000-07-05  Paul Eggert  <eggert@twinsun.com>
59313         and Bruno Haible  <haible@clisp.cons.org>
59314
59315         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
59316         only if the test for an object-type mbstate_t fails.  This
59317         prevents us from mistakenly reporting that mbstate_t is a
59318         system object type after we "#define mbstate_t int" to work
59319         around its lack.
59320
59321 2000-07-05  Paul Eggert  <eggert@twinsun.com>
59322         and Bruno Haible  <haible@clisp.cons.org>
59323
59324         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
59325
59326 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
59327
59328         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
59329         to strerror_r.
59330         Include <ctype.h> for use of isalpha.
59331
59332 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
59333
59334         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
59335         by allocating a larger buffer. Test the gethostname return value for
59336         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
59337         returns an error and ENAMETOOLONG isn't defined.
59338
59339 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
59340
59341         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
59342         dimension.
59343
59344 2000-07-04  Jim Meyering  <meyering@lucent.com>
59345
59346         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
59347         of the deprecated AC_CHECKING.
59348
59349 2000-07-04  Jim Meyering  <meyering@lucent.com>
59350
59351         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
59352         Reported by Bruno Haible.
59353
59354 2000-07-04  Jim Meyering  <meyering@lucent.com>
59355
59356         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
59357         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
59358         lacks mbrtowc.
59359
59360 2000-07-03  Paul Eggert  <eggert@twinsun.com>
59361
59362         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
59363         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
59364
59365 2000-07-03  Paul Eggert  <eggert@twinsun.com>
59366         and Bruno Haible  <haible@clisp.cons.org>
59367
59368         * lib/quotearg.c (mbrtowc):
59369         Assign to *pwc, and return 1 only if result is nonzero.
59370         (iswprint): Use ISPRINT when substituting our own mbrtowc.
59371
59372 2000-07-03  Jim Meyering  <meyering@lucent.com>
59373
59374         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
59375
59376 2000-07-03  Jim Meyering  <meyering@lucent.com>
59377
59378         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
59379         This is necessary to get a definition of e.g., UTMP_FILE on
59380         HP-UX 10.20.
59381         From Bob Proulx.
59382
59383 2000-07-02  Jim Meyering  <meyering@lucent.com>
59384
59385         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
59386
59387         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
59388         AC_LIBOBJ(function_name).
59389         * m4/chown.m4: Likewise.
59390         * m4/fnmatch.m4: Likewise.
59391         * m4/ftruncate.m4: Likewise.
59392         * m4/getgroups.m4: Likewise.
59393         * m4/getline.m4: Likewise.
59394         * m4/group-member.m4: Likewise.
59395         * m4/jm-macros.m4: Likewise.
59396         * m4/lstat.m4: Likewise.
59397         * m4/malloc.m4: Likewise.
59398         * m4/memcmp.m4: Likewise.
59399         * m4/nanosleep.m4: Likewise.
59400         * m4/putenv.m4: Likewise.
59401         * m4/realloc.m4: Likewise.
59402         * m4/regex.m4: Likewise.
59403         * m4/stat.m4: Likewise.
59404         * m4/strftime.m4: Likewise.
59405
59406 2000-07-02  Jim Meyering  <meyering@lucent.com>
59407
59408         * lib/quotearg.c (mbstate_t): Don't define here.
59409
59410 2000-07-02  Jim Meyering  <meyering@lucent.com>
59411
59412         * lib/nanosleep.c (SIGCONT): Define if not already defined.
59413
59414 2000-07-01  Jim Meyering  <meyering@lucent.com>
59415
59416         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
59417
59418 2000-07-01  Jim Meyering  <meyering@lucent.com>
59419
59420         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
59421         problem.
59422
59423 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
59424
59425         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
59426         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
59427
59428 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
59429
59430         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
59431         per change in ../m4/ls-mntd-fs.m4.
59432         (read_filesystem_list): Ignore symbolic links.
59433
59434 2000-06-29  Jim Meyering  <meyering@lucent.com>
59435
59436         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
59437         for declaration of strcmp.
59438
59439         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
59440
59441         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
59442         Avoid warning by casting result to `char *' to remove `const'.
59443
59444 2000-06-28  Jim Meyering  <meyering@lucent.com>
59445
59446         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
59447         included by quotearg.c, for which we perform this test.  From
59448         Bruno Haible.
59449
59450 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
59451
59452         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
59453         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
59454         <utmpx.h> exists, put readutmp.o into LIBOBJS.
59455
59456 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
59457
59458         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
59459
59460 2000-06-26  Paul Eggert  <eggert@twinsun.com>
59461
59462         savedir now sets errno on failure and invokes xmalloc to get memory.
59463         Fix a couple of other minor bugs while we're at it.
59464
59465         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
59466         (NAMLEN): Remove macro.
59467         (malloc, realloc): Remove decls.
59468         (stpcpy): Likewise.
59469         ("xalloc.h"): Include.
59470         (NAME_SIZE_DEFAULT): New macro.
59471         (savedir): Use xmalloc / xrealloc to allocate memory.
59472         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
59473         Skip "" directory entries.
59474         Use strlen to calculate directory entry length, since the old method
59475         is rarely used these days and isn't worth supporting.
59476         Don't use a pointer after freeing it.
59477         Check for integer overflow when calculating allocation size.
59478         Use memcpy to copy entries, instead of stpcpy.
59479         Set errno properly when returning NULL.
59480         Check for readdir error.
59481
59482 2000-06-26  Jim Meyering  <meyering@lucent.com>
59483
59484         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
59485
59486 2000-06-25  Jim Meyering  <meyering@lucent.com>
59487
59488         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
59489         Linux header bug when _XOPEN_SOURCE is defined to 500.
59490
59491 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
59492
59493         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
59494         deficiency.
59495
59496 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
59497
59498         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
59499         Include xalloc.h.
59500         Don't include <stdlib.h>.  Don't declare malloc, realloc.
59501
59502 2000-06-24  Jim Meyering  <meyering@lucent.com>
59503
59504         * m4/strerror_r.m4: Revive this file -- to try out an experimental
59505         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
59506         for which strerror does return char*, but which lacks a conveniently
59507         accessible declaration of the function.  If the compile-test says
59508         strerror_r doesn't work, then resort to a `run'-test that works on
59509         BeOS and segfaults on DEC Unix.
59510
59511 2000-06-24  Jim Meyering  <meyering@lucent.com>
59512
59513         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
59514
59515 2000-06-23  Paul Eggert  <eggert@twinsun.com>
59516
59517         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
59518         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
59519
59520 2000-06-23  Paul Eggert  <eggert@twinsun.com>
59521
59522         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
59523         (mbrtowc, mbstate_t): Define substitutes if
59524         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
59525         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
59526         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
59527
59528 2000-06-23  Jim Meyering  <meyering@lucent.com>
59529
59530         * m4/afs.m4: Add missing AC_MSG_RESULT.
59531         Reported by Bruno Haible.
59532
59533         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
59534         Suggestion from Bruno Haible.
59535
59536 2000-06-23  Jim Meyering  <meyering@lucent.com>
59537
59538         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
59539
59540 2000-06-21  Jim Meyering  <meyering@lucent.com>
59541
59542         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
59543
59544 2000-06-21  Jim Meyering  <meyering@lucent.com>
59545
59546         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
59547         (noinst_HEADERS): Add getstr.h.
59548
59549         * lib/getline.c (getstr): Move into a separate file.
59550         * lib/getstr.c (getstr): New file, extracted from getline.c, with
59551         the following changes: new parameter, delim2; both delim[12]
59552         parameters have type `int', not `char'.  The latter would lose
59553         with 8-bit delimiters.
59554         * lib/getstr.h: New file.
59555
59556 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
59557
59558         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
59559         than 1024, return a memory chunk of least possible size, instead
59560         of size PATH_MAX + 2. In the loop, increment the size proportionally.
59561         Use free/xmalloc instead of xrealloc to avoid copying for very long
59562         paths.
59563
59564 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
59565
59566         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
59567         the empty string.
59568
59569 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
59570
59571         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
59572         address, not strdup.  Include <stdlib.h> and don't declare free().
59573
59574 2000-06-19  Jim Meyering  <meyering@lucent.com>
59575
59576         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
59577
59578 2000-06-18  Jim Meyering  <meyering@lucent.com>
59579
59580         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
59581
59582         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
59583         `checking whether...' message to be consistent with that of the
59584         lstat test.
59585
59586 2000-06-18  Jim Meyering  <meyering@lucent.com>
59587
59588         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
59589         Besides, these days every porting target provides a mkdir function.
59590
59591         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
59592         needed. (this snippet comes from src/system.h).
59593
59594 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
59595
59596         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
59597
59598 2000-06-15  Paul Eggert  <eggert@twinsun.com>
59599
59600         * lib/human.c (adjust_value): New function.
59601         (human_readable_inexact): Apply rounding style even when
59602         printing approximate values.
59603
59604 2000-06-14  Paul Eggert  <eggert@twinsun.com>
59605
59606         * lib/human.c (human_readable_inexact): Allow an input block
59607         size that is not a multiple of the output block size, and vice versa.
59608         Reported by Piergiorgio Sartor.
59609
59610 2000-06-14  Paul Eggert  <eggert@twinsun.com>
59611
59612         * lib/getdate.y (get_date): Apply relative times after time
59613         zone indicator, not before.  Reported by Todd A. Jacobs.
59614
59615 2000-06-13  Jim Meyering  <meyering@lucent.com>
59616
59617         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
59618
59619         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
59620
59621 2000-06-12  Paul Eggert  <eggert@twinsun.com>
59622
59623         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
59624
59625 2000-06-12  Jim Meyering  <meyering@lucent.com>
59626
59627         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
59628         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
59629         optional argument.
59630         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
59631         the optional argument, `lib'.
59632
59633 2000-06-08  Jim Meyering  <meyering@lucent.com>
59634
59635         * m4/largefile.m4: Remove file (now that it's part of autoconf).
59636
59637 2000-06-04  Paul Eggert  <eggert@twinsun.com>
59638
59639         Rewrite largefile configuration so that we don't need to run
59640         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
59641         AC_CANONICAL_HOST in configure.in -- jmm]
59642
59643         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
59644         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
59645         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
59646         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
59647         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
59648         All uses changed.
59649         Instead of inspecting the output of getconf, try to compile the
59650         test program without and with the macro definition.
59651         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
59652         for getconf.  Instead, check for the needed flags by compiling
59653         test programs.
59654
59655 2000-06-04  Paul Eggert  <eggert@twinsun.com>
59656
59657         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
59658
59659 2000-06-04  Jim Meyering  <meyering@lucent.com>
59660
59661         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
59662         SunOS 4.1.4 for which gid_t is an unsigned type.
59663
59664 2000-06-03  Jim Meyering  <meyering@lucent.com>
59665
59666         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
59667         now that autoconf requires that.
59668
59669         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
59670         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
59671         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
59672
59673 2000-06-03  Jim Meyering  <meyering@lucent.com>
59674
59675         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
59676
59677 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
59678
59679         * m4/glibc21.m4: New file.
59680         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
59681
59682 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
59683
59684         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
59685         newer, don't install charset.alias.
59686         * lib/config.charset: Change the Linux/glibc rules so they become empty
59687         on glibc-2.1 or newer.
59688
59689 2000-06-02  Jim Meyering  <meyering@lucent.com>
59690
59691         * lib/mountlist.c: Back out last change.  Instead, do this...
59692         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
59693         me_dummy member using the same `ignore'-testing code.
59694         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
59695         fs_type strings.
59696         From Mark D. Roth.
59697
59698 2000-05-29  Jim Meyering  <meyering@lucent.com>
59699
59700         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
59701         mounts with the `ignore' attribute.  Based on a patch from
59702         Mark D. Roth.
59703
59704 2000-05-28  Jim Meyering  <meyering@lucent.com>
59705
59706         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
59707         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
59708         * m4/stat.m4: Likewise.
59709         * m4/lstat.m4: Likewise.
59710         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
59711
59712         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
59713         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
59714
59715 2000-05-26  Jim Meyering  <meyering@lucent.com>
59716
59717         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
59718
59719 2000-05-24  Jim Meyering  <meyering@lucent.com>
59720
59721         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
59722         autoconf requires that.
59723         * m4/lib-check.m4: Likewise.
59724         * m4/jm-macros.m4: Likewise.
59725         * m4/strftime.m4: Likewise.
59726
59727         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
59728         AC_CHECK_DECLS, now that autoconf requires that.
59729
59730 2000-05-22  Jim Meyering  <meyering@lucent.com>
59731
59732         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
59733         * m4/lstat.m4: Likewise.
59734
59735 2000-05-22  Jim Meyering  <meyering@lucent.com>
59736
59737         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
59738
59739 2000-05-20  Jim Meyering  <meyering@lucent.com>
59740
59741         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
59742         (jm_PREREQ): Use it.
59743
59744 2000-05-18  Jim Meyering  <meyering@lucent.com>
59745
59746         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
59747         back, too, since it may have been modified by allocate_entry.
59748         (hash_delete): Rewrite to use neither the assignment operator
59749         nor the comma operator in an if-expression.
59750
59751 2000-05-15  Paul Eggert  <eggert@twinsun.com>
59752
59753         * lib/closeout.c:
59754         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
59755         Remove; no longer needed.
59756         "quotearg.h": Add include.
59757         (file_name): Do not bother to explicitly initialize to NULL; it's less
59758         efficient on some hosts.
59759         (close_stdout_status): Remove test as to whether stdout was already
59760         closed; it breaks for the case "echo x | sort >&-".
59761         Quote file name colons.
59762         Do not assume that _("write error") lacks format strings.
59763
59764 2000-05-15  Jim Meyering  <meyering@lucent.com>
59765
59766         * lib/version-etc.c (version_etc_copyright): Update the copyright
59767         string used in all --version output.
59768
59769 2000-05-14  Jim Meyering  <meyering@lucent.com>
59770
59771         * lib/closeout.c (close_stdout_set_file_name): New function.
59772         (close_stdout_status): Use new file-scoped global.
59773         Return right away if fstat says the stdout file descriptor is invalid.
59774         * lib/closeout.h (close_stdout_set_file_name): Declare.
59775
59776 2000-05-10  Jim Meyering  <meyering@lucent.com>
59777
59778         * lib/closeout.c [default_exit_status]: New file-scoped variable.
59779         (close_stdout_set_status): New function.
59780         * lib/closeout.h (close_stdout_set_status): Declare.
59781
59782 2000-05-09  Jim Meyering  <meyering@lucent.com>
59783
59784         * m4/gettext.m4: Rename this...
59785         * m4/libintl.m4: ...to this.
59786
59787 2000-05-08  Jim Meyering  <meyering@lucent.com>
59788
59789         * lib/long-options.c: Don't include closeout.h.
59790         (parse_long_options): Don't call close_stdout for --version.
59791
59792 2000-05-06  Paul Eggert  <eggert@twinsun.com>
59793
59794         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
59795         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
59796         2.1.3 bug.  This avoids a clash when files like regex.c define
59797         _GNU_SOURCE.
59798
59799 2000-05-06  Jim Meyering  <meyering@lucent.com>
59800
59801         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
59802         (AC_REPLACE_FUNCS): Add strnlen.
59803
59804         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
59805         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
59806
59807         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
59808         AC_SEARCH_LIBS call for nanosleep.
59809         (LIB_NANOSLEEP): Set and AC_SUBST.
59810
59811 2000-05-06  Jim Meyering  <meyering@lucent.com>
59812
59813         * lib/strnlen.c: Undefine __strnlen and strnlen.
59814         [!weak_alias]: Define __strnlen to strnlen.
59815
59816         * lib/atexit.c: New file, from libiberty.
59817
59818 2000-05-06  Jim Meyering  <meyering@lucent.com>
59819
59820         * lib/closeout.c (close_stdout_status): Also check for errors on the
59821         stderr stream.
59822
59823 2000-05-05  Jim Meyering  <meyering@lucent.com>
59824
59825         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
59826         AC_SEARCH_LIBS call for clock_gettime.
59827         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
59828
59829         * m4/search-libs.m4: Update from autoconf.
59830
59831         su doesn't work on Solaris 2.6.
59832         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
59833         <shadow.h>.  Reported by Dragos Harabor.
59834
59835 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
59836
59837         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
59838         memcpy instead of xmalloc, xrealloc, path_concat.
59839         (locale_charset): Treat empty environment variables as absent.
59840         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
59841
59842 2000-05-04  Jim Meyering  <meyering@lucent.com>
59843
59844         * lib/getopt.c: Update from glibc.
59845         * lib/obstack.c: Likewise.
59846         * lib/obstack.h: Likewise.
59847         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
59848         file
59849
59850         * lib/regex.h: Likewise.
59851         * lib/strndup.c: Likewise.
59852         * lib/strnlen.c: New file, from glibc.
59853
59854 2000-05-03  Jim Meyering  <meyering@lucent.com>
59855
59856         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
59857
59858 2000-05-02  Paul Eggert  <eggert@twinsun.com>
59859
59860         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
59861         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
59862         compile-time test, rather than inspecting host and OS, to
59863         decide whether to define _LARGEFILE_SOURCE.
59864
59865 2000-05-01  Jim Meyering  <meyering@lucent.com>
59866
59867         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
59868
59869         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
59870         Based on a patch from Bruno Haible.
59871
59872 2000-05-01  Jim Meyering  <meyering@lucent.com>
59873
59874         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
59875
59876 2000-04-29  Jim Meyering  <meyering@lucent.com>
59877
59878         * lib/path-concat.c: Declare strdup only if it's not defined.
59879         * lib/canon-host.c: Likewise.
59880
59881 2000-04-28  Jim Meyering  <meyering@lucent.com>
59882
59883         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
59884         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
59885         is included first, then limits.h is included by locale.h by libintl.h.
59886         From John David Anglin.
59887
59888 2000-04-25  Jim Meyering  <meyering@lucent.com>
59889
59890         * lib/makepath.c (S_IRWXUGO): Define.
59891         (make_path): Always perform explicit chmod if MODE specifies any
59892         of the `special' permission bits.  Prompted by a bug report against
59893         install from Mate Wierdl and Joost van Baal.
59894
59895 2000-04-18  Jim Meyering  <meyering@lucent.com>
59896
59897         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
59898         (jm_PREREQ): Use it.
59899
59900 2000-04-18  Jim Meyering  <meyering@lucent.com>
59901
59902         * lib/README: New file.
59903
59904         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
59905         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
59906
59907 2000-04-17  Jim Meyering  <meyering@lucent.com>
59908
59909         Get it right :-)
59910         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
59911         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
59912         Suggestion from Akim Demaille.
59913
59914 2000-04-17  Jim Meyering  <meyering@lucent.com>
59915
59916         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
59917         the definition of it to rpl_strftime also defined-away the system's
59918         declaration.
59919
59920 2000-04-15  Jim Meyering  <meyering@lucent.com>
59921
59922         Use `C' to denote so-called `contiguous' files, the same way
59923         that tar does.
59924         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
59925         (ftypelet): Use S_ISCTG.
59926         From Michael Deutschmann.
59927
59928 2000-04-14  Jim Meyering  <meyering@lucent.com>
59929
59930         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
59931         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
59932         clobbered.
59933
59934 2000-04-14  Jim Meyering  <meyering@lucent.com>
59935
59936         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
59937
59938 2000-04-13  Jim Meyering  <meyering@lucent.com>
59939
59940         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
59941         AH_VERBATIM to insert required #ifndef into config.h.in.
59942         Suggestion from Akim Demaille.
59943
59944 2000-04-12  Jim Meyering  <meyering@lucent.com>
59945
59946         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
59947         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
59948         Christian Krackowizer.
59949
59950         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
59951         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
59952         (AC_SYS_LARGEFILE): Require.
59953         (AM_C_PROTOTYPES): Require.
59954
59955 2000-04-08  Jim Meyering  <meyering@lucent.com>
59956
59957         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
59958         names don't conflict.  Reported by Eli Zaretskii.
59959
59960 2000-04-07  Jim Meyering  <meyering@lucent.com>
59961
59962         * lib/putenv.c: Move inclusion of errno.h so it follows that of
59963         sys/types.h, to work around system header problems on AIX 3.2.5.
59964         From Bruno Haible.
59965
59966 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
59967
59968         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
59969         bug.  Deal with the different error behavior of Irix iconv.
59970
59971 2000-04-05  Paul Eggert  <eggert@twinsun.com>
59972
59973         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
59974         IRIX if the installer said otherwise.
59975
59976 2000-04-05  Jim Meyering  <meyering@lucent.com>
59977
59978         Portability tweaks required for ultrix4.3.
59979         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
59980         (jm_CHECK_DECLS): Add getutent to the list of functions.
59981         (_jm_DECL_HEADERS): Add utmpx.h.
59982         From John David Anglin.
59983
59984         * m4/strftime.m4: Back out the 2000-04-02 change.
59985         Instead of that change, simply undefine putenv in the test program.
59986
59987 2000-04-05  Jim Meyering  <meyering@lucent.com>
59988
59989         Portability tweaks required for ultrix4.3.
59990         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
59991         getutent.
59992         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
59993         * lib/canon-host.c: Declare strdup.
59994         * lib/path-concat.c: Likewise.
59995         From John David Anglin.
59996
59997 2000-04-04  Jim Meyering  <meyering@lucent.com>
59998
59999         Be more DOS 8.3-friendly.
60000         * lib/ref-add.sin: Renamed from ref-add.sed.in.
60001         * lib/ref-del.sin: Renamed from ref-del.sed.in.
60002         * lib/Makefile.am: Reflect renaming.
60003         Reported by Eli Zaretskii.
60004
60005         Use a temporary file name that won't clash with `charset.alias'
60006         in the DOS 8.3 name space.
60007         * lib/Makefile.am (charset_tmp): Define.
60008         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
60009         (uninstall-local): Likewise.
60010         Reported by Eli Zaretskii.
60011
60012 2000-04-03  Jim Meyering  <meyering@lucent.com>
60013
60014         * m4/gettext.m4: Fix typo in comment.
60015
60016         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
60017         textutils/configure.in).  Suggestion from Paul Eggert.
60018         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
60019
60020 2000-04-02  Paul Eggert  <eggert@twinsun.com>
60021
60022         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
60023         variable in the shell rather than using putenv, which isn't
60024         portable.  This avoids the configure-time inter-test dependency
60025         on the potentially-renamed putenv function.
60026
60027 2000-03-30  Paul Eggert  <eggert@twinsun.com>
60028
60029         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
60030         before checking struct stat.st_blksize, so that
60031         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
60032
60033 2000-03-29  Paul Eggert  <eggert@twinsun.com>
60034
60035         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
60036         since strftime.c uses HAVE_STRFTIME to decide whether to use
60037         the underlying strftime.
60038
60039 2000-03-29  Paul Eggert  <eggert@twinsun.com>
60040
60041         * lib/time/strftime.c (my_strftime): Make sure we call the system
60042         strftime, not ourselves, when invoking the underlying strftime.
60043
60044 2000-03-24  Jim Meyering  <meyering@lucent.com>
60045
60046         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
60047         (charset_alias): Define.
60048         (install-exec-local): Factor out common code.
60049         (uninstall-local): Split lines longer than 80.
60050         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
60051         (SUFFIXES): Define.
60052         (.sed.in.sed): New rule.  Don't redirect directly to $@.
60053         (CLEANFILES): Add ref-add.sed and ref-del.sed.
60054
60055 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
60056
60057         * lib/config.charset: Output a line containing "Packages using this
60058         file".
60059         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
60060         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
60061         ref-del.sed): New rules.
60062
60063 2000-03-17  Jim Meyering  <meyering@lucent.com>
60064
60065         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
60066         Otherwise, include <strings.h>
60067
60068 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
60069
60070         * lib/unicodeio.c (utf8_wctomb): New function.
60071         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
60072         format instead of in UCS-4 with platform dependent endianness.
60073
60074 2000-03-10  Jim Meyering  <meyering@lucent.com>
60075
60076         * m4/lib-check.m4: Look for getspnam in -lgen, too.
60077         From Marco Franzen.
60078
60079 2000-03-07  Paul Eggert  <eggert@twinsun.com>
60080
60081         * lib/savedir.c (savedir): Work even if directory size is
60082         negative; this can happen with some screwy NFS configurations.
60083
60084 2000-03-06  Jim Meyering  <meyering@lucent.com>
60085
60086         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
60087         if it's NULL (because we ran out of memory).  From Bruno Haible.
60088
60089 2000-03-05  Jim Meyering  <meyering@lucent.com>
60090
60091         * lib/localcharset.c ("path-concat.h"): Include.
60092         (get_charset_aliases): Use path_concat instead of ANSI string
60093         concatenation.
60094
60095         * lib/unicodeio.h (PARAMS): Define.
60096         Use it to guard prototype.
60097
60098 2000-03-04  Jim Meyering  <meyering@lucent.com>
60099
60100         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
60101         for lib/localcharset.c.
60102
60103 2000-03-04  Jim Meyering  <meyering@lucent.com>
60104
60105         * lib/Makefile.am (install-exec-local): Create $(libdir) before
60106         installing into it.
60107         (uninstall-local): Uncomment this rule so `make distcheck' works
60108         once again.
60109
60110         * lib/unicodeio.c (<errno.h>): Include it.
60111         (errno): Declare if not defined.
60112
60113         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
60114
60115         * lib/config.charset: New version, incorporating remarks from a linux
60116         i18n mailing list.  From Bruno Haible.
60117
60118 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
60119
60120         * m4/codeset.m4: New file.
60121         * m4/iconv.m4: New file.
60122         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
60123
60124 2000-03-03  Jim Meyering  <meyering@lucent.com>
60125
60126         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
60127
60128 2000-03-02  Jim Meyering  <meyering@lucent.com>
60129
60130         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
60131         the messages come out on separate lines.
60132
60133         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
60134         rather than jm_CHECK_DECLARATIONS.
60135         * m4/decl.m4: Remove now-unused file.
60136
60137         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
60138         geteuid.
60139
60140 2000-03-02  Jim Meyering  <meyering@lucent.com>
60141
60142         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
60143
60144 2000-03-01  Jim Meyering  <meyering@lucent.com>
60145
60146         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
60147         * lib/unicodeio.c: Likewise.
60148
60149 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
60150
60151         * lib/config.charset: New file.
60152         * lib/localcharset.c: New file.
60153         * lib/unicodeio.h, lib/unicodeio.c: New files.
60154         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
60155         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
60156         (noinst_HEADERS): Add unicodeio.h.
60157         (all-local, install-exec-local, charset.alias): New targets.
60158
60159 2000-02-28  Paul Eggert  <eggert@twinsun.com>
60160
60161         * lib/quotearg.c (ALERT_CHAR): New macro.
60162         (quotearg_buffer_restyled): Use it.
60163
60164 2000-02-27  Jim Meyering  <meyering@lucent.com>
60165
60166         * m4/check-decl.m4: Add getenv to the list.
60167
60168 2000-02-27  Jim Meyering  <meyering@lucent.com>
60169
60170         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
60171         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
60172
60173         * lib/backupfile.c: Guard inclusion of stdlib.h with
60174         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
60175         Declare malloc if needed.
60176
60177         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
60178         `#ifndef HAVE_DECL..'
60179         now that autoconf always defines the HAVE_DECL_ symbols.
60180         * lib/human.c: Likewise.
60181         * lib/same.c: Likewise.
60182         * lib/strtoumax.c: Likewise.
60183
60184         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
60185         declaration check was not run.
60186         * lib/hash.c: Likewise.
60187         * lib/human.c: Likewise.
60188         * lib/same.c: Likewise.
60189         * lib/strtoumax.c: Likewise.
60190
60191         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
60192         `.', then first look up the entire `.'-containing string as a login
60193         name.
60194
60195 2000-02-23  Jim Meyering  <meyering@lucent.com>
60196
60197         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
60198         in place of my hack.
60199
60200 2000-02-18  Paul Eggert  <eggert@twinsun.com>
60201
60202         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
60203         (textint): New typedef.
60204         (parser_control): Member year changed from int to textint.
60205         All uses changed.
60206         (YYSTYPE): Removed; replaced by %union with int and textint members.
60207         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
60208         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
60209         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
60210         (tSNUMBER, tUNUMBER): Now of type <textintval>.
60211         (date, number, to_year): Use width of number in digits, not its value,
60212         to determine whether it's a 2-digit year, or a 2-digit time.
60213         (yylex): Store number of digits of numeric tokens.
60214         Reported by John Kendall.
60215
60216         (parser_control): Changed from struct parser_control to typedef (for
60217         consistency).  All uses changed.
60218
60219         (tID): Removed; not used.
60220         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
60221
60222 2000-02-14  Paul Eggert  <eggert@twinsun.com>
60223
60224         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
60225         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
60226
60227 2000-02-12  Jim Meyering  <meyering@lucent.com>
60228
60229         * lib/userspec.c (ISDIGIT): Define it.
60230         (isdigit): Remove definition.
60231         (is_number): Use ISDIGIT, not isdigit.
60232         <libintl.h>: Include.
60233         (_ and N_): Define.
60234         (parse_user_spec): Mark translatable strings.
60235
60236 2000-02-10  Jim Meyering  <meyering@lucent.com>
60237
60238         With these changes, nanosleep.[ch] are finally enough like the other
60239         lib/* replacement files to compile on a few more losing systems.
60240
60241         * lib/nanosleep.h: Don't include config.h.
60242         Remove prototype from declaration of nanosleep.
60243         (PARAMS): Remove now-unneeded definition.
60244         * lib/nanosleep.c: #undef nanosleep.
60245         (rpl_nanosleep): Rename from nanosleep.
60246
60247 2000-02-10  Jim Meyering  <meyering@lucent.com>
60248
60249         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
60250         gnu_nanosleep to rpl_nanosleep.
60251
60252 2000-02-09  Jim Meyering  <meyering@lucent.com>
60253
60254         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
60255         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
60256
60257 2000-02-08  Akim Demaille  <akim@epita.fr>
60258
60259         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
60260         `[' and `]' and remove uses of `changequote'.
60261         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
60262         (AC_SYS_LARGEFILE): Likewise.
60263         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
60264         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
60265         of changequote.
60266         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
60267         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
60268         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
60269         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
60270
60271 2000-02-05  Jim Meyering  <meyering@lucent.com>
60272
60273         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
60274         Remove explicit use of AC_HEADER_TIME.  It is required by
60275         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
60276         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
60277         in autoconf whereby the expansion of the latter ended up preceding
60278         the expansion of its prerequisite, AC_HEADER_TIME.
60279         Reported by Volker Borchert.
60280
60281 2000-02-03  Jim Meyering  <meyering@lucent.com>
60282
60283         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
60284
60285 2000-02-03  Jim Meyering  <meyering@lucent.com>
60286
60287         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
60288         rather than with `#if HAVE_UTMPNAME'.
60289
60290 2000-02-02  Jim Meyering  <meyering@lucent.com>
60291
60292         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
60293         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
60294         Reported by Eli Zaretskii.
60295
60296 2000-02-01  Jim Meyering  <meyering@lucent.com>
60297
60298         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
60299
60300 2000-01-31  Jim Meyering  <meyering@lucent.com>
60301
60302         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
60303         functions.  Add the time.h and sys/time.h headers along with the
60304         AC_REQUIRE'ment of AC_HEADER_TIME.
60305
60306 2000-01-31  Jim Meyering  <meyering@lucent.com>
60307
60308         * lib/nanosleep.h (nanosleep): Guard declaration with
60309         `#if ! HAVE_DECL_NANOSLEEP'.
60310         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
60311         the declaration in that vendor's sys/timers.h.
60312         Reported by Christian Krackowizer.
60313
60314         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
60315         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
60316         (ISPRINT): Likewise.
60317         Reported by Tom Tromey.
60318
60319 2000-01-30  Jim Meyering  <meyering@lucent.com>
60320
60321         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
60322
60323         * m4/prereq.m4 (utmp_includes): Define.
60324         Check for ut_user and ut_name members in both struct utmpx
60325         and struct utmp.
60326
60327 2000-01-30  Jim Meyering  <meyering@lucent.com>
60328
60329         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
60330         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
60331         header files where only utmpx.ut_user is declared.
60332
60333         * lib/readutmp.h (UT_USER): Define.
60334
60335 2000-01-29  Jim Meyering  <meyering@lucent.com>
60336
60337         * m4/lib-check.m4: New file containing library-related checks from
60338         fileutils and sh-utils (textutils had none).
60339
60340 2000-01-28  Jim Meyering  <meyering@lucent.com>
60341
60342         * m4/perl.m4: Change format of warning message to look more like that
60343         from the missing script.  Suggestion from François Pinard.
60344
60345 2000-01-25  Jim Meyering  <meyering@lucent.com>
60346
60347         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
60348         well as time.h in the compile check.
60349         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
60350         Fix typo in cross-compiling case: s/yes/no/.
60351
60352 2000-01-23  Jim Meyering  <meyering@lucent.com>
60353
60354         * m4/jm-macros.m4: Move df-related tests here from
60355         fileutils/configure.in
60356
60357         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
60358         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
60359
60360         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
60361         s/space/ac_fsusage_space/.
60362         (jm_FILE_SYSTEM_USAGE): Take two parameters.
60363
60364         * m4/ftruncate.m4: New file (derived from part of
60365         fileutils/configure.in).
60366         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
60367         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
60368
60369         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
60370         AC_SUBST these here, rather than just in sh-util/configure.in, so
60371         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
60372         all the same.
60373         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
60374         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
60375         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
60376         (AC_SUBST(POW_LIBM)): Likewise.
60377         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
60378
60379 2000-01-23  Jim Meyering  <meyering@lucent.com>
60380
60381         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
60382         obstack.c.
60383
60384 2000-01-22  Jim Meyering  <meyering@lucent.com>
60385
60386         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
60387
60388         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
60389
60390         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
60391         configure.in
60392         (AC_CHECK_HEADERS): Likewise for sh-utils.
60393         (AC_CHECK_HEADERS): Likewise for textutils.
60394         Merge the three lists of headers.
60395
60396         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
60397         from fileutils' configure.in.
60398
60399         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
60400         code. Moved tests into their own function (_jm_DECL_HEADERS) in
60401         check-decl.m4.
60402
60403         * m4/check-decl.m4: Use #if rather than #ifdef.
60404         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
60405         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
60406         (_jm_DECL_HEADERS): Define new function.
60407         (jm_CHECK_DECLARATIONS): Require it.
60408
60409 2000-01-22  Jim Meyering  <meyering@lucent.com>
60410
60411         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
60412         [! HAVE_DECL_STRTOULL]: Declare strtoull.
60413         Required for some AIX systems.  Reported by Christian Krackowizer.
60414         [TESTING] (main): New function.
60415
60416         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
60417         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
60418         letters.
60419
60420         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
60421         iswprint.
60422
60423         * lib/strverscmp.c (ISDIGIT): Define.
60424         (strverscmp): Use ISDIGIT, not isdigit.
60425
60426 2000-01-19  Jim Meyering  <meyering@lucent.com>
60427
60428         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
60429         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
60430         defines `struct timespec' in <sys/time.h>
60431
60432         * m4/c-bs-a.m4: Remove uses of changequote altogether.
60433         Thanks to Akim for explaining.
60434
60435 2000-01-17  Paul Eggert  <eggert@twinsun.com>
60436
60437         * lib/nanosleep.c (nanosleep):
60438         Don't use SA_INTERRUPT to decide whether to call sigaction, as
60439         POSIX.1 doesn't require SA_INTERRUPT and some systems
60440         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
60441         it's been part of POSIX.1 since day 1 (in 1988).
60442
60443 2000-01-17  Jim Meyering  <meyering@lucent.com>
60444
60445         * lib/interlock: Remove unused file.  Reported by François Pinard.
60446
60447 2000-01-16  Paul Eggert  <eggert@twinsun.com>
60448
60449         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
60450         alert, backslash, formfeed, and vertical tab unnecessarily in
60451         shell quoting style.
60452
60453 2000-01-16  Jim Meyering  <meyering@lucent.com>
60454
60455         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
60456         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
60457         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
60458         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
60459
60460 2000-01-16  Jim Meyering  <meyering@lucent.com>
60461
60462         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
60463         because the latter didn't work.
60464
60465 2000-01-15  Jim Meyering  <meyering@lucent.com>
60466
60467         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
60468         (AC_REPLACE_FUNCS): Add memcpy and memset.
60469         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
60470         Add strpbrk.
60471         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
60472
60473 2000-01-12  Jim Meyering  <meyering@lucent.com>
60474
60475         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
60476         (jm_PREREQ): Use it.
60477         (jm_PREREQ_READUTMP): New macro.
60478         (jm_PREREQ): Use it.
60479
60480 2000-01-11  Paul Eggert  <eggert@twinsun.com>
60481
60482         Quote multibyte characters correctly.
60483         * m4/c-bs-a.m4: New file.
60484         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
60485         (jm_PREREQ): Use it.
60486
60487 2000-01-11  Paul Eggert  <eggert@twinsun.com>
60488
60489         * m4/uintmax_t.m4: Port to autoconf 2.13.
60490
60491 2000-01-08  Jim Meyering  <meyering@ascend.com>
60492
60493         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
60494         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
60495
60496 2000-01-04  Jim Meyering  <meyering@ascend.com>
60497
60498         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
60499         jm_STRUCT_DIRENT_D_TYPE.
60500         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
60501         jm_STRUCT_DIRENT_D_INO.
60502         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
60503         jm_STRUCT_UTIMBUF.
60504         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
60505         renamings.
60506         * m4/utime.m4: Likewise.
60507
60508         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
60509         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
60510
60511 2000-01-03  Paul Eggert  <eggert@twinsun.com>
60512
60513         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
60514         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
60515
60516 2000-01-02  Jim Meyering  <meyering@ascend.com>
60517
60518         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
60519         remember if this is necessary.
60520
60521 1999-12-26  Jim Meyering  <meyering@ascend.com>
60522
60523         * m4/jm-macros.m4: Use it here.
60524         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
60525
60526 1999-12-23  Jim Meyering  <meyering@ascend.com>
60527
60528         * m4/jm-macros.m4: Check for clock_gettime (moved from
60529         fileutils/configure.in)
60530         Check for gettimeofday.
60531
60532 1999-12-20  Jim Meyering  <meyering@ascend.com>
60533
60534         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
60535         autoconf-2.14a-1999-12-20.
60536
60537 1999-12-19  Jim Meyering  <meyering@ascend.com>
60538
60539         * m4/lstat-slash.m4: New file.
60540         * m4/jm-macros.m4: Use the new macro:
60541         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
60542
60543 1999-12-07  Jim Meyering  <meyering@ascend.com>
60544
60545         * m4/perl.m4: Require that File::Compare be available, too.
60546         Too many systems seem to lack it.
60547
60548         * m4/strftime.m4: Add checks for most of the cpp macros tested in
60549         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
60550
60551 1999-11-18  Paul Eggert  <eggert@twinsun.com>
60552
60553         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
60554         problem with the QNX 4.25 shell, which doesn't propagate exit
60555         status of failed commands inside shell assignments.
60556
60557 1999-11-17  Jim Meyering  <meyering@ascend.com>
60558
60559         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
60560
60561 1999-11-07  Jim Meyering  <meyering@ascend.com>
60562
60563         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
60564
60565 1999-11-06  Jim Meyering  <meyering@ascend.com>
60566
60567         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
60568         * m4/jm-macros.m4 (jm_MACROS): Use it here.
60569
60570 1999-11-05  Jim Meyering  <meyering@ascend.com>
60571
60572         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
60573         configure.in of textutils, fileutils, and sh-utils into this one
60574         (shared between those packages) file.
60575         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
60576         AC_STRUCT_ST_BLKSIZE.
60577
60578 1999-11-03  Jim Meyering  <meyering@ascend.com>
60579
60580         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
60581         of AC_CHECK_TYPE checks includes unistd.h.
60582         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
60583         Suggestion from Akim Demaille.
60584
60585 1999-10-30  Jim Meyering  <meyering@ascend.com>
60586
60587         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
60588         m4-quoted string.
60589         * m4/ls-mntd-fs.m4: Likewise.
60590         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
60591         * m4/jm-winsz1.m4: Likewise.
60592
60593         * m4/const.m4: Remove file, since the fix made it into the experimental
60594         version of autoconf.
60595         * m4/mktime.m4: Likewise.
60596
60597         * m4/check-type.m4: Remove file, now that the latest version of
60598         AC_CHECK_TYPE takes a third arg to specify additional #includes.
60599
60600         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
60601         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
60602         AC_CHECK_TYPE.
60603
60604 1999-10-04  Jim Meyering  <meyering@ascend.com>
60605
60606         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
60607
60608 1999-09-22  Paul Eggert  <eggert@twinsun.com>
60609
60610         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
60611         2.95.1 bug with HP-UX 10.20.
60612
60613 1999-09-17  Jim Meyering  <meyering@ascend.com>
60614
60615         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
60616         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
60617         due to missing strdup (against sh-utils-2.0).
60618
60619 1999-08-29  Jim Meyering  <meyering@ascend.com>
60620
60621         * m4/jm-macros.m4: Require jm_BISON.
60622         * m4/bison.m4: New file.
60623
60624 1999-08-17  Paul Eggert  <eggert@twinsun.com>
60625
60626         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
60627         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
60628
60629 1999-08-05  Jim Meyering  <meyering@ascend.com>
60630
60631         * m4/getline.m4: Rename test file from conftestdata to conftest.data
60632         to avoid conflicts with `conftest' on 8+3 filesystems.
60633         Suggestion from Eli Zaretskii.
60634
60635 1999-08-04  Jim Meyering  <meyering@ascend.com>
60636
60637         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
60638         fileutils and sh-utils (textutils's getline test was inadequate).
60639         (AM_FUNC_GETLINE): Run this test.
60640         (AC_CHECK_FUNCS): Check for getdelim.
60641         Reported by Bob Proulx.
60642
60643 1999-08-02  Jim Meyering  <meyering@ascend.com>
60644
60645         * m4/jm-macros.m4: Add a comment.
60646
60647 1999-08-01  Paul Eggert  <eggert@twinsun.com>
60648
60649         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
60650         <inttypes.h> defines strtoumax as a macro (and not as a
60651         function).
60652
60653 1999-08-01  Paul Eggert  <eggert@twinsun.com>
60654
60655         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
60656         that we can shift, multiply and divide unsigned long long
60657         values; Ultrix cc can't do it.
60658
60659 1999-08-01  Paul Eggert  <eggert@twinsun.com>
60660
60661         * m4/mktime.m4: New file, which is a preview of what should appear
60662         in the next public autoconf release.
60663
60664 1999-08-01  Paul Eggert  <eggert@twinsun.com>
60665
60666         * m4/lfs.m4: Remove this file.
60667         * m4/largefile.m4: New file.  It contains the old contents of
60668         lfs.m4, except that all names with prefix AC_LFS have been
60669         changed to use the prefix AC_SYS_LARGEFILE instead, to be
60670         compatible with future autoconf versions.  Also, some minor m4
60671         quoting problems have been fixed.
60672
60673 1999-08-01  Paul Eggert  <eggert@twinsun.com>
60674
60675         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
60676         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
60677         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
60678         and simplify the shell code.
60679
60680 1999-08-01  Jim Meyering  <meyering@ascend.com>
60681
60682         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
60683         m4.
60684
60685 1999-07-20  Jim Meyering  <meyering@ascend.com>
60686
60687         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
60688
60689 1999-07-15  Jim Meyering  <meyering@ascend.com>
60690
60691         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
60692
60693 1999-05-22  Jim Meyering  <meyering@ascend.com>
60694
60695         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
60696
60697 1999-05-20  Jim Meyering  <meyering@ascend.com>
60698
60699         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
60700         Add a colon after each `then' in case $4 is empty.
60701
60702 1999-05-16  Jim Meyering  <meyering@ascend.com>
60703
60704         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
60705
60706 1999-05-10  Jim Meyering  <meyering@ascend.com>
60707
60708         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
60709
60710         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
60711         AC_FUNC_MKTIME.
60712
60713 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
60714
60715         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
60716
60717 1999-05-04  Paul Eggert  <eggert@twinsun.com>
60718
60719         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
60720         not CPPFLAGS, so that linking works correctly in IRIX.
60721
60722 1999-04-30  Paul Eggert  <eggert@twinsun.com>
60723
60724         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
60725
60726 1999-04-20  Paul Eggert  <eggert@twinsun.com>
60727
60728         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
60729         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
60730         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
60731         jm_AC_TYPE_UNSIGNED_LONG_LONG.
60732         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
60733
60734         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
60735
60736 1999-04-20  Jim Meyering  <meyering@ascend.com>
60737
60738         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
60739         AC_REPLACE xstroull if necessary.  From Paul Eggert.
60740         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
60741
60742 1999-04-18  Jim Meyering  <meyering@ascend.com>
60743
60744         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
60745         * m4/jm-macros.m4: Use it.
60746
60747 1999-04-06  Jim Meyering  <meyering@ascend.com>
60748
60749         * m4/strftime.m4: Remove test for %f.
60750
60751 1999-03-29  Jim Meyering  <meyering@ascend.com>
60752
60753         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
60754         superset of the AC_TYPE_* checks in the textutils, fileutils,
60755         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
60756         AC_TYPE_PID_T.
60757
60758 1999-03-28  Jim Meyering  <meyering@ascend.com>
60759
60760         * m4/jm-macros.m4: Define GNU_PACKAGE here.
60761         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
60762         replaced e.g., in the *.sh files of the sh-utils.
60763
60764 1999-03-20  Jim Meyering  <meyering@ascend.com>
60765
60766         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
60767         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
60768         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
60769
60770 1999-03-19  Jim Meyering  <meyering@ascend.com>
60771
60772         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
60773
60774 1999-03-12  Jim Meyering  <meyering@ascend.com>
60775
60776         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
60777
60778 1999-03-07  Jim Meyering  <meyering@ascend.com>
60779
60780         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
60781         declared.
60782
60783 1999-02-17  Jim Meyering  <meyering@ascend.com>
60784
60785         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
60786         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
60787
60788 1999-02-07  Jim Meyering  <meyering@ascend.com>
60789
60790         * m4/group-member.m4: New file -- extracted from sh-utils'
60791         configure.in.
60792
60793         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
60794         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
60795
60796 1999-02-06  Jim Meyering  <meyering@ascend.com>
60797
60798         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
60799         * m4/fnmatch.m4: Likewise.
60800         * m4/getgroups.m4: Likewise.
60801         * m4/lstat.m4: Likewise.
60802         * m4/malloc.m4: Likewise.
60803         * m4/putenv.m4: Likewise.
60804         * m4/realloc.m4: Likewise.
60805         * m4/regex.m4: Likewise.
60806         * m4/stat.m4: Likewise.
60807         * m4/strftime.m4: Likewise.
60808         Suggestion from Alain Magloire.
60809
60810         * m4/chown.m4: Use `.$ac_objext', not `.o'.
60811         * m4/fnmatch.m4: Likewise.
60812         * m4/getgroups.m4: Likewise.
60813         * m4/getline.m4: Likewise.
60814         * m4/lstat.m4: Likewise.
60815         * m4/malloc.m4: Likewise.
60816         * m4/memcmp.m4: Likewise.
60817         * m4/putenv.m4: Likewise.
60818         * m4/realloc.m4: Likewise.
60819         * m4/regex.m4: Likewise.
60820         * m4/stat.m4: Likewise.
60821         * m4/strftime.m4: Likewise.
60822         Suggestion from Alain Magloire.
60823
60824         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
60825         an argument.
60826
60827         * m4/regex.m4: Add a run-time Test for proper operation of
60828         re_compile_pattern.
60829
60830 1999-01-31  Jim Meyering  <meyering@ascend.com>
60831
60832         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
60833
60834 1999-01-30  Jim Meyering  <meyering@ascend.com>
60835
60836         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
60837
60838         * m4/jm-mktime.m4: Make this a wrapper around the official
60839         AM_FUNC_MKTIME rather than my private copy, now that the official one
60840         is up to date.
60841         * m4/mktime.m4: Remove file.
60842
60843         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
60844         * m4/uptime.m4: Likewise.
60845         * m4/uintmax_t.m4: Likewise.
60846
60847 1999-01-28  Jim Meyering  <meyering@ascend.com>
60848
60849         * m4/jm-macros.m4: Use jm_AFS.
60850         * m4/afs.m4: New file (from fileutils' configure.in).
60851
60852         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
60853         * m4/chown.m4: Likewise.
60854         * m4/d-ino.m4: Likewise.
60855         * m4/d-type.m4: Likewise.
60856         * m4/fnmatch.m4: Likewise.
60857         * m4/getgroups.m4: Likewise.
60858         * m4/gettext.m4: Likewise.
60859         * m4/jm-mktime.m4: Likewise.
60860         * m4/jm-winsz2.m4: Likewise.
60861         * m4/lcmessage.m4: Likewise.
60862         * m4/ls-mntd-fs.m4: Likewise.
60863         * m4/malloc.m4: Likewise.
60864         * m4/memcmp.m4: Likewise.
60865         * m4/putenv.m4: Likewise.
60866         * m4/realloc.m4: Likewise.
60867         * m4/st_mtim.m4: Likewise.
60868         * m4/strftime.m4: Likewise.
60869
60870 1999-01-16  Jim Meyering  <meyering@ascend.com>
60871
60872         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
60873         (ARGMATCH_DIE_DECL): Define.
60874
60875 1999-01-12  Jim Meyering  <meyering@ascend.com>
60876
60877         * m4/Makefile.am.in: Rewrite to avoid using fmt.
60878         Reported by Lars Hecking.
60879
60880 1999-01-10  Jim Meyering  <meyering@ascend.com>
60881
60882         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
60883         gross kludge.
60884         * m4/inttypes_h.m4: Likewise.
60885         * m4/lstat.m4: Likewise.
60886         * m4/malloc.m4: Likewise.
60887         * m4/readdir.m4: Likewise.
60888         * m4/realloc.m4: Likewise.
60889         * m4/st_dm_mode.m4: Likewise.
60890         * m4/stat.m4: Likewise.
60891         * m4/utimbuf.m4: Likewise.
60892         * m4/utimes.m4: Likewise.
60893
60894         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
60895         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
60896         comments in config.h.in are meaningful.
60897
60898         * m4/jm-macros.m4: Require autoconf-2.13 here.
60899
60900         * m4/regex.m4: By default, don't use the included regex.c on systems
60901         with glibc 2.  Suggestion from Uli Drepper.
60902
60903 1999-01-02  Jim Meyering  <meyering@ascend.com>
60904
60905         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
60906
60907 1998-12-18  Jim Meyering  <meyering@ascend.com>
60908
60909         * m4/Makefile.am.in (Makefile.am): Simplify rule.
60910         Based on a suggestion from Lars Hecking.
60911
60912 1998-11-16  Paul Eggert  <eggert@twinsun.com>
60913
60914         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
60915
60916 1998-11-16  Jim Meyering  <meyering@ascend.com>
60917
60918         * m4/lfs.m4: Double-quote the `uname...` expression.
60919
60920 1998-11-14  Jim Meyering  <meyering@ascend.com>
60921
60922         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
60923         * m4/stat.m4: Likewise.
60924
60925 1998-11-03  Jim Meyering  <meyering@ascend.com>
60926
60927         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
60928         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
60929
60930 1998-10-18  Jim Meyering  <meyering@ascend.com>
60931
60932         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
60933
60934 1998-10-17  Jim Meyering  <meyering@ascend.com>
60935
60936         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
60937         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
60938         calls for those previously hard-coded headers.  Instead, take a new
60939         parameter.
60940         (jm_CHECK_DECLARATIONS): Reflect interface change.
60941         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
60942         (jm_CHECK_DECL_LOCALTIME_R): New macro.
60943
60944         * m4/mktime.m4: Test for spring-forward gap before long-running test.
60945
60946 1998-10-14  Jim Meyering  <meyering@ascend.com>
60947
60948         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
60949         instead of "TZ=America/Vancouver".  From Paul Eggert.
60950
60951 1998-10-11  Jim Meyering  <meyering@ascend.com>
60952
60953         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
60954         This adds a test for a recently added compatibility fix for mktime.c.
60955         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
60956
60957 1998-09-27  Jim Meyering  <meyering@ascend.com>
60958
60959         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
60960
60961         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
60962         ../configure.in, including a change from Gordon Matzigkeit to allow
60963         cross-compiling for the Hurd.
60964
60965         * m4/glibc.m4: New file/macro to test for the GNU C Library
60966         versions 1 and 2.  From Gordon Matzigkeit.
60967         Indent.
60968
60969 1998-09-21  Jim Meyering  <meyering@ascend.com>
60970
60971         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
60972
60973 1998-08-18  Paul Eggert  <eggert@twinsun.com>
60974
60975         Port nanosecond-resolution times to UnixWare 2.1.2 and
60976         pedantic Solaris 2.6.
60977
60978         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
60979         AC_STRUCT_ST_MTIM.
60980         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
60981         Generate name of ns member, instead of just 1 or undef.
60982         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
60983
60984 1998-08-15  Jim Meyering  <meyering@ascend.com>
60985
60986         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
60987         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
60988         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
60989         instead of jm_TYPE_SSIZE_T.
60990
60991 1998-08-12  Jim Meyering  <meyering@ascend.com>
60992
60993         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
60994
60995 1998-08-02  Jim Meyering  <meyering@ascend.com>
60996
60997         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
60998         in acconfig.h manually.
60999
61000 1998-07-31  Paul Eggert  <eggert@twinsun.com>
61001
61002         * m4/st_mtim.m4: New file.
61003
61004 1998-07-28  Jim Meyering  <meyering@ascend.com>
61005
61006         * m4/utimes.m4: Undef stat.
61007
61008 1998-07-25  Jim Meyering  <meyering@ascend.com>
61009
61010         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
61011         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
61012
61013 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
61014
61015         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
61016         uid and gid actually remain unchanged.
61017
61018 1998-07-07  Jim Meyering  <meyering@ascend.com>
61019
61020         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
61021
61022 1998-07-04  Jim Meyering  <meyering@ascend.com>
61023
61024         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
61025         to prove that this macro can be used in packages without regex.c.
61026
61027 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
61028
61029         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
61030         is to be used.
61031
61032 1998-07-03  Jim Meyering  <meyering@ascend.com>
61033
61034         * m4/gettext.m4: Add -lintl if it's found to be necessary.
61035
61036         * m4/gettext.m4: New file -- from gettext-0.10.35.
61037         * m4/lcmessage.m4: Likewise.
61038         * m4/progtest.m4: Likewise.
61039
61040         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
61041         * m4/jm-macros.m4: Require the new macro.
61042
61043 1998-06-29  Jim Meyering  <meyering@ascend.com>
61044
61045         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
61046         for the definition of NGROUPS (used in a system header included
61047         by sys/mount.h).
61048
61049 1998-06-28  Jim Meyering  <meyering@ascend.com>
61050
61051         * m4/ls-mntd-fs.m4: New file.
61052         * m4/fstypename.m4: New file.
61053
61054         * m4/jm-macros.m4: Require the new macro.
61055         * m4/jm-glibc-io.m4: New file.
61056
61057 1998-05-19  Jim Meyering  <meyering@ascend.com>
61058
61059         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
61060         * m4/lchown.m4: New file.
61061
61062         * m4/Makefile.am.in: New file.
61063         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
61064
61065 1998-05-14  Jim Meyering  <meyering@ascend.com>
61066
61067         * m4/Makefile.am (EXTRA_DIST): Add them.
61068         * m4/jm-macros.m4: New file.
61069         * m4/utimbuf.m4: New file.
61070
61071 1998-05-12  Jim Meyering  <meyering@ascend.com>
61072
61073         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
61074
61075 1998-05-11  Jim Meyering  <meyering@ascend.com>
61076
61077         * m4/isc-posix.m4: New file.
61078
61079 1998-05-10  Jim Meyering  <meyering@ascend.com>
61080
61081         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
61082
61083 1998-05-09  Jim Meyering  <meyering@ascend.com>
61084
61085         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
61086         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
61087         with automake.
61088
61089         * m4/ssize_t.m4: New file.
61090         * m4/mktime.m4: Remove file -- the new automake has this now.
61091
61092 1998-04-26  Jim Meyering  <meyering@ascend.com>
61093
61094         * m4/assert.m4: New file.
61095         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
61096
61097 1998-04-05  Jim Meyering  <meyering@ascend.com>
61098
61099         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
61100         (jm_PREREQ): Use it here.
61101
61102 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
61103
61104         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
61105         in acconfig.h.
61106
61107 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
61108
61109         * m4/prereq.m4: New file.
61110         * m4/error.m4: New file.
61111         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
61112
61113 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
61114
61115         * m4/getline.m4: Don't set am_cv_func_working_getline before the
61116         cache-check for the same variable -- that defeated the purpose of
61117         the test; the test program was never run.  This was a problem only
61118         on systems with losing getline functions -- HP-UX 10.20 is one.
61119         Reported by Bjorn Helgaas.
61120
61121 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
61122
61123         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
61124
61125 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
61126
61127         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
61128
61129         * m4/const.m4: New file.  Use an initializer in this declaration
61130         typedef int charset[2]; const charset x;
61131         Reported by Bob Glickstein.
61132
61133 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
61134
61135         * m4/chown.m4: Fix reversed types on -1 args to chown.
61136         From Kaveh Ghazi.
61137
61138 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
61139
61140         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
61141         Add lseek and memchr.
61142
61143         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
61144         T.E.Dickey <dickey@clark.net> said that some older preprocessors
61145         have a 20-character limit on names.
61146
61147 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
61148
61149         * m4/inttypes_h.m4: New file.
61150         * m4/uintmax_t.m4: New file.
61151         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
61152
61153
61154         -----
61155
61156         Local Variables:
61157         coding: utf-8
61158         End:
61159
61160         Copyright (C) 1997-2010 Free Software Foundation, Inc.
61161
61162         Copying and distribution of this file, with or without
61163         modification, are permitted provided the copyright notice
61164         and this notice are preserved.