10f07bc2b591312900cf5b785050a1725cd7a0ad
[gnulib.git] / ChangeLog
1 2009-01-16  Jim Meyering  <meyering@redhat.com>
2
3         strerror: avoid warnings about discarding "const"
4         * lib/strerror.c (rpl_strerror): Instead of returning a const
5         string from each and every "case", use a variable, and add a single
6         cast after the switch.
7
8 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
9
10         * lib/arpa_inet.in.h: Add extern "C" block for C++.
11
12 2009-01-16  Bruno Haible  <bruno@clisp.org>
13
14         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
15         array initializer syntax that also works in C++ mode.
16         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17
18 2009-01-16  Jim Meyering  <meyering@redhat.com>
19
20         poll: suppress a warning
21         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
22         to ignore "...unsigned expression < 0 is always false" warnings.
23
24 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
25
26         poll: remove declarations of unused variables
27         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
28         sockbuf and optlen.
29
30 2009-01-15  Bruno Haible  <bruno@clisp.org>
31
32         Make fflush-after-ungetc POSIX compliant on BSD systems.
33         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
34         (clear_ungetc_buffer): Implement also for other systems.
35         (rpl_fflush): On glibc systems, invoke
36         clear_ungetc_buffer_preserving_position. Otherwise, invoke
37         clear_ungetc_buffer after fetching the stream's position, not before.
38
39 2009-01-15  Bruno Haible  <bruno@clisp.org>
40
41         Make fflush-after-ungetc POSIX compliant on glibc systems.
42         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
43         after ungetc.
44         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
45         (rpl_fflush): On glibc systems, simply call the system's fflush
46         function after clearing the ungetc buffer.
47         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
48         Instead, lseek only to the end of file, then use the system's fseeko
49         for the rest. On glibc systems, reset the EOF indicator bit.
50
51 2009-01-15  Jim Meyering  <meyering@redhat.com>
52
53         openmp.m4: revert quote-adding change, for portability to older autoconf
54         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
55         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
56         Simon Josefsson noticed the problem when using autoconf-2.61.
57
58 2009-01-15  Bruno Haible  <bruno@clisp.org>
59
60         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
61         * tests/test-fflush2.c (ASSERT): Always fail.
62         (main): Add two tests for fflush() after ungetc(), taking into account
63         the Austin Group's clarification.
64         Suggested by Eric Blake.
65
66 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
67
68         mktime.m4: remove K&R-style function prototypes
69         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
70         for the Sun C++ compiler.
71
72 2009-01-14  Bruno Haible  <bruno@clisp.org>
73
74         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
75         while including <wchar.h>.
76         * lib/wchar.in.h: In two particular situations on HP-UX, include only
77         the system's <wchar.h> file.
78         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
79
80 2009-01-14  Bruno Haible  <bruno@clisp.org>
81
82         * m4/csharp.m4: Don't mention gettext on the serial number line.
83         * m4/csharpexec.m4: Likewise.
84         * m4/eaccess.m4: Likewise.
85         * m4/javaexec.m4: Likewise.
86         * m4/sig_atomic_t.m4: Likewise.
87         * m4/tmpdir.m4: Likewise.
88         * m4/intldir.m4: Bump gettext version.
89         * m4/lib-ld.m4: Likewise.
90
91 2009-01-14  Bruno Haible  <bruno@clisp.org>
92
93         * lib/progname.c (set_program_name): Add more comments.
94         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
95
96 2009-01-14  Simon Josefsson  <simon@josefsson.org>
97
98         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
99         were sys/stat.h does not define it.
100
101 2009-01-14  Jim Meyering  <meyering@redhat.com>
102
103         many *.m4 files: improve m4 quoting
104         99% of this change was performed by running the following commands:
105         git ls-files | grep '\.m4$' | xargs perl -pi \
106           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
107           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
108           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
109           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
110         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
111         The remainder were to add Copyright dates, increment serial numbers,
112         undo some changes in comments, exclude m4/intl.m4, and add quotes
113         around the "1" in ",1" where the unusual spacing prohibited the
114         above regexps from doing the job.  For more details, see
115         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
116         * m4/acl.m4: Modified.
117         * m4/afs.m4: Likewise.
118         * m4/alloca.m4: Likewise.
119         * m4/argp.m4: Likewise.
120         * m4/argz.m4: Likewise.
121         * m4/atexit.m4: Likewise.
122         * m4/bison-i18n.m4: Likewise.
123         * m4/bison.m4: Likewise.
124         * m4/byteswap.m4: Likewise.
125         * m4/c-stack.m4: Likewise.
126         * m4/c-strtod.m4: Likewise.
127         * m4/calloc.m4: Likewise.
128         * m4/canonicalize-lgpl.m4: Likewise.
129         * m4/chown.m4: Likewise.
130         * m4/clock_time.m4: Likewise.
131         * m4/codeset.m4: Likewise.
132         * m4/copy-file.m4: Likewise.
133         * m4/csharp.m4: Likewise.
134         * m4/csharpcomp.m4: Likewise.
135         * m4/csharpexec.m4: Likewise.
136         * m4/d-ino.m4: Likewise.
137         * m4/d-type.m4: Likewise.
138         * m4/dirfd.m4: Likewise.
139         * m4/double-slash-root.m4: Likewise.
140         * m4/eaccess.m4: Likewise.
141         * m4/eealloc.m4: Likewise.
142         * m4/environ.m4: Likewise.
143         * m4/errno_h.m4: Likewise.
144         * m4/euidaccess.m4: Likewise.
145         * m4/execute.m4: Likewise.
146         * m4/fatal-signal.m4: Likewise.
147         * m4/fchdir.m4: Likewise.
148         * m4/fcntl_h.m4: Likewise.
149         * m4/fileblocks.m4: Likewise.
150         * m4/filenamecat.m4: Likewise.
151         * m4/findprog.m4: Likewise.
152         * m4/flexmember.m4: Likewise.
153         * m4/fnmatch.m4: Likewise.
154         * m4/fopen.m4: Likewise.
155         * m4/fpending.m4: Likewise.
156         * m4/fprintf-posix.m4: Likewise.
157         * m4/free.m4: Likewise.
158         * m4/frexp.m4: Likewise.
159         * m4/frexpl.m4: Likewise.
160         * m4/fsusage.m4: Likewise.
161         * m4/ftruncate.m4: Likewise.
162         * m4/gc-camellia.m4: Likewise.
163         * m4/gc-random.m4: Likewise.
164         * m4/gc.m4: Likewise.
165         * m4/getaddrinfo.m4: Likewise.
166         * m4/getcwd-abort-bug.m4: Likewise.
167         * m4/getcwd-path-max.m4: Likewise.
168         * m4/getdate.m4: Likewise.
169         * m4/getdomainname.m4: Likewise.
170         * m4/getgroups.m4: Likewise.
171         * m4/gethostname.m4: Likewise.
172         * m4/gethrxtime.m4: Likewise.
173         * m4/getline.m4: Likewise.
174         * m4/getloadavg.m4: Likewise.
175         * m4/getndelim2.m4: Likewise.
176         * m4/getpass.m4: Likewise.
177         * m4/gettext.m4: Likewise.
178         * m4/gettime.m4: Likewise.
179         * m4/gettimeofday.m4: Likewise.
180         * m4/gnulib-common.m4: Likewise.
181         * m4/group-member.m4: Likewise.
182         * m4/host-os.m4: Likewise.
183         * m4/iconv.m4: Likewise.
184         * m4/iconv_open.m4: Likewise.
185         * m4/inet_ntop.m4: Likewise.
186         * m4/inet_pton.m4: Likewise.
187         * m4/inline.m4: Likewise.
188         * m4/intldir.m4: Likewise.
189         * m4/intlmacosx.m4: Likewise.
190         * m4/intmax.m4: Likewise.
191         * m4/intmax_t.m4: Likewise.
192         * m4/inttypes.m4: Likewise.
193         * m4/inttypes_h.m4: Likewise.
194         * m4/inttypes-pri.m4: Likewise.
195         * m4/isapipe.m4: Likewise.
196         * m4/isnand.m4: Likewise.
197         * m4/isnanf.m4: Likewise.
198         * m4/isnanl.m4: Likewise.
199         * m4/javacomp.m4: Likewise.
200         * m4/javaexec.m4: Likewise.
201         * m4/jm-winsz1.m4: Likewise.
202         * m4/jm-winsz2.m4: Likewise.
203         * m4/lchown.m4: Likewise.
204         * m4/lcmessage.m4: Likewise.
205         * m4/ldexpl.m4: Likewise.
206         * m4/lib-ld.m4: Likewise.
207         * m4/lib-link.m4: Likewise.
208         * m4/libsigsegv.m4: Likewise.
209         * m4/link-follow.m4: Likewise.
210         * m4/localcharset.m4: Likewise.
211         * m4/locale-fr.m4: Likewise.
212         * m4/locale-ja.m4: Likewise.
213         * m4/locale-tr.m4: Likewise.
214         * m4/locale-zh.m4: Likewise.
215         * m4/lock.m4: Likewise.
216         * m4/longlong.m4: Likewise.
217         * m4/ls-mntd-fs.m4: Likewise.
218         * m4/lstat.m4: Likewise.
219         * m4/malloc.m4: Likewise.
220         * m4/mathl.m4: Likewise.
221         * m4/mbrtowc.m4: Likewise.
222         * m4/mbstate_t.m4: Likewise.
223         * m4/mbswidth.m4: Likewise.
224         * m4/memchr.m4: Likewise.
225         * m4/memcmp.m4: Likewise.
226         * m4/memcpy.m4: Likewise.
227         * m4/memmem.m4: Likewise.
228         * m4/memmove.m4: Likewise.
229         * m4/mempcpy.m4: Likewise.
230         * m4/memrchr.m4: Likewise.
231         * m4/memset.m4: Likewise.
232         * m4/minmax.m4: Likewise.
233         * m4/mkdir-slash.m4: Likewise.
234         * m4/mkdtemp.m4: Likewise.
235         * m4/mktime.m4: Likewise.
236         * m4/mmap-anon.m4: Likewise.
237         * m4/mountlist.m4: Likewise.
238         * m4/nanosleep.m4: Likewise.
239         * m4/nls.m4: Likewise.
240         * m4/nocrash.m4: Likewise.
241         * m4/open.m4: Likewise.
242         * m4/openat.m4: Likewise.
243         * m4/openmp.m4: Likewise.
244         * m4/pathmax.m4: Likewise.
245         * m4/perl.m4: Likewise.
246         * m4/physmem.m4: Likewise.
247         * m4/pipe.m4: Likewise.
248         * m4/po.m4: Likewise.
249         * m4/poll.m4: Likewise.
250         * m4/posixtm.m4: Likewise.
251         * m4/posixver.m4: Likewise.
252         * m4/printf-frexp.m4: Likewise.
253         * m4/printf-frexpl.m4: Likewise.
254         * m4/printf-posix.m4: Likewise.
255         * m4/printf-posix-rpl.m4: Likewise.
256         * m4/printf.m4: Likewise.
257         * m4/progtest.m4: Likewise.
258         * m4/putenv.m4: Likewise.
259         * m4/readline.m4: Likewise.
260         * m4/readlink.m4: Likewise.
261         * m4/readutmp.m4: Likewise.
262         * m4/realloc.m4: Likewise.
263         * m4/regex.m4: Likewise.
264         * m4/relocatable.m4: Likewise.
265         * m4/relocatable-lib.m4: Likewise.
266         * m4/rename-dest-slash.m4: Likewise.
267         * m4/rename.m4: Likewise.
268         * m4/rmdir-errno.m4: Likewise.
269         * m4/rmdir.m4: Likewise.
270         * m4/roundf.m4: Likewise.
271         * m4/roundl.m4: Likewise.
272         * m4/rpmatch.m4: Likewise.
273         * m4/save-cwd.m4: Likewise.
274         * m4/selinux-selinux-h.m4: Likewise.
275         * m4/setenv.m4: Likewise.
276         * m4/settime.m4: Likewise.
277         * m4/sig2str.m4: Likewise.
278         * m4/sig_atomic_t.m4: Likewise.
279         * m4/signalblocking.m4: Likewise.
280         * m4/signbit.m4: Likewise.
281         * m4/sigpipe.m4: Likewise.
282         * m4/sockets.m4: Likewise.
283         * m4/sockpfaf.m4: Likewise.
284         * m4/st_dm_mode.m4: Likewise.
285         * m4/stat-time.m4: Likewise.
286         * m4/stdbool.m4: Likewise.
287         * m4/stdint.m4: Likewise.
288         * m4/stdint_h.m4: Likewise.
289         * m4/stpcpy.m4: Likewise.
290         * m4/stpncpy.m4: Likewise.
291         * m4/strcase.m4: Likewise.
292         * m4/strchrnul.m4: Likewise.
293         * m4/strcspn.m4: Likewise.
294         * m4/strdup.m4: Likewise.
295         * m4/strftime.m4: Likewise.
296         * m4/strndup.m4: Likewise.
297         * m4/strnlen.m4: Likewise.
298         * m4/strpbrk.m4: Likewise.
299         * m4/strptime.m4: Likewise.
300         * m4/strsep.m4: Likewise.
301         * m4/strtod.m4: Likewise.
302         * m4/strtoimax.m4: Likewise.
303         * m4/strtok_r.m4: Likewise.
304         * m4/strtol.m4: Likewise.
305         * m4/strtoll.m4: Likewise.
306         * m4/strtoul.m4: Likewise.
307         * m4/strtoull.m4: Likewise.
308         * m4/strtoumax.m4: Likewise.
309         * m4/strverscmp.m4: Likewise.
310         * m4/threadlib.m4: Likewise.
311         * m4/timegm.m4: Likewise.
312         * m4/tm_gmtoff.m4: Likewise.
313         * m4/tmpdir.m4: Likewise.
314         * m4/tmpfile.m4: Likewise.
315         * m4/tzset.m4: Likewise.
316         * m4/uintmax_t.m4: Likewise.
317         * m4/unlinkdir.m4: Likewise.
318         * m4/unlocked-io.m4: Likewise.
319         * m4/uptime.m4: Likewise.
320         * m4/userspec.m4: Likewise.
321         * m4/utimbuf.m4: Likewise.
322         * m4/utime.m4: Likewise.
323         * m4/utimes-null.m4: Likewise.
324         * m4/utimes.m4: Likewise.
325         * m4/vararrays.m4: Likewise.
326         * m4/vasnprintf.m4: Likewise.
327         * m4/vfprintf-posix.m4: Likewise.
328         * m4/vprintf-posix.m4: Likewise.
329         * m4/wait-process.m4: Likewise.
330         * m4/wchar_t.m4: Likewise.
331         * m4/wint_t.m4: Likewise.
332         * m4/write-any-file.m4: Likewise.
333         * m4/yield.m4: Likewise.
334
335 2009-01-13  Bruno Haible  <bruno@clisp.org>
336
337         Avoid test-copy-file.sh failures when ACL support insufficient.
338         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
339         TESTS_ENVIRONMENT.
340         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
341         Reported by Jim Meyering.
342
343 2009-01-13  Bruno Haible  <bruno@clisp.org>
344
345         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
346         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
347         * modules/unistdio/u8-printf-parse (Files): Likewise.
348         * modules/unistdio/u32-printf-parse (Files): Likewise.
349         * modules/unistdio/ulc-printf-parse (Files): Likewise.
350
351 2009-01-13  Simon Josefsson  <simon@josefsson.org>
352
353         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
354         and m4/inttypes_h.m4 too.
355
356 2009-01-12  Eric Blake  <ebb9@byu.net>
357
358         tests: IRIX 6.2 cc can't compile -0.0 into .data
359         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
360         rather than at compile-time.
361         * tests/test-floorl.c (minus_zero): Likewise.
362         * tests/test-frexpl.c (minus_zero): Likewise.
363         * tests/test-isnan.c (minus_zerol): Likewise.
364         * tests/test-isnanl.h (minus_zero): Likewise.
365         * tests/test-ldexpl.c (minus_zero): Likewise.
366         * tests/test-roundl.c (minus_zero): Likewise.
367         * tests/test-signbit.c (minus_zerol): Likewise.
368         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
369         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
370         * tests/test-truncl.c (minus_zero): Likewise.
371         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
372         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
373         Reported by Tom G. Christensen and Nelson H. F. Beebe.
374
375 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
376
377         regex: fix glibc bug 9697
378         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
379         handling.
380
381 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
382
383         regex: fix glibc bug 697
384         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
385         being NULL also if there are no backreferences.
386
387 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
388
389         regex: merge glibc changes
390         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
391         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
392         re_string_skip_chars, re_string_reconstruct): Likewise.
393         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
394
395 2009-01-07  Jim Meyering  <meyering@redhat.com>
396
397         poll: filter through cppi
398         * lib/poll.c: Indent cpp directives to reflect nesting.
399
400 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
401
402         poll: don't return uninitialized
403         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
404
405 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
406
407         avoid compile failure on AIX 6.1
408         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
409         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
410
411 2009-01-04  Jim Meyering  <meyering@redhat.com>
412
413         remove duplicate inclusion of <stdio.h>
414         * tests/test-fprintf-posix.c: Likewise.
415         * tests/test-printf-posix.c: Likewise.
416         * tests/test-snprintf-posix.c: Likewise.
417         * tests/test-sprintf-posix.c: Likewise.
418         * tests/test-vasprintf-posix.c: Likewise.
419         * tests/test-vfprintf-posix.c: Likewise.
420         * tests/test-vprintf-posix.c: Likewise.
421         * tests/test-vsnprintf-posix.c: Likewise.
422         * tests/test-vsprintf-posix.c: Likewise.
423
424 2009-01-03  Jim Meyering  <meyering@redhat.com>
425
426         gnulib-tool: fix sed-based filtering
427         * gnulib-tool (func_filter_filelist): Remove extra backslash
428         in sed_fff_filter definition.
429
430 2009-01-02  Jim Meyering  <meyering@redhat.com>
431
432         strftime: avoid compilation failure on Solaris 2.6
433         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
434         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
435         Don't #define mbrlen or mbsinit, since now they're guaranteed to
436         be available.  Reported by Tom G. Christensen.  Details in
437         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
438
439 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
440             Bruno Haible  <bruno@clisp.org>
441
442         Speed up gnulib-tool by doing more string processing through shell
443         built-ins.
444         * gnulib-tool (fast_func_append): New variable.
445         (func_remove_prefix, func_remove_suffix): New functions.
446         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
447         (func_filter_filelist): New function.
448         (func_get_dependencies): Use func_remove_suffix instead of sed.
449         (func_get_automake_snippet): Use func_filter_filelist instead of a
450         subshell and sed invocation.
451
452 2009-01-01  Bruno Haible  <bruno@clisp.org>
453
454         Fix a security bug.
455         * gnulib-tool (func_import, import, update): Don't allow the characters
456         '"', '$', '`', '\' in macro arguments that become part of commands that
457         are evaluated.
458
459 2009-01-01  Bruno Haible  <bruno@clisp.org>
460
461         * gnulib-tool (func_reset_sigpipe): Add more comments.
462
463 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
464
465         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
466         func_emit_tests_Makefile_am, func_import): Abort loops early if we
467         already know the answer.
468
469 2009-01-01  Jim Meyering  <meyering@redhat.com>
470
471         * lib/version-etc.c (version_etc_va): Update copyright year.
472
473 2008-12-30  Bruno Haible  <bruno@clisp.org>
474
475         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
476         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
477         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
478
479 2008-12-29  Eric Blake  <ebb9@byu.net>
480
481         multiarch: avoid autoconf AC_REQUIRE bug
482         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
483         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
484         2.63 and older.
485         Reported by Bruno Haible, and analyzed in
486         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
487
488 2008-12-29  Bruno Haible  <bruno@clisp.org>
489
490         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
491         files in subdirectories correctly.
492         Reported by Ralf Wildenhues.
493
494 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
495
496         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
497         rather than 'join FILE -', for Solaris join.
498
499 2008-12-29  Bruno Haible  <bruno@clisp.org>
500
501         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
502         quoting.
503         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
504         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
505         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
506         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
507         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
508         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
509         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
510         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
511         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
512         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
513         * m4/nls.m4 (AM_NLS): Likewise.
514         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
515         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
516         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
517         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
518         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
519         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
520         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
521         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
522         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
523         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
524         * m4/xsize.m4 (gl_XSIZE): Likewise.
525         Suggested by Jim Meyering.
526
527 2008-11-17  Bruce Korb  <bkorb@gnu.org>
528
529         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
530         * lib/parse-duration.c: use a switch instead of cascading if's.
531
532 2008-12-29  Eric Blake  <ebb9@byu.net>
533
534         wchar.h: supply WEOF on Irix 5.3
535         * lib/wchar.in.h (wint_t): Also supply WEOF.
536         * lib/wctype.in.h (wint_t): Likewise.
537         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
538         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
539         Reported by Tom G. Christensen.
540
541 2008-12-26  Bruno Haible  <bruno@clisp.org>
542
543         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
544         i486, i586, i686.
545
546 2008-12-26  Bruno Haible  <bruno@clisp.org>
547
548         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
549
550 2008-12-26  Bruno Haible  <bruno@clisp.org>
551
552         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
553         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
554         not __STDC_CONSTANT_MACROS.
555         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
556
557 2008-12-25  Bruno Haible  <bruno@clisp.org>
558
559         Add support for universal builds to vasnprintf.
560         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
561         universal builds, guess no.
562         * modules/vasnprintf-posix (Depends-on): Add multiarch.
563         * modules/vasprintf-posix (Depends-on): Likewise.
564         * modules/fprintf-posix (Depends-on): Likewise.
565         * modules/vfprintf-posix (Depends-on): Likewise.
566         * modules/snprintf-posix (Depends-on): Likewise.
567         * modules/vsnprintf-posix (Depends-on): Likewise.
568         * modules/sprintf-posix (Depends-on): Likewise.
569         * modules/vsprintf-posix (Depends-on): Likewise.
570         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
571         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
572         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
573         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
574         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
575         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
576         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
577
578         Add support for universal builds to <inttypes.h>.
579         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
580         _SCNu64_PREFIX): In Apple
581         universal builds, define directly, using _LP64.
582         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
583         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
584         * modules/inttypes (Depends-on): Add multiarch.
585         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
586
587         Add support for universal builds to <stdint.h>.
588         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
589         universal builds, define directly, using _LP64.
590         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
591         Apple universal builds, don't test for the size and suffix of ptrdiff_t
592         and size_t.
593         * modules/stdint (Depends-on): Add multiarch.
594         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
595
596         New module 'multiarch'.
597         * modules/multiarch: New file.
598         * m4/multiarch.m4: New file.
599
600 2008-12-25  Bruno Haible  <bruno@clisp.org>
601
602         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
603
604 2008-12-25  Bruno Haible  <bruno@clisp.org>
605
606         * modules/btowc (License): Relicense under LGPLv2+.
607         * modules/mbsinit (License): Likewise.
608         * modules/mbrtowc (License): Likewise.
609         * modules/wcrtomb (License): Likewise.
610         * modules/streq (License): Likewise.
611         Reported by David Lutterkort <lutter@redhat.com>.
612
613 2008-12-23  Bruno Haible  <bruno@clisp.org>
614
615         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
616
617 2008-12-23  Bruno Haible  <bruno@clisp.org>
618
619         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
620         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
621         GETADDRINFO_LIB, not in LIBS.
622         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
623         * modules/canon-host (Link): Likewise.
624         * NEWS: Mention the change.
625         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
626         GETADDRINFO_LIB.
627
628 2008-12-22  Bruno Haible  <bruno@clisp.org>
629
630         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
631         * doc/posix-functions/iswalpha_l.texi: Likewise.
632         * doc/posix-functions/iswblank_l.texi: Likewise.
633         * doc/posix-functions/iswcntrl_l.texi: Likewise.
634         * doc/posix-functions/iswctype_l.texi: Likewise.
635         * doc/posix-functions/iswdigit_l.texi: Likewise.
636         * doc/posix-functions/iswgraph_l.texi: Likewise.
637         * doc/posix-functions/iswlower_l.texi: Likewise.
638         * doc/posix-functions/iswprint_l.texi: Likewise.
639         * doc/posix-functions/iswpunct_l.texi: Likewise.
640         * doc/posix-functions/iswspace_l.texi: Likewise.
641         * doc/posix-functions/iswupper_l.texi: Likewise.
642         * doc/posix-functions/iswxdigit_l.texi: Likewise.
643         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
644         * doc/posix-functions/open_wmemstream.texi: Likewise.
645         * doc/posix-functions/swscanf.texi: Likewise.
646         * doc/posix-functions/towctrans_l.texi: Likewise.
647         * doc/posix-functions/towlower.texi: Likewise.
648         * doc/posix-functions/towlower_l.texi: Likewise.
649         * doc/posix-functions/towupper.texi: Likewise.
650         * doc/posix-functions/towupper_l.texi: Likewise.
651         * doc/posix-functions/vfwprintf.texi: Likewise.
652         * doc/posix-functions/vfwscanf.texi: Likewise.
653         * doc/posix-functions/vswscanf.texi: Likewise.
654         * doc/posix-functions/vwprintf.texi: Likewise.
655         * doc/posix-functions/vwscanf.texi: Likewise.
656         * doc/posix-functions/wcpcpy.texi: Likewise.
657         * doc/posix-functions/wcpncpy.texi: Likewise.
658         * doc/posix-functions/wcscasecmp.texi: Likewise.
659         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
660         * doc/posix-functions/wcscoll_l.texi: Likewise.
661         * doc/posix-functions/wcsdup.texi: Likewise.
662         * doc/posix-functions/wcsncasecmp.texi: Likewise.
663         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
664         * doc/posix-functions/wcsnlen.texi: Likewise.
665         * doc/posix-functions/wcsnrtombs.texi: Likewise.
666         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
667         * doc/posix-functions/wctrans_l.texi: Likewise.
668         * doc/posix-functions/wctype_l.texi: Likewise.
669         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
670         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
671         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
672         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
673         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
674         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
675         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
676         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
677         * doc/glibc-functions/wcschrnul.texi: Likewise.
678         * doc/glibc-functions/wcsftime_l.texi: Likewise.
679         * doc/glibc-functions/wcstod_l.texi: Likewise.
680         * doc/glibc-functions/wcstof_l.texi: Likewise.
681         * doc/glibc-functions/wcstol_l.texi: Likewise.
682         * doc/glibc-functions/wcstold_l.texi: Likewise.
683         * doc/glibc-functions/wcstoll_l.texi: Likewise.
684         * doc/glibc-functions/wcstoq.texi: Likewise.
685         * doc/glibc-functions/wcstoul_l.texi: Likewise.
686         * doc/glibc-functions/wcstoull_l.texi: Likewise.
687         * doc/glibc-functions/wcstouq.texi: Likewise.
688         * doc/glibc-functions/wmempcpy.texi: Likewise.
689
690 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
691             Eric Blake  <ebb9@byu.net>
692             Paolo Bonzini  <bonzini@gnu.org>
693             Bruno Haible  <bruno@clisp.org>
694
695         Make c-stack work on Haiku.
696         * lib/c-stack.c (SA_ONSTACK): Define fallback.
697         (c_stack_action): Use SA_ONSTACK flag.
698
699 2008-12-22  Bruno Haible  <bruno@clisp.org>
700
701         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
702
703 2008-12-22  Bruno Haible  <bruno@clisp.org>
704
705         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
706         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
707         being overridden.
708         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
709         New macros.
710         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
711         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
712         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
713         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
714
715 2008-12-22  Bruno Haible  <bruno@clisp.org>
716
717         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
718         from test code.
719
720 2008-12-22  Eric Blake  <ebb9@byu.net>
721
722         Avoid gcc warnings on cygwin.
723         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
724         Avoid unused variable.
725         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
726         Likewise.
727
728 2008-12-22  Bruno Haible  <bruno@clisp.org>
729
730         Remove HAVE_MBRTOWC conditionals.
731         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
732         (mbscasecmp): Assume mbrtowc function.
733         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
734         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
735         * lib/mbschr.c: Include mbuiter.h unconditionally.
736         (mbschr): Assume mbrtowc function.
737         * lib/mbscspn.c: Include mbuiter.h unconditionally.
738         (mbscspn): Assume mbrtowc function.
739         * lib/mbslen.c: Include mbuiter.h unconditionally.
740         (mbslen): Assume mbrtowc function.
741         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
742         (mbsncasecmp): Assume mbrtowc function.
743         * lib/mbsnlen.c: Include mbiter.h unconditionally.
744         (mbsnlen): Assume mbrtowc function.
745         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
746         (mbspbrk): Assume mbrtowc function.
747         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
748         (mbspcasecmp): Assume mbrtowc function.
749         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
750         (mbsrchr): Assume mbrtowc function.
751         * lib/mbssep.c: Include mbuiter.h unconditionally.
752         (mbssep): Assume mbrtowc function.
753         * lib/mbsspn.c: Include mbuiter.h unconditionally.
754         (mbsspn): Assume mbrtowc function.
755         * lib/mbsstr.c: Include mbuiter.h unconditionally.
756         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
757         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
758         (mbstok_r): Assume mbrtowc function.
759         * lib/propername.c: Include mbuiter.h unconditionally.
760         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
761         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
762         (trim2): Assume mbrtowc function.
763         * lib/mbswidth.c (mbsinit): Remove fallback definition.
764         (mbsnwidth): Assume mbrtowc function.
765         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
766         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
767         fallback definitions.
768         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
769
770 2008-12-22  Bruno Haible  <bruno@clisp.org>
771
772         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
773
774 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
775
776         * modules/regex: Request emulations for the mb*/wc* functions we need.
777         * m4/regex.m4: Don't look for those functions here.
778         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
779
780 2008-12-22  Bruno Haible  <bruno@clisp.org>
781
782         * modules/fnmatch (Depends-on): Remove duplicated dependency.
783
784 2008-12-21  Bruno Haible  <bruno@clisp.org>
785
786         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
787         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
788         (Include): Remove conditionalization.
789         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
790         (Include): Remove conditionalization.
791         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
792         (Include): Remove conditionalization.
793         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
794         * m4/mbfile.m4 (gl_MBFILE): Likewise.
795         * NEWS: Mention the change.
796         Reported by Alan Hourihane <alanh@fairlite.co.uk>
797         via Sergey Poznyakoff <gray@gnu.org.ua>.
798
799 2008-12-21  Bruno Haible  <bruno@clisp.org>
800
801         * MODULES.html.sh (Extended multibyte and wide character utilities
802         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
803         wcrtomb, wcsrtombs.
804         (Support for systems lacking POSIX:2008): Add accept, bind, close,
805         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
806         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
807         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
808
809 2008-12-21  Bruno Haible  <bruno@clisp.org>
810
811         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
812
813 2008-12-21  Bruno Haible  <bruno@clisp.org>
814
815         * modules/wcsnrtombs-tests: New file.
816         * tests/test-wcsnrtombs1.sh: New file.
817         * tests/test-wcsnrtombs2.sh: New file.
818         * tests/test-wcsnrtombs3.sh: New file.
819         * tests/test-wcsnrtombs4.sh: New file.
820         * tests/test-wcsnrtombs.c: New file.
821
822         New module 'wcsnrtombs'.
823         * lib/wchar.in.h (wcsnrtombs): New declaration.
824         * lib/wcsnrtombs.c: New file.
825         * lib/wcsrtombs-state.c: New file.
826         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
827         (internal_state): Remove variable.
828         * m4/wcsnrtombs.m4: New file.
829         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
830         compilation units.
831         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
832         HAVE_WCSNRTOMBS.
833         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
834         HAVE_WCSNRTOMBS.
835         * modules/wcsnrtombs: New file.
836         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
837         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
838
839 2008-12-21  Bruno Haible  <bruno@clisp.org>
840
841         * modules/wcsrtombs-tests: New file.
842         * tests/test-wcsrtombs1.sh: New file.
843         * tests/test-wcsrtombs2.sh: New file.
844         * tests/test-wcsrtombs3.sh: New file.
845         * tests/test-wcsrtombs4.sh: New file.
846         * tests/test-wcsrtombs.c: New file.
847
848         New module 'wcsrtombs'.
849         * lib/wchar.in.h (wcsrtombs): New declaration.
850         * lib/wcsrtombs.c: New file.
851         * m4/wcsrtombs.m4: New file.
852         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
853         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
854         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
855         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
856         * modules/wcsrtombs: New file.
857         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
858         bugs.
859
860 2008-12-21  Bruno Haible  <bruno@clisp.org>
861
862         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
863         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
864         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
865         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
866         if not correct.
867         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
868         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
869         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
870         m4/locale-zh.m4, m4/codeset.m4.
871         * doc/posix-functions/wcrtomb.texi: Document the bug.
872
873 2008-12-21  Bruno Haible  <bruno@clisp.org>
874
875         Work around a btowc() bug on IRIX 6.5.
876         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
877         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
878         REPLACE_WTOBC if not.
879         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
880         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
881         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
882
883 2008-12-21  Bruno Haible  <bruno@clisp.org>
884
885         * modules/wcrtomb-tests: New file.
886         * tests/test-wcrtomb.sh: New file.
887         * tests/test-wcrtomb.c: New file.
888
889         New module 'wcrtomb'.
890         * lib/wchar.in.h (wcrtomb): New declaration.
891         * lib/wcrtomb.c: New file.
892         * m4/wcrtomb.m4: New file.
893         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
894         HAVE_WCRTOMB.
895         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
896         HAVE_WCRTOMB.
897         * modules/wcrtomb: New file.
898         * doc/posix-functions/wcrtomb.texi: Mention the new module.
899
900 2008-12-21  Bruno Haible  <bruno@clisp.org>
901
902         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
903         * modules/mbsrtowcs (Files): Likewise.
904         * modules/wctob (Files): Likewise.
905         * modules/c-strcase-tests (Files): Likewise.
906         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
907         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
908         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
909         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
910         * modules/vasnprintf-posix-tests (Files): Likewise.
911
912 2008-12-21  William Pursell  <bill.pursell@gmail.com>
913
914         gitlog-to-changelog: pass all command-line arguments to git-log
915         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
916         it is sometimes convenient to filter the commits in various ways.
917         gitlog-to-changelog only allows --since to specify a start date,
918         but git-log itself supports many other filtering mechanisms.
919         At the moment, I want to filter by branch name.  Rather than
920         adding a --branch option to gitlog-to-changelog, it seems more
921         flexible to simply pass all options directly to git-log and let
922         git do the work.  Notice that this effectively makes --since a
923         redundant option for gitlog-to-changelog, but removing it would
924         require current usage to change since calls would then require
925         an additional '--'.
926
927 2008-12-21  Bruno Haible  <bruno@clisp.org>
928
929         * modules/mbsnrtowcs-tests: New file.
930         * tests/test-mbsnrtowcs1.sh: New file.
931         * tests/test-mbsnrtowcs2.sh: New file.
932         * tests/test-mbsnrtowcs3.sh: New file.
933         * tests/test-mbsnrtowcs4.sh: New file.
934         * tests/test-mbsnrtowcs.c: New file.
935
936         New module 'mbsnrtowcs'.
937         * lib/wchar.in.h (mbsnrtowcs): New declaration.
938         * lib/mbsnrtowcs.c: New file.
939         * lib/mbsrtowcs-state.c: New file.
940         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
941         (internal_state): Remove variable.
942         * m4/mbsnrtowcs.m4: New file.
943         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
944         compilation units.
945         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
946         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
947         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
948         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
949         * modules/mbsnrtowcs: New file.
950         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
951         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
952         portability problem.
953
954 2008-12-21  Bruno Haible  <bruno@clisp.org>
955
956         Work around mbsrtowcs bug.
957         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
958         (gl_FUNC_MBSRTOWCS): Invoke it.
959         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
960         m4/locale-zh.m4.
961         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
962
963 2008-12-21  Bruno Haible  <bruno@clisp.org>
964
965         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
966
967 2008-12-21  Bruno Haible  <bruno@clisp.org>
968
969         Update doc for AIX.
970         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
971         16-bit wchar_t type.
972         * doc/posix-functions/btowc.texi: Likewise.
973         * doc/posix-functions/fgetwc.texi: Likewise.
974         * doc/posix-functions/fgetws.texi: Likewise.
975         * doc/posix-functions/fputwc.texi: Likewise.
976         * doc/posix-functions/fputws.texi: Likewise.
977         * doc/posix-functions/fwide.texi: Likewise.
978         * doc/posix-functions/fwprintf.texi: Likewise.
979         * doc/posix-functions/fwscanf.texi: Likewise.
980         * doc/posix-functions/getwchar.texi: Likewise.
981         * doc/posix-functions/getwc.texi: Likewise.
982         * doc/posix-functions/iswalnum.texi: Likewise.
983         * doc/posix-functions/iswalpha.texi: Likewise.
984         * doc/posix-functions/iswblank.texi: Likewise.
985         * doc/posix-functions/iswcntrl.texi: Likewise.
986         * doc/posix-functions/iswctype.texi: Likewise.
987         * doc/posix-functions/iswdigit.texi: Likewise.
988         * doc/posix-functions/iswgraph.texi: Likewise.
989         * doc/posix-functions/iswlower.texi: Likewise.
990         * doc/posix-functions/iswprint.texi: Likewise.
991         * doc/posix-functions/iswpunct.texi: Likewise.
992         * doc/posix-functions/iswspace.texi: Likewise.
993         * doc/posix-functions/iswupper.texi: Likewise.
994         * doc/posix-functions/iswxdigit.texi: Likewise.
995         * doc/posix-functions/mbrtowc.texi: Likewise.
996         * doc/posix-functions/mbsrtowcs.texi: Likewise.
997         * doc/posix-functions/mbstowcs.texi: Likewise.
998         * doc/posix-functions/mbtowc.texi: Likewise.
999         * doc/posix-functions/putwchar.texi: Likewise.
1000         * doc/posix-functions/putwc.texi: Likewise.
1001         * doc/posix-functions/swprintf.texi: Likewise.
1002         * doc/posix-functions/tolower.texi: Likewise.
1003         * doc/posix-functions/toupper.texi: Likewise.
1004         * doc/posix-functions/towctrans.texi: Likewise.
1005         * doc/posix-functions/ungetwc.texi: Likewise.
1006         * doc/posix-functions/vswprintf.texi: Likewise.
1007         * doc/posix-functions/wcrtomb.texi: Likewise.
1008         * doc/posix-functions/wcscat.texi: Likewise.
1009         * doc/posix-functions/wcschr.texi: Likewise.
1010         * doc/posix-functions/wcscmp.texi: Likewise.
1011         * doc/posix-functions/wcscoll.texi: Likewise.
1012         * doc/posix-functions/wcscpy.texi: Likewise.
1013         * doc/posix-functions/wcscspn.texi: Likewise.
1014         * doc/posix-functions/wcsftime.texi: Likewise.
1015         * doc/posix-functions/wcslen.texi: Likewise.
1016         * doc/posix-functions/wcsncat.texi: Likewise.
1017         * doc/posix-functions/wcsncmp.texi: Likewise.
1018         * doc/posix-functions/wcsncpy.texi: Likewise.
1019         * doc/posix-functions/wcspbrk.texi: Likewise.
1020         * doc/posix-functions/wcsrchr.texi: Likewise.
1021         * doc/posix-functions/wcsrtombs.texi: Likewise.
1022         * doc/posix-functions/wcsspn.texi: Likewise.
1023         * doc/posix-functions/wcsstr.texi: Likewise.
1024         * doc/posix-functions/wcstod.texi: Likewise.
1025         * doc/posix-functions/wcstof.texi: Likewise.
1026         * doc/posix-functions/wcstoimax.texi: Likewise.
1027         * doc/posix-functions/wcstok.texi: Likewise.
1028         * doc/posix-functions/wcstold.texi: Likewise.
1029         * doc/posix-functions/wcstoll.texi: Likewise.
1030         * doc/posix-functions/wcstol.texi: Likewise.
1031         * doc/posix-functions/wcstombs.texi: Likewise.
1032         * doc/posix-functions/wcstoull.texi: Likewise.
1033         * doc/posix-functions/wcstoul.texi: Likewise.
1034         * doc/posix-functions/wcstoumax.texi: Likewise.
1035         * doc/posix-functions/wcswidth.texi: Likewise.
1036         * doc/posix-functions/wcsxfrm.texi: Likewise.
1037         * doc/posix-functions/wctob.texi: Likewise.
1038         * doc/posix-functions/wctomb.texi: Likewise.
1039         * doc/posix-functions/wctrans.texi: Likewise.
1040         * doc/posix-functions/wctype.texi: Likewise.
1041         * doc/posix-functions/wcwidth.texi: Likewise.
1042         * doc/posix-functions/wmemchr.texi: Likewise.
1043         * doc/posix-functions/wmemcmp.texi: Likewise.
1044         * doc/posix-functions/wmemcpy.texi: Likewise.
1045         * doc/posix-functions/wmemmove.texi: Likewise.
1046         * doc/posix-functions/wmemset.texi: Likewise.
1047         * doc/posix-functions/wprintf.texi: Likewise.
1048         * doc/posix-functions/wscanf.texi: Likewise.
1049
1050 2008-12-21  Bruno Haible  <bruno@clisp.org>
1051
1052         Update doc for HP-UX 11.11.
1053         * doc/posix-functions/btowc.texi: Clarify that the function is missing
1054         in HP-UX version 11.00, not in all versions of HP-UX 11.
1055         * doc/posix-functions/fwide.texi: Likewise.
1056         * doc/posix-functions/fwprintf.texi: Likewise.
1057         * doc/posix-functions/fwscanf.texi: Likewise.
1058         * doc/posix-functions/inet_ntop.texi: Likewise.
1059         * doc/posix-functions/inet_pton.texi: Likewise.
1060         * doc/posix-functions/mbrlen.texi: Likewise.
1061         * doc/posix-functions/mbrtowc.texi: Likewise.
1062         * doc/posix-functions/mbsinit.texi: Likewise.
1063         * doc/posix-functions/mbsrtowcs.texi: Likewise.
1064         * doc/posix-functions/swprintf.texi: Likewise.
1065         * doc/posix-functions/swscanf.texi: Likewise.
1066         * doc/posix-functions/towctrans.texi: Likewise.
1067         * doc/posix-functions/vfwprintf.texi: Likewise.
1068         * doc/posix-functions/vswprintf.texi: Likewise.
1069         * doc/posix-functions/vwprintf.texi: Likewise.
1070         * doc/posix-functions/wcrtomb.texi: Likewise.
1071         * doc/posix-functions/wcsrtombs.texi: Likewise.
1072         * doc/posix-functions/wcsstr.texi: Likewise.
1073         * doc/posix-functions/wctob.texi: Likewise.
1074         * doc/posix-functions/wctrans.texi: Likewise.
1075         * doc/posix-functions/wmemchr.texi: Likewise.
1076         * doc/posix-functions/wmemcmp.texi: Likewise.
1077         * doc/posix-functions/wmemcpy.texi: Likewise.
1078         * doc/posix-functions/wmemmove.texi: Likewise.
1079         * doc/posix-functions/wmemset.texi: Likewise.
1080         * doc/posix-functions/wprintf.texi: Likewise.
1081         * doc/posix-functions/wscanf.texi: Likewise.
1082
1083 2008-12-21  Bruno Haible  <bruno@clisp.org>
1084
1085         Work around a portability problem.
1086         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
1087         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
1088
1089 2008-12-20  Bruno Haible  <bruno@clisp.org>
1090
1091         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
1092         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
1093         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
1094         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
1095         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
1096
1097         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
1098         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
1099         set.
1100         (GNULIB_defined_mbstate_t): New macro.
1101         (mbsinit): Redefine if REPLACE_MBSINIT is set.
1102         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
1103         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
1104         reuses the system's mbrtowc function but works around the bugs.
1105         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
1106         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
1107         macros.
1108         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
1109         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
1110         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
1111         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
1112         REPLACE_MBSINIT if mbsinit needs to be overridden.
1113         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
1114         REPLACE_MBSINIT, REPLACE_MBRTOWC.
1115         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
1116         REPLACE_MBSINIT, REPLACE_MBRTOWC.
1117         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
1118         m4/locale-zh.m4.
1119         (Depends): Add mbsinit.
1120         * modules/mbsinit (Depends): Add mbrtowc.
1121         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
1122
1123 2008-12-20  Bruno Haible  <bruno@clisp.org>
1124
1125         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
1126         so that there are no conversion errors on AIX.
1127         * tests/test-mbsrtowcs.c (main): LIkewise.
1128
1129 2008-12-20  Bruno Haible  <bruno@clisp.org>
1130
1131         Work around wctob bug on Solaris <= 9.
1132         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
1133         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
1134         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
1135         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
1136         * modules/wctob (Files): Add m4/locale-fr.m4.
1137         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
1138
1139 2008-12-20  Bruno Haible  <bruno@clisp.org>
1140
1141         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
1142         /dev/null.
1143         * tests/test-select-in.sh: Likewise.
1144         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1145
1146 2008-12-20  Bruno Haible  <bruno@clisp.org>
1147
1148         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
1149         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
1150         Cygwin 1.5.x.
1151
1152 2008-12-20  Bruno Haible  <bruno@clisp.org>
1153
1154         Ensure mbstate_t is defined on HP-UX 11.11.
1155         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
1156         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
1157         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
1158         AC_USE_SYSTEM_EXTENSIONS.
1159         * modules/fnmatch (Depends-on): Add extensions.
1160         * modules/mbrlen (Depends-on): Likewise.
1161         * modules/mbrtowc (Depends-on): Likewise.
1162         * modules/mbsinit (Depends-on): Likewise.
1163         * modules/mbsrtowcs (Depends-on): Likewise.
1164         * modules/mbswidth (Depends-on): Likewise.
1165         * modules/quotearg (Depends-on): Likewise.
1166         * modules/strftime (Depends-on): Likewise.
1167
1168 2008-12-20  Bruno Haible  <bruno@clisp.org>
1169
1170         Ensure wctob is declared on IRIX 6.5.
1171         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
1172         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
1173         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
1174         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
1175         of HAVE_WCTOB.
1176         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
1177         HAVE_WCTOB.
1178         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
1179
1180 2008-12-19  Bruno Haible  <bruno@clisp.org>
1181
1182         * modules/mbsrtowcs-tests: New file.
1183         * tests/test-mbsrtowcs1.sh: New file.
1184         * tests/test-mbsrtowcs2.sh: New file.
1185         * tests/test-mbsrtowcs3.sh: New file.
1186         * tests/test-mbsrtowcs4.sh: New file.
1187         * tests/test-mbsrtowcs.c: New file.
1188
1189         New module 'mbsrtowcs'.
1190         * lib/wchar.in.h (mbsrtowcs): New declaration.
1191         * lib/mbsrtowcs.c: New file.
1192         * m4/mbsrtowcs.m4: New file.
1193         * modules/mbsrtowcs: New file.
1194         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
1195         HAVE_MBSRTOWCS.
1196         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
1197         HAVE_MBSRTOWCS.
1198         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
1199
1200 2008-12-19  Bruno Haible  <bruno@clisp.org>
1201
1202         New module 'mbrlen'.
1203         * lib/wchar.in.h (mbrlen): New declaration.
1204         * lib/mbrlen.c: New file.
1205         * m4/mbrlen.m4: New file.
1206         * modules/mbrlen: New file.
1207         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
1208         HAVE_MBRLEN.
1209         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
1210         HAVE_MBRLEN.
1211         * doc/posix-functions/mbrlen.texi: Document the new module.
1212
1213 2008-12-19  Bruno Haible  <bruno@clisp.org>
1214
1215         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
1216         * modules/mbrtowc (Depends-on): Add verify.
1217         Suggested by Paul Eggert.
1218
1219 2008-12-18  Bruno Haible  <bruno@clisp.org>
1220
1221         * modules/mbsinit-tests: New file.
1222         * tests/test-mbsinit.sh: New file.
1223         * tests/test-mbsinit.c: New file.
1224
1225 2008-12-18  Bruno Haible  <bruno@clisp.org>
1226
1227         * modules/mbrtowc-tests: New file.
1228         * tests/test-mbrtowc1.sh: New file.
1229         * tests/test-mbrtowc2.sh: New file.
1230         * tests/test-mbrtowc3.sh: New file.
1231         * tests/test-mbrtowc4.sh: New file.
1232         * tests/test-mbrtowc.c: New file.
1233
1234         New module 'mbrtowc'.
1235         * lib/wchar.in.h (mbstate_t): Override when the system does not have
1236         mbsinit and mbrtowc.
1237         (mbrtowc): New declaration.
1238         * lib/mbrtowc.c: New file.
1239         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
1240         * modules/mbrtowc: New file.
1241         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
1242         HAVE_MBRTOWC.
1243         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
1244         HAVE_MBRTOWC.
1245         * doc/posix-functions/mbrtowc.texi: Document the new module.
1246
1247 2008-12-18  Bruno Haible  <bruno@clisp.org>
1248
1249         New module 'wctob'.
1250         * lib/wchar.in.h (wctob): New declaration.
1251         * lib/wctob.c: New file.
1252         * m4/wctob.m4: New file.
1253         * modules/wctob: New file.
1254         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
1255         HAVE_WCTOB.
1256         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
1257         * doc/posix-functions/wctob.texi: Document the new module.
1258
1259 2008-12-18  Bruno Haible  <bruno@clisp.org>
1260
1261         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
1262         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
1263
1264 2008-12-18  Simon Josefsson  <simon@josefsson.org>
1265
1266         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
1267         G. Christensen" <tgc@jupiterrise.com>.
1268
1269         * lib/flock.c: Need to include errno.h.  Reported by "Tom
1270         G. Christensen" <tgc@jupiterrise.com>.
1271
1272         * lib/flock.c: Need to include string.h.  Reported by "Tom
1273         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
1274         <ebb9@byu.net>.
1275
1276 2008-12-18  Bruno Haible  <bruno@clisp.org>
1277
1278         * m4/locale-ja.m4: New file, from GNU gettext.
1279
1280 2008-12-17  Bruno Haible  <bruno@clisp.org>
1281
1282         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
1283         Suggested by Eric Blake.
1284
1285 2008-12-17  Bruno Haible  <bruno@clisp.org>
1286
1287         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
1288
1289 2008-12-17  Bruno Haible  <bruno@clisp.org>
1290
1291         * lib/mbsinit.c: Include verify.h. Verify an assumption.
1292         * modules/mbsinit (Depends-on): Add verify.
1293         Suggested by Paul Eggert.
1294
1295 2008-12-17  Bruno Haible  <bruno@clisp.org>
1296
1297         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
1298         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
1299         gl_FUNC_MBRTOWC.
1300         * m4/mbiter.m4 (gl_MBITER): LIkewise.
1301         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
1302         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
1303         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
1304         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
1305         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
1306         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
1307         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
1308         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
1309         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
1310         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
1311         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
1312         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
1313         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
1314         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
1315         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1316         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
1317         * modules/trim (configure.ac): Likewise.
1318
1319 2008-12-17  Bruno Haible  <bruno@clisp.org>
1320
1321         * modules/btowc-tests: New file.
1322         * tests/test-btowc1.sh: New file.
1323         * tests/test-btowc2.sh: New file.
1324         * tests/test-btowc.c: New file.
1325
1326         New module 'btowc'.
1327         * lib/wchar.in.h (btowc): New declaration.
1328         * lib/btowc.c: New file.
1329         * m4/btowc.m4: New file.
1330         * modules/btowc: New file.
1331         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
1332         HAVE_BTOWC.
1333         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
1334         * doc/posix-functions/btowc.texi: Document the new module.
1335
1336 2008-12-17  Bruno Haible  <bruno@clisp.org>
1337
1338         New module 'mbsinit'.
1339         * lib/wchar.in.h (mbsinit): New declaration.
1340         * lib/mbsinit.c: New file.
1341         * m4/mbsinit.m4: New file.
1342         * modules/mbsinit: New file.
1343         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
1344         HAVE_MBSINIT.
1345         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
1346         HAVE_MBSINIT.
1347         * doc/posix-functions/mbsinit.texi: Document the new module.
1348
1349 2008-12-16  Bruno Haible  <bruno@clisp.org>
1350
1351         * lib/unistd.in.h: Add comment.
1352         * tests/test-environ.c: Don't include <stdlib.h>.
1353
1354 2008-12-16  Bruno Haible  <bruno@clisp.org>
1355
1356         * lib/parse-duration.h (parse_duration): Document return value
1357         convention.
1358         * lib/parse-duration.c: Include specification header first. Add
1359         comments.
1360         (_): Remove macro.
1361         (parse_year_month_day, parse_hour_minute_second): Move side effects
1362         outside of strchr call.
1363         (parse_non_iso8601): Move side effects outside of isspace call.
1364         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
1365         call.
1366
1367 2008-12-16  Bruno Haible  <bruno@clisp.org>
1368
1369         * tests/test-parse-duration.sh: Produce no output when the test
1370         succeeds.
1371
1372 2008-12-16  Bruno Haible  <bruno@clisp.org>
1373
1374         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
1375         expressions.
1376
1377 2008-12-15  Bruno Haible  <bruno@clisp.org>
1378
1379         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
1380         * doc/glibc-functions/flistxattr.texi: Likewise.
1381         * doc/glibc-functions/fopencookie.texi: Likewise.
1382         * doc/glibc-functions/fremovexattr.texi: Likewise.
1383         * doc/glibc-functions/fsetxattr.texi: Likewise.
1384         * doc/glibc-functions/getxattr.texi: Likewise.
1385         * doc/glibc-functions/lgetxattr.texi: Likewise.
1386         * doc/glibc-functions/listxattr.texi: Likewise.
1387         * doc/glibc-functions/llistxattr.texi: Likewise.
1388         * doc/glibc-functions/lremovexattr.texi: Likewise.
1389         * doc/glibc-functions/lsetxattr.texi: Likewise.
1390         * doc/glibc-functions/removexattr.texi: Likewise.
1391         * doc/glibc-functions/setxattr.texi: Likewise.
1392         * doc/posix-functions/open_memstream.texi: Likewise.
1393
1394 2008-12-15  Eric Blake  <ebb9@byu.net>
1395
1396         Update doc for cygwin 1.7.
1397         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
1398         functions.
1399         * doc/posix-functions/fchmodat.texi: Likewise.
1400         * doc/posix-functions/fchownat.texi: Likewise.
1401         * doc/posix-functions/fdopendir.texi: Likewise.
1402         * doc/posix-functions/fmemopen.texi: Likewise.
1403         * doc/posix-functions/freeaddrinfo.texi: Likewise.
1404         * doc/posix-functions/fstatat.texi: Likewise.
1405         * doc/posix-functions/futimens.texi: Likewise.
1406         * doc/posix-functions/gai_strerror.texi: Likewise.
1407         * doc/posix-functions/getaddrinfo.texi: Likewise.
1408         * doc/posix-functions/getnameinfo.texi: Likewise.
1409         * doc/posix-functions/if_freenameindex.texi: Likewise.
1410         * doc/posix-functions/if_indextoname.texi: Likewise.
1411         * doc/posix-functions/if_nameindex.texi: Likewise.
1412         * doc/posix-functions/if_nametoindex.texi: Likewise.
1413         * doc/posix-functions/insque.texi: Likewise.
1414         * doc/posix-functions/linkat.texi: Likewise.
1415         * doc/posix-functions/llrint.texi: Likewise.
1416         * doc/posix-functions/llrintf.texi: Likewise.
1417         * doc/posix-functions/llrintl.texi: Likewise.
1418         * doc/posix-functions/lockf.texi: Likewise.
1419         * doc/posix-functions/lrintl.texi: Likewise.
1420         * doc/posix-functions/mkdirat.texi: Likewise.
1421         * doc/posix-functions/mkfifoat.texi: Likewise.
1422         * doc/posix-functions/mknodat.texi: Likewise.
1423         * doc/posix-functions/mq_close.texi: Likewise.
1424         * doc/posix-functions/mq_getattr.texi: Likewise.
1425         * doc/posix-functions/mq_notify.texi: Likewise.
1426         * doc/posix-functions/mq_open.texi: Likewise.
1427         * doc/posix-functions/mq_receive.texi: Likewise.
1428         * doc/posix-functions/mq_send.texi: Likewise.
1429         * doc/posix-functions/mq_setattr.texi: Likewise.
1430         * doc/posix-functions/mq_timedreceive.texi: Likewise.
1431         * doc/posix-functions/mq_timedsend.texi: Likewise.
1432         * doc/posix-functions/mq_unlink.texi: Likewise.
1433         * doc/posix-functions/open_memstream.texi: Likewise.
1434         * doc/posix-functions/openat.texi: Likewise.
1435         * doc/posix-functions/posix_fadvise.texi: Likewise.
1436         * doc/posix-functions/posix_fallocate.texi: Likewise.
1437         * doc/posix-functions/posix_madvise.texi: Likewise.
1438         * doc/posix-functions/posix_memalign.texi: Likewise.
1439         * doc/posix-functions/posix_openpt.texi: Likewise.
1440         * doc/posix-functions/readlinkat.texi: Likewise.
1441         * doc/posix-functions/remque.texi: Likewise.
1442         * doc/posix-functions/renameat.texi: Likewise.
1443         * doc/posix-functions/rintl.texi: Likewise.
1444         * doc/posix-functions/sem_unlink.texi: Likewise.
1445         * doc/posix-functions/shm_open.texi: Likewise.
1446         * doc/posix-functions/shm_unlink.texi: Likewise.
1447         * doc/posix-functions/signgam.texi: Likewise.
1448         * doc/posix-functions/sigset.texi: Likewise.
1449         * doc/posix-functions/stpcpy.texi: Likewise.
1450         * doc/posix-functions/stpncpy.texi: Likewise.
1451         * doc/posix-functions/strerror.texi: Likewise.
1452         * doc/posix-functions/strtod.texi: Likewise.
1453         * doc/posix-functions/symlinkat.texi: Likewise.
1454         * doc/posix-functions/unlinkat.texi: Likewise.
1455         * doc/posix-functions/utimensat.texi: Likewise.
1456         * doc/glibc-functions/bindresvport.texi: Likewise.
1457         * doc/glibc-functions/dn_expand.texi: Likewise.
1458         * doc/glibc-functions/exp10.texi: Likewise.
1459         * doc/glibc-functions/exp10f.texi: Likewise.
1460         * doc/glibc-functions/fgetxattr.texi: Likewise.
1461         * doc/glibc-functions/flistxattr.texi: Likewise.
1462         * doc/glibc-functions/fopencookie.texi: Likewise.
1463         * doc/glibc-functions/freeifaddrs.texi: Likewise.
1464         * doc/glibc-functions/fremovexattr.texi: Likewise.
1465         * doc/glibc-functions/fsetxattr.texi: Likewise.
1466         * doc/glibc-functions/getifaddrs.texi: Likewise.
1467         * doc/glibc-functions/getxattr.texi: Likewise.
1468         * doc/glibc-functions/lgetxattr.texi: Likewise.
1469         * doc/glibc-functions/listxattr.texi: Likewise.
1470         * doc/glibc-functions/llistxattr.texi: Likewise.
1471         * doc/glibc-functions/lremovexattr.texi: Likewise.
1472         * doc/glibc-functions/lsetxattr.texi: Likewise.
1473         * doc/glibc-functions/pow10.texi: Likewise.
1474         * doc/glibc-functions/pow10f.texi: Likewise.
1475         * doc/glibc-functions/rcmd_af.texi: Likewise.
1476         * doc/glibc-functions/removexattr.texi: Likewise.
1477         * doc/glibc-functions/res_init.texi: Likewise.
1478         * doc/glibc-functions/res_mkquery.texi: Likewise.
1479         * doc/glibc-functions/res_query.texi: Likewise.
1480         * doc/glibc-functions/res_querydomain.texi: Likewise.
1481         * doc/glibc-functions/res_send.texi: Likewise.
1482         * doc/glibc-functions/rresvport_af.texi: Likewise.
1483         * doc/glibc-functions/setxattr.texi: Likewise.
1484         * doc/glibc-functions/strcasestr.texi: Likewise.
1485
1486 2008-12-15  Bruno Haible  <bruno@clisp.org>
1487
1488         Fix compilation error on OSF/1 4.0.
1489         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
1490         <sys/time.h>, simply delegate to the system header.
1491         Reported by Daniel Richard G. <oss@teragram.com>.
1492
1493 2008-12-15  Bruno Haible  <bruno@clisp.org>
1494
1495         * doc/posix-functions/openat.texi: Mention the 'openat' module.
1496         * doc/posix-functions/fchmodat.texi: Likewise.
1497         * doc/posix-functions/fchownat.texi: Likewise.
1498         * doc/posix-functions/fdopendir.texi: Likewise.
1499         * doc/posix-functions/fstatat.texi: Likewise.
1500         * doc/posix-functions/mkdirat.texi: Likewise.
1501         * doc/posix-functions/unlinkat.texi: Likewise.
1502
1503 2008-12-14  Bruno Haible  <bruno@clisp.org>
1504
1505         Update doc for POSIX:2008.
1506         * doc/posix-functions/faccessat.texi: New file.
1507         * doc/posix-functions/fchmodat.texi: New file.
1508         * doc/posix-functions/fchownat.texi: New file.
1509         * doc/posix-functions/fdopendir.texi: New file.
1510         * doc/posix-functions/fstatat.texi: New file.
1511         * doc/posix-functions/futimens.texi: New file.
1512         * doc/posix-functions/linkat.texi: New file.
1513         * doc/posix-functions/mkdirat.texi: New file.
1514         * doc/posix-functions/mkfifoat.texi: New file.
1515         * doc/posix-functions/mknodat.texi: New file.
1516         * doc/posix-functions/open_wmemstream.texi: New file.
1517         * doc/posix-functions/openat.texi: New file.
1518         * doc/posix-functions/psiginfo.texi: New file.
1519         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
1520         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
1521         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
1522         * doc/posix-functions/readlinkat.texi: New file.
1523         * doc/posix-functions/renameat.texi: New file.
1524         * doc/posix-functions/strerror_l.texi: New file.
1525         * doc/posix-functions/symlinkat.texi: New file.
1526         * doc/posix-functions/unlinkat.texi: New file.
1527         * doc/posix-functions/utimensat.texi: New file.
1528         * doc/gnulib.texi (Function Substitutes): Add these subsections.
1529
1530 2008-12-14  Bruno Haible  <bruno@clisp.org>
1531
1532         Update doc for POSIX:2008.
1533         * doc/posix-functions/alphasort.texi: Renamed from
1534         doc/glibc-functions/alphasort.texi.
1535         * doc/posix-functions/dirfd.texi: Renamed from
1536         doc/glibc-functions/dirfd.texi.
1537         * doc/posix-functions/dprintf.texi: Renamed from
1538         doc/glibc-functions/dprintf.texi.
1539         * doc/posix-functions/duplocale.texi: Renamed from
1540         doc/glibc-functions/duplocale.texi.
1541         * doc/posix-functions/fexecve.texi: Renamed from
1542         doc/glibc-functions/fexecve.texi.
1543         * doc/posix-functions/fmemopen.texi: Renamed from
1544         doc/glibc-functions/fmemopen.texi.
1545         * doc/posix-functions/freelocale.texi: Renamed from
1546         doc/glibc-functions/freelocale.texi.
1547         * doc/posix-functions/getdate_err.texi: Renamed from
1548         doc/glibc-functions/getdate_err.texi.
1549         * doc/posix-functions/isalnum_l.texi: Renamed from
1550         doc/glibc-functions/isalnum_l.texi.
1551         * doc/posix-functions/isalpha_l.texi: Renamed from
1552         doc/glibc-functions/isalpha_l.texi.
1553         * doc/posix-functions/isblank_l.texi: Renamed from
1554         doc/glibc-functions/isblank_l.texi.
1555         * doc/posix-functions/iscntrl_l.texi: Renamed from
1556         doc/glibc-functions/iscntrl_l.texi.
1557         * doc/posix-functions/isdigit_l.texi: Renamed from
1558         doc/glibc-functions/isdigit_l.texi.
1559         * doc/posix-functions/isgraph_l.texi: Renamed from
1560         doc/glibc-functions/isgraph_l.texi.
1561         * doc/posix-functions/islower_l.texi: Renamed from
1562         doc/glibc-functions/islower_l.texi.
1563         * doc/posix-functions/isprint_l.texi: Renamed from
1564         doc/glibc-functions/isprint_l.texi.
1565         * doc/posix-functions/ispunct_l.texi: Renamed from
1566         doc/glibc-functions/ispunct_l.texi.
1567         * doc/posix-functions/isspace_l.texi: Renamed from
1568         doc/glibc-functions/isspace_l.texi.
1569         * doc/posix-functions/isupper_l.texi: Renamed from
1570         doc/glibc-functions/isupper_l.texi.
1571         * doc/posix-functions/iswalnum_l.texi: Renamed from
1572         doc/glibc-functions/iswalnum_l.texi.
1573         * doc/posix-functions/iswalpha_l.texi: Renamed from
1574         doc/glibc-functions/iswalpha_l.texi.
1575         * doc/posix-functions/iswblank_l.texi: Renamed from
1576         doc/glibc-functions/iswblank_l.texi.
1577         * doc/posix-functions/iswcntrl_l.texi: Renamed from
1578         doc/glibc-functions/iswcntrl_l.texi.
1579         * doc/posix-functions/iswctype_l.texi: Renamed from
1580         doc/glibc-functions/iswctype_l.texi.
1581         * doc/posix-functions/iswdigit_l.texi: Renamed from
1582         doc/glibc-functions/iswdigit_l.texi.
1583         * doc/posix-functions/iswgraph_l.texi: Renamed from
1584         doc/glibc-functions/iswgraph_l.texi.
1585         * doc/posix-functions/iswlower_l.texi: Renamed from
1586         doc/glibc-functions/iswlower_l.texi.
1587         * doc/posix-functions/iswprint_l.texi: Renamed from
1588         doc/glibc-functions/iswprint_l.texi.
1589         * doc/posix-functions/iswpunct_l.texi: Renamed from
1590         doc/glibc-functions/iswpunct_l.texi.
1591         * doc/posix-functions/iswspace_l.texi: Renamed from
1592         doc/glibc-functions/iswspace_l.texi.
1593         * doc/posix-functions/iswupper_l.texi: Renamed from
1594         doc/glibc-functions/iswupper_l.texi.
1595         * doc/posix-functions/iswxdigit_l.texi: Renamed from
1596         doc/glibc-functions/iswxdigit_l.texi.
1597         * doc/posix-functions/isxdigit_l.texi: Renamed from
1598         doc/glibc-functions/isxdigit_l.texi.
1599         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
1600         doc/glibc-functions/mbsnrtowcs.texi.
1601         * doc/posix-functions/mkdtemp.texi: Renamed from
1602         doc/glibc-functions/mkdtemp.texi.
1603         * doc/posix-functions/newlocale.texi: Renamed from
1604         doc/glibc-functions/newlocale.texi.
1605         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
1606         doc/glibc-functions/nl_langinfo_l.texi.
1607         * doc/posix-functions/open_memstream.texi: Renamed from
1608         doc/glibc-functions/open_memstream.texi.
1609         * doc/posix-functions/opterr.texi: Renamed from
1610         doc/glibc-functions/opterr.texi.
1611         * doc/posix-functions/optind.texi: Renamed from
1612         doc/glibc-functions/optind.texi.
1613         * doc/posix-functions/optopt.texi: Renamed from
1614         doc/glibc-functions/optopt.texi.
1615         * doc/posix-functions/psignal.texi: Renamed from
1616         doc/glibc-functions/psignal.texi.
1617         * doc/posix-functions/scandir.texi: Renamed from
1618         doc/glibc-functions/scandir.texi.
1619         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
1620         doc/glibc-functions/sched_get_priority_min.texi.
1621         * doc/posix-functions/signgam.texi: Renamed from
1622         doc/glibc-functions/signgam.texi.
1623         * doc/posix-functions/stpcpy.texi: Renamed from
1624         doc/glibc-functions/stpcpy.texi.
1625         * doc/posix-functions/stpncpy.texi: Renamed from
1626         doc/glibc-functions/stpncpy.texi.
1627         * doc/posix-functions/strcasecmp_l.texi: Renamed from
1628         doc/glibc-functions/strcasecmp_l.texi.
1629         * doc/posix-functions/strcoll_l.texi: Renamed from
1630         doc/glibc-functions/strcoll_l.texi.
1631         * doc/posix-functions/strfmon_l.texi: Renamed from
1632         doc/glibc-functions/strfmon_l.texi.
1633         * doc/posix-functions/strftime_l.texi: Renamed from
1634         doc/glibc-functions/strftime_l.texi.
1635         * doc/posix-functions/strncasecmp_l.texi: Renamed from
1636         doc/glibc-functions/strncasecmp_l.texi.
1637         * doc/posix-functions/strndup.texi: Renamed from
1638         doc/glibc-functions/strndup.texi.
1639         * doc/posix-functions/strnlen.texi: Renamed from
1640         doc/glibc-functions/strnlen.texi.
1641         * doc/posix-functions/strsignal.texi: Renamed from
1642         doc/glibc-functions/strsignal.texi.
1643         * doc/posix-functions/strxfrm_l.texi: Renamed from
1644         doc/glibc-functions/strxfrm_l.texi.
1645         * doc/posix-functions/timer_gettime.texi: Renamed from
1646         doc/glibc-functions/timer_gettime.texi.
1647         * doc/posix-functions/tolower_l.texi: Renamed from
1648         doc/glibc-functions/tolower_l.texi.
1649         * doc/posix-functions/toupper_l.texi: Renamed from
1650         doc/glibc-functions/toupper_l.texi.
1651         * doc/posix-functions/towctrans_l.texi: Renamed from
1652         doc/glibc-functions/towctrans_l.texi.
1653         * doc/posix-functions/towlower_l.texi: Renamed from
1654         doc/glibc-functions/towlower_l.texi.
1655         * doc/posix-functions/towupper_l.texi: Renamed from
1656         doc/glibc-functions/towupper_l.texi.
1657         * doc/posix-functions/uselocale.texi: Renamed from
1658         doc/glibc-functions/uselocale.texi.
1659         * doc/posix-functions/vdprintf.texi: Renamed from
1660         doc/glibc-functions/vdprintf.texi.
1661         * doc/posix-functions/wcpcpy.texi:
1662         Renamed from doc/glibc-functions/wcpcpy.texi.
1663         * doc/posix-functions/wcpncpy.texi: Renamed from
1664         doc/glibc-functions/wcpncpy.texi.
1665         * doc/posix-functions/wcscasecmp.texi: Renamed from
1666         doc/glibc-functions/wcscasecmp.texi.
1667         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
1668         doc/glibc-functions/wcscasecmp_l.texi.
1669         * doc/posix-functions/wcscoll_l.texi: Renamed from
1670         doc/glibc-functions/wcscoll_l.texi.
1671         * doc/posix-functions/wcsdup.texi: Renamed from
1672         doc/glibc-functions/wcsdup.texi.
1673         * doc/posix-functions/wcsncasecmp.texi: Renamed from
1674         doc/glibc-functions/wcsncasecmp.texi.
1675         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
1676         doc/glibc-functions/wcsncasecmp_l.texi.
1677         * doc/posix-functions/wcsnlen.texi: Renamed from
1678         doc/glibc-functions/wcsnlen.texi.
1679         * doc/posix-functions/wcsnrtombs.texi: Renamed from
1680         doc/glibc-functions/wcsnrtombs.texi.
1681         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
1682         doc/glibc-functions/wcsxfrm_l.texi.
1683         * doc/posix-functions/wctrans_l.texi: Renamed from
1684         doc/glibc-functions/wctrans_l.texi.
1685         * doc/posix-functions/wctype_l.texi: Renamed from
1686         doc/glibc-functions/wctype_l.texi.
1687         * doc/gnulib.texi (Function Substitutes): Add these subsections.
1688         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
1689         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
1690         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
1691         these subsections.
1692         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
1693         Remove sections.
1694
1695 2008-12-14  Bruno Haible  <bruno@clisp.org>
1696
1697         Update doc for POSIX:2008.
1698         * doc/posix-functions/*.texi: Update URL of POSIX specification.
1699
1700 2008-12-14  Bruno Haible  <bruno@clisp.org>
1701
1702         Update doc for POSIX:2008.
1703         * doc/pastposix-functions/bcmp.texi: Renamed from
1704         doc/posix-functions/bcmp.texi.
1705         * doc/pastposix-functions/bcopy.texi: Renamed from
1706         doc/posix-functions/bcopy.texi.
1707         * doc/pastposix-functions/bsd_signal.texi: Renamed from
1708         doc/posix-functions/bsd_signal.texi.
1709         * doc/pastposix-functions/bzero.texi: Renamed from
1710         doc/posix-functions/bzero.texi.
1711         * doc/pastposix-functions/ecvt.texi: Renamed from
1712         doc/posix-functions/ecvt.texi.
1713         * doc/pastposix-functions/fcvt.texi: Renamed from
1714         doc/posix-functions/fcvt.texi.
1715         * doc/pastposix-functions/ftime.texi: Renamed from
1716         doc/posix-functions/ftime.texi.
1717         * doc/pastposix-functions/gcvt.texi: Renamed from
1718         doc/posix-functions/gcvt.texi.
1719         * doc/pastposix-functions/getcontext.texi: Renamed from
1720         doc/posix-functions/getcontext.texi.
1721         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
1722         doc/posix-functions/gethostbyaddr.texi.
1723         * doc/pastposix-functions/gethostbyname.texi: Renamed from
1724         doc/posix-functions/gethostbyname.texi.
1725         * doc/pastposix-functions/getwd.texi: Renamed from
1726         doc/posix-functions/getwd.texi.
1727         * doc/pastposix-functions/h_errno.texi: Renamed from
1728         doc/posix-functions/h_errno.texi.
1729         * doc/pastposix-functions/index.texi: Renamed from
1730         doc/posix-functions/index.texi.
1731         * doc/pastposix-functions/makecontext.texi: Renamed from
1732         doc/posix-functions/makecontext.texi.
1733         * doc/pastposix-functions/mktemp.texi: Renamed from
1734         doc/posix-functions/mktemp.texi.
1735         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
1736         doc/posix-functions/pthread_attr_getstackaddr.texi.
1737         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
1738         doc/posix-functions/pthread_attr_setstackaddr.texi.
1739         * doc/pastposix-functions/rindex.texi: Renamed from
1740         doc/posix-functions/rindex.texi.
1741         * doc/pastposix-functions/scalb.texi: Renamed from
1742         doc/posix-functions/scalb.texi.
1743         * doc/pastposix-functions/setcontext.texi: Renamed from
1744         doc/posix-functions/setcontext.texi.
1745         * doc/pastposix-functions/swapcontext.texi: Renamed from
1746         doc/posix-functions/swapcontext.texi.
1747         * doc/pastposix-functions/ualarm.texi: Renamed from
1748         doc/posix-functions/ualarm.texi.
1749         * doc/pastposix-functions/usleep.texi: Renamed from
1750         doc/posix-functions/usleep.texi.
1751         * doc/pastposix-functions/vfork.texi: Renamed from
1752         doc/posix-functions/vfork.texi.
1753         * doc/pastposix-functions/wcswcs.texi: Renamed from
1754         doc/posix-functions/wcswcs.texi.
1755         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
1756         (Function Substitutes): Update.
1757
1758 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1759
1760         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
1761         m4/strerror.m4.
1762
1763 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1764             Bruno Haible  <bruno@clisp.org>
1765
1766         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
1767
1768 2008-12-13  Bruno Haible  <bruno@clisp.org>
1769
1770         * modules/strtoull (Depends-on): Remove unistd.
1771
1772 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1773
1774         * modules/strtoull (Depends-on): Add stdlib.
1775
1776 2008-12-11  Simon Josefsson  <simon@josefsson.org>
1777
1778         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
1779
1780 2008-12-10  Jim Meyering  <meyering@redhat.com>
1781
1782         gl_ASSERT: don't say assertions are disabled when they're not
1783         * m4/assert.m4 (gl_ASSERT): Do not make configure report
1784         "checking whether to enable assertions... no", when they are in
1785         fact enabled.  This is solely a bug in the output of configure.
1786         In spite of saying "no", NDEBUG was not defined in that case.
1787         Also, as noted by Eric Blake, leave assertions enabled upon
1788         --enable-assert=INVALID.
1789
1790 2008-12-10  Bruno Haible  <bruno@clisp.org>
1791
1792         Change MODULES.html to refer to POSIX:2008 where possible.
1793         * MODULES.html.sh (POSIX2008_URL): New variable.
1794         (posix_headers): Remove sys/timeb, ucontext.
1795         (posix2001_headers): New variable.
1796         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
1797         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
1798         index, makecontext, mktemp, pthread_attr_getstackaddr,
1799         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
1800         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
1801         (posix2001_functions): New variable.
1802         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
1803         otherwise.
1804
1805 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1806
1807         add missing include to parse-duration.c
1808         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
1809         * modules/parse-duration (Depends-on): Add xalloc.
1810
1811         fix sed script reading maint.mk
1812         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
1813         (syntax-check-rules): Use it.
1814
1815 2008-12-09  Bruno Haible  <bruno@clisp.org>
1816
1817         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
1818         MacOS X 10.4/PowerPC.
1819         Reported by Simon Josefsson.
1820
1821 2008-12-08  Jim Meyering  <meyering@redhat.com>
1822
1823         work around mingw's lack of some S_IF definitions
1824         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
1825         Reported by Simon Josefsson.
1826
1827 2008-12-08  Bruno Haible  <bruno@clisp.org>
1828
1829         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
1830         applied to variables. Needed on MacOS X 10.4/PowerPC.
1831         Reported by Simon Josefsson.
1832
1833 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
1834         and Eric Blake  <ebb9@byu.net>
1835
1836         assert: honor --enable-assert
1837         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
1838         order to honor --enable-assert, rather than treating it as a
1839         synonym for --disable-assert.
1840
1841 2008-12-08  Jim Meyering  <meyering@redhat.com>
1842
1843         * lib/posixtm.c: Remove now-useless declaration of mktime.
1844
1845         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
1846
1847 2008-12-07  Bruno Haible  <bruno@clisp.org>
1848
1849         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
1850         test_once): Mark functions as static.
1851         * tests/test-tls.c (test_tls): Likewise.
1852
1853 2008-12-07  Bruno Haible  <bruno@clisp.org>
1854
1855         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
1856         iconv_register_autodetect.
1857
1858 2008-12-07  Jim Meyering  <meyering@redhat.com>
1859
1860         posixtm.c: avoid a warning
1861         * lib/posixtm.c (posixtime): Don't initialize tm0.
1862         It's no longer needed to placate gcc4's -Wuninitialized,
1863         and the attempt to placate would elicit a new warning.
1864
1865         unicodeio.c: mark unused parameters
1866         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
1867         (fallback_failure_callback): Likewise.
1868
1869 2008-12-07  Bruno Haible  <bruno@clisp.org>
1870
1871         * gnulib-tool (func_create_testdir): When building the tests
1872         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
1873         Reported by Simon Josefsson.
1874
1875 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1876
1877         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
1878
1879 2008-12-06  Bruno Haible  <bruno@clisp.org>
1880
1881         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
1882         Suggested by Eric Blake.
1883
1884 2008-12-06  Bruno Haible  <bruno@clisp.org>
1885
1886         Fix a c-stack test failure on MacOS X.
1887         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
1888         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
1889         handler for SIGBUS as well.
1890         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
1891         install a signal handler for SIGBUS as well.
1892         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
1893
1894 2008-12-06  Bruno Haible  <bruno@clisp.org>
1895
1896         Advocacy documentation.
1897         * doc/gnulib-intro.texi (Benefits): New section.
1898         * doc/gnulib.texi: Update.
1899
1900 2008-12-06  Bruno Haible  <bruno@clisp.org>
1901
1902         Document the 'manywarnings' module.
1903         * doc/manywarnings.texi: New file.
1904         * doc/gnulib.texi: Include it.
1905
1906 2008-12-05  Eric Blake  <ebb9@byu.net>
1907
1908         tests: silence some gcc warnings
1909         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
1910         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
1911         type mismatches.
1912
1913 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1914             Bruno Haible  <bruno@clisp.org>
1915
1916         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
1917
1918 2008-11-29  Jim Meyering  <meyering@redhat.com>
1919
1920         unicodeio.c: mark unused parameters
1921         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
1922         (fallback_failure_callback): Likewise.
1923
1924         fts: fix a thinko
1925         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
1926         (set_stat_type): Return S_IF*-valued "type" directly.
1927         Prompted by James Youngman's spotting a related bug.
1928         Confirmed by further testing through find.
1929
1930         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
1931         * lib/fts.c (D_TYPE): Define.
1932         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
1933         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
1934         (s_ifmt_shift_bits): New function.
1935         (set_stat_type): New function.
1936         (fts_build): When not calling fts_stat, call set_stat_type
1937         to propagate dirent.d_type info to fts_read caller.
1938         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
1939         fts_statp->st_mode type information may be valid.
1940
1941 2008-11-28  Simon Josefsson  <simon@josefsson.org>
1942
1943         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
1944         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
1945         <sds@gnu.org>.
1946
1947 2008-11-20  Bruno Haible  <bruno@clisp.org>
1948
1949         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
1950         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
1951         INCLUDE_NEXT.
1952         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
1953         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
1954         * modules/math (Makefile.am): Substitute
1955         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
1956         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
1957
1958 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
1959             Bruno Haible  <bruno@clisp.org>
1960
1961         * lib/stdint.in.h: Define all type macros so that their expansion is
1962         a single typedef'ed token. Fixes a compilation failure in Boost which
1963         does "using ::int8_t;".
1964
1965 2008-11-18  Simon Josefsson  <simon@josefsson.org>
1966
1967         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
1968         gl_MANYWARN_ALL_GCC.
1969         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
1970         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
1971         * modules/manywarnings: New file.
1972         * MODULES.html.sh: Mention manywarnings module.
1973
1974 2008-11-18  Bruno Haible  <bruno@clisp.org>
1975
1976         * doc/gnulib-tool.texi (Unit tests): New section.
1977
1978 2008-11-18  Simon Josefsson  <simon@josefsson.org>
1979
1980         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
1981         paths like 'lib/po/foo.po'.
1982
1983 2008-11-17  Simon Josefsson  <simon@josefsson.org>
1984
1985         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
1986         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
1987
1988 2008-11-17  Simon Josefsson  <simon@josefsson.org>
1989
1990         * m4/warnings.m4: Use CPPFLAGS to really check whether the
1991         parameter works.
1992
1993 2008-11-17  Simon Josefsson  <simon@josefsson.org>
1994
1995         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
1996
1997 2008-11-17  Bruce Korb  <bkorb@gnu.org>
1998
1999         * modules/parse-duration-tests: New file.
2000         * tests/test-parse-duration.sh: New file.
2001         * tests/test-parse-duration.c: New file.
2002
2003         New module 'parse-duration'.
2004         * lib/parse-duration.h: New file.
2005         * lib/parse-duration.c: New file.
2006         * modules/parse-duration: New file.
2007
2008 2008-11-17  Bruno Haible  <bruno@clisp.org>
2009
2010         * tests/test-select-out.sh: Comment out the first pipe test.
2011         Reported by Simon Josefsson.
2012
2013 2008-11-17  Bruno Haible  <bruno@clisp.org>
2014
2015         * modules/getaddrinfo (Depends-on): Add servent, hostent.
2016         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
2017         gl_HOSTENT.
2018
2019 2008-11-17  Bruno Haible  <bruno@clisp.org>
2020
2021         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
2022         -lnetwork and -lnet. Needed for Haiku and BeOS.
2023
2024 2008-11-16  Bruno Haible  <bruno@clisp.org>
2025
2026         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
2027
2028 2008-11-16  Bruno Haible  <bruno@clisp.org>
2029
2030         Avoid test failure on Haiku.
2031         * tests/test-fsync.c: Include <errno.h>.
2032         (main): Don't require that fsync (0) fails.
2033
2034 2008-11-15  Bruno Haible  <bruno@clisp.org>
2035
2036         New module 'hostent'.
2037         * modules/hostent: New file.
2038         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
2039
2040 2008-11-15  Bruno Haible  <bruno@clisp.org>
2041
2042         New module 'servent'.
2043         * modules/servent: New file.
2044         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
2045
2046 2008-11-15  Bruno Haible  <bruno@clisp.org>
2047
2048         Avoid generating same test program with two different rules.
2049         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
2050         test-frexp to test-frexp-nolibm.
2051         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
2052         test-frexpl to test-frexpl-nolibm.
2053
2054 2008-11-15  Bruno Haible  <bruno@clisp.org>
2055
2056         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
2057         $(FREXPL_LIBM).
2058
2059 2008-11-15  Bruno Haible  <bruno@clisp.org>
2060
2061         * lib/netdb.in.h: Activate the definitions also when the system's
2062         <netdb.h> has 'struct addrinfo'.
2063         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
2064         EAI_OVERFLOW or AI_NUMERICSERV.
2065         * doc/posix-headers/netdb.texi: Document the problem.
2066
2067 2008-11-15  Bruno Haible  <bruno@clisp.org>
2068
2069         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
2070
2071         Make the 'sched' module work on platforms where <sched.h> exists but
2072         is incomplete (such as Haiku).
2073         * lib/sched.in.h; Include the system's <sched.h> if it exists.
2074         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
2075         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
2076         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
2077         HAVE_STRUCT_SCHED_PARAM.
2078         * modules/sched (Depends-on): Add include_next.
2079         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
2080         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
2081         * doc/posix-headers/sched.texi: Document the issue.
2082
2083 2008-11-13  Jim Meyering  <meyering@redhat.com>
2084
2085         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
2086         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
2087         test would fail due to the difference in the Report bugs to ...
2088         line.  The expected address is empty, "<>", while the actual
2089         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
2090
2091 2008-11-12  Bruno Haible  <bruno@clisp.org>
2092
2093         lstat: don't compile lstat.c on systems lacking lstat
2094         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
2095         which don't have lstat; this is handled by lib/sys_stat.in.h already.
2096         Reported by Daniel P. Berrange via Jim Meyering.
2097
2098 2008-11-12  Jim Meyering  <meyering@redhat.com>
2099
2100         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
2101
2102 2008-11-12  Simon Josefsson  <simon@josefsson.org>
2103
2104         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
2105         instead.
2106
2107 2008-11-12  Bruno Haible  <bruno@clisp.org>
2108
2109         * lib/unicodeio.c: Include unistr.h.
2110         (utf8_wctomb): Remove function.
2111         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
2112
2113 2008-11-12  Simon Josefsson  <simon@josefsson.org>
2114
2115         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
2116         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
2117         <bruno@clisp.org>.
2118         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
2119
2120 2008-11-12  Simon Josefsson  <simon@josefsson.org>
2121
2122         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
2123         * doc/gnulib.texi: Add section for warnings.
2124
2125 2008-11-11  Bruno Haible  <bruno@clisp.org>
2126
2127         * lib/sockets.h: Add a comment.
2128
2129 2008-11-11  Karl Berry  <karl@gnu.org>
2130
2131         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
2132
2133 2008-11-11  Eric Blake  <ebb9@byu.net>
2134
2135         fdl.texi: avoid git symlinks
2136         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
2137
2138 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
2139
2140         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
2141
2142 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
2143
2144         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
2145         (gl_WARN_ADD): Substitute $2 if literal.
2146
2147 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
2148
2149         * m4/warning.m4: Remove.
2150
2151 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
2152
2153         * m4/warnings.m4: Almost complete rewrite. :-)
2154
2155 2008-11-10  Simon Josefsson  <simon@josefsson.org>
2156
2157         * modules/warnings: New module.
2158         * m4/warnings.m4: New file.
2159         * MODULES.html.sh: Mention warnings module.
2160         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
2161         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2162
2163 2008-11-10  Eric Blake  <ebb9@byu.net>
2164
2165         fdl.texi: make a symlink to the latest version
2166         * doc/standards.texi: Revert today's earlier change.
2167         * doc/fdl-1.2.texi: Rename from old fdl.texi...
2168         * doc/fdl.texi: ...and replace this with a symlink to the newer
2169         fdl-1.3.texi.
2170
2171 2008-11-10  Bruno Haible  <bruno@clisp.org>
2172
2173         * tests/test-select-fd.c (main): Accept the result file name as fourth
2174         argument.
2175         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
2176         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
2177
2178 2008-11-10  Bruno Haible  <bruno@clisp.org>
2179
2180         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
2181         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
2182         as autoconf-substituted macros.
2183         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
2184         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
2185         gl_NETDB_H_DEFAULTS. Set these variables.
2186         * modules/netdb (Makefile.am): Substitute these variables.
2187
2188 2008-11-10  Eric Blake  <ebb9@byu.net>
2189
2190         standards.texi: include correct file for FDL 1.3
2191         * doc/standards.texi (GNU Free Documentation License): Change
2192         include file to pull in FDL 1.3, not 1.2.
2193
2194         fdl.texi: revert accidental change to license
2195         * doc/fdl.texi: This is FDL 1.2, not 1.3.
2196
2197 2008-11-10  Bruno Haible  <bruno@clisp.org>
2198
2199         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
2200         cross-compiling guesses also when the native compile gives no result.
2201
2202 2008-11-10  Bruno Haible  <bruno@clisp.org>
2203
2204         * lib/spawni.c (__spawni): Force variable into the stack.
2205
2206 2008-11-10  Bruno Haible  <bruno@clisp.org>
2207
2208         Add support for Haiku.
2209         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
2210         glibc and BeOS, but also on Haiku.
2211         * lib/fpurge.c (fpurge): Likewise.
2212         * lib/freadable.c (freadable): Likewise.
2213         * lib/freadahead.c (freadahead): Likewise.
2214         * lib/freading.c (freading): Likewise.
2215         * lib/freadptr.c (freadptr): Likewise.
2216         * lib/freadseek.c (freadptrinc): Likewise.
2217         * lib/fseeko.c (rpl_fseeko): Likewise.
2218         * lib/fseterr.c (fseterr): Likewise.
2219         * lib/fwritable.c (fwritable): Likewise.
2220         * lib/fwriting.c (fwriting): Likewise.
2221         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
2222
2223 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
2224
2225         * lib/config.charset: Treat Haiku like BeOS.
2226
2227 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
2228
2229         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
2230         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
2231
2232 2008-11-08  Bruno Haible  <bruno@clisp.org>
2233
2234         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
2235         AC_CACHE_CHECK.
2236
2237 2008-11-08  Bruno Haible  <bruno@clisp.org>
2238
2239         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
2240
2241 2008-11-08  Bruno Haible  <bruno@clisp.org>
2242
2243         * tests/test-select-fd.c: New file.
2244         * tests/test-select-in.sh: New file.
2245         * tests/test-select-out.sh: New file.
2246         * tests/test-select-stdin.c: New file.
2247         * modules/select-tests (Files): Add the new files.
2248         (Depends-on): Add gettimeofday.
2249         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
2250         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
2251         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
2252
2253 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
2254             Bruno Haible  <bruno@clisp.org>
2255
2256         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
2257
2258 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
2259
2260         * build-aux/pmccabe2html: Added support for C++ source files.
2261
2262 2008-11-05  Ben Pfaff  <blp@gnu.org>
2263
2264         Fix lib/close.c build on Windows.
2265         * modules/close (Files): Add lib/w32sock.h.
2266
2267 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
2268
2269         Accept Bison's NEWS format.
2270         * build-aux/announce-gen (print_news_deltas): Tweak
2271         $re_prefix.
2272
2273 2008-11-04  Bruno Haible  <bruno@clisp.org>
2274
2275         * modules/random_r (Maintainer): Add glibc.
2276
2277 2008-11-04  Simon Josefsson  <simon@josefsson.org>
2278
2279         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
2280         by karl@freefriends.org (Karl Berry).
2281         * doc/alloca.texi: Likewise.
2282         * doc/c-ctype.texi: Likewise.
2283         * doc/c-strcase.texi: Likewise.
2284         * doc/c-strcaseeq.texi: Likewise.
2285         * doc/c-strcasestr.texi: Likewise.
2286         * doc/c-strstr.texi: Likewise.
2287         * doc/c-strtod.texi: Likewise.
2288         * doc/c-strtold.texi: Likewise.
2289         * doc/ctime.texi: Likewise.
2290         * doc/error.texi: Likewise.
2291         * doc/fdl.texi: Likewise.
2292         * doc/gcd.texi: Likewise.
2293         * doc/getdate.texi: Likewise.
2294         * doc/gnulib-intro.texi: Likewise.
2295         * doc/gnulib-tool.texi: Likewise.
2296         * doc/gnulib.texi: Likewise.
2297         * doc/inet_ntoa.texi: Likewise.
2298         * doc/maintain.texi: Likewise.
2299         * doc/make-stds.texi: Likewise.
2300         * doc/quote.texi: Likewise.
2301         * doc/regexprops-generic.texi: Likewise.
2302         * doc/standards.texi: Likewise.
2303         * doc/verify.texi: Likewise.
2304         * doc/visibility.texi: Likewise.
2305         * doc/gnulib.texi (GNU Free Documentation License): Include
2306         fdl-1.3.texi instead of fdl.texi.
2307
2308 2008-11-04  Simon Josefsson  <simon@josefsson.org>
2309
2310         * doc/fdl-1.3.texi: New file, from
2311         <http://www.gnu.org/licenses/fdl-1.3.texi>.
2312         * modules/fdl-1.3: Add.
2313         * MODULES.html.sh: Add fdl-1.3.
2314
2315 2008-11-03  Bruno Haible  <bruno@clisp.org>
2316
2317         Make determination of absolute name of header file work with AIX xlc.
2318         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
2319         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
2320         preprocessing.
2321         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
2322         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
2323
2324 2008-11-03  Simon Josefsson  <simon@josefsson.org>
2325
2326         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
2327         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
2328         <ludo@gnu.org>.
2329
2330 2008-11-02  Bruno Haible  <bruno@clisp.org>
2331
2332         Mark 'strpbrk' obsolete.
2333         * modules/strpbrk (Status, Notice): New sections.
2334         * modules/strtok_r (Depends-on): Add strpbrk.
2335
2336 2008-11-02  Bruno Haible  <bruno@clisp.org>
2337
2338         Mark 'strdup' obsolete.
2339         * modules/strdup (Status, Notice): New sections.
2340         * modules/findprog (Depends-on): Add strdup.
2341         * modules/getaddrinfo (Depends-on): Likewise.
2342         * modules/localename (Depends-on): Likewise.
2343         * modules/relocatable-lib (Depends-on): Likewise.
2344         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
2345         * modules/relocatable-prog (Depends-on): Likewise.
2346         * modules/trim (Depends-on): Likewise.
2347         * modules/unictype/gen-ctype (Depends-on): Likewise.
2348         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
2349
2350 2008-11-02  Bruno Haible  <bruno@clisp.org>
2351
2352         Mark 'strcspn' obsolete.
2353         * modules/strcspn (Status, Notice): New sections.
2354
2355 2008-11-02  Bruno Haible  <bruno@clisp.org>
2356
2357         Mark 'rmdir' obsolete.
2358         * modules/rmdir (Status, Notice): New sections.
2359         * modules/clean-temp (Depends-on): Add rmdir.
2360         * modules/openat (Depends-on): Likewise.
2361
2362 2008-11-02  Bruno Haible  <bruno@clisp.org>
2363
2364         Mark 'raise' obsolete.
2365         * modules/raise (Status, Notice): New sections.
2366         (Include): Specify <signal.h>.
2367         * modules/stdio (Depends-on): Add raise.
2368         * modules/write (Depends-on): Likewise.
2369
2370 2008-11-02  Bruno Haible  <bruno@clisp.org>
2371
2372         Mark 'memset' obsolete.
2373         * modules/memset (Status, Notice): New sections.
2374
2375 2008-11-02  Bruno Haible  <bruno@clisp.org>
2376
2377         Mark 'memmove' obsolete.
2378         * modules/memmove (Status, Notice): New sections.
2379         * modules/argp (Depends-on): Add memmove.
2380         * modules/argz (Depends-on): Likewise.
2381         * modules/canonicalize (Depends-on): Likewise.
2382         * modules/canonicalize-lgpl (Depends-on): Likewise.
2383         * modules/fts (Depends-on): Likewise.
2384         * modules/getcwd (Depends-on): Likewise.
2385         * modules/human (Depends-on): Likewise.
2386         * modules/regex (Depends-on): Likewise.
2387         * modules/striconveh (Depends-on): Likewise.
2388         * modules/trim (Depends-on): Likewise.
2389         * modules/unistr/u8-move (Depends-on): Likewise.
2390         * modules/unistr/u16-move (Depends-on): Likewise.
2391         * modules/unistr/u32-move (Depends-on): Likewise.
2392
2393 2008-11-02  Bruno Haible  <bruno@clisp.org>
2394
2395         Mark 'memcpy' obsolete.
2396         * modules/memcpy (Status, Notice): New sections.
2397
2398 2008-11-02  Bruno Haible  <bruno@clisp.org>
2399
2400         Mark 'memcmp' obsolete.
2401         * modules/memcmp (Status, Notice): New sections.
2402         * modules/argmatch (Depends-on): Add memchr.
2403         * modules/backupfile (Depends-on): Likewise.
2404         * modules/c-strcasestr (Depends-on): Likewise.
2405         * modules/crypto/des (Depends-on): Likewise.
2406         * modules/csharpcomp (Depends-on): Likewise.
2407         * modules/fnmatch (Depends-on): Likewise.
2408         * modules/git-merge-changelog (Depends-on): Likewise.
2409         * modules/isnand (Depends-on): Likewise.
2410         * modules/isnand-nolibm (Depends-on): Likewise.
2411         * modules/isnanf (Depends-on): Likewise.
2412         * modules/isnanf-nolibm (Depends-on): Likewise.
2413         * modules/isnanl (Depends-on): Likewise.
2414         * modules/isnanl-nolibm (Depends-on): Likewise.
2415         * modules/mbchar (Depends-on): Likewise.
2416         * modules/memcoll (Depends-on): Likewise.
2417         * modules/quotearg (Depends-on): Likewise.
2418         * modules/regex (Depends-on): Likewise.
2419         * modules/relocatable-prog (Depends-on): Likewise.
2420         * modules/same (Depends-on): Likewise.
2421         * modules/signbit (Depends-on): Likewise.
2422         * modules/strcasestr-simple (Depends-on): Likewise.
2423         * modules/unictype/gen-ctype (Depends-on): Likewise.
2424         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
2425         * modules/uniname/uniname (Depends-on): Likewise.
2426         * modules/unistr/u8-cmp (Depends-on): Likewise.
2427
2428 2008-11-02  Bruno Haible  <bruno@clisp.org>
2429
2430         Mark 'memchr' obsolete.
2431         * modules/memchr (Status, Notice): New sections.
2432         * modules/argp (Depends-on): Add memchr.
2433         * modules/base64 (Depends-on): Likewise.
2434         * modules/c-strcasestr (Depends-on): Likewise.
2435         * modules/chdir-long (Depends-on): Likewise.
2436         * modules/fnmatch (Depends-on): Likewise.
2437         * modules/getsubopt (Depends-on): Likewise.
2438         * modules/git-merge-changelog (Depends-on): Likewise.
2439         * modules/glob (Depends-on): Likewise.
2440         * modules/strcasestr-simple (Depends-on): Likewise.
2441         * modules/strnlen (Depends-on): Likewise.
2442
2443 2008-11-02  Bruno Haible  <bruno@clisp.org>
2444
2445         Mark 'atexit' obsolete.
2446         * modules/atexit (Status, Notice): New sections.
2447         * modules/chdir-long (Depends-on): Add atexit.
2448         * modules/wait-process (Depends-on): Likewise.
2449
2450 2008-11-02  Bruno Haible  <bruno@clisp.org>
2451
2452         * gnulib-tool: New option --with-obsolete.
2453         (func_usage): Document it.
2454         (func_modules_transitive_closure): Drop obsolete dependencies if
2455         incobsolete is not true.
2456         (func_import): Read and save the incobsolete variable to the cache.
2457
2458 2008-11-02  Bruno Haible  <bruno@clisp.org>
2459
2460         * modules/TEMPLATE-EXTENDED: New field 'Status'.
2461         * gnulib-tool: New option --extract-status.
2462         (func_usage): Document it.
2463         (sed_extract_prog): Recognize it.
2464         (func_get_status): New function.
2465
2466 2008-10-30  Simon Josefsson  <simon@josefsson.org>
2467
2468         * modules/sockets (License): Change from LGPL to LGPLv2+.
2469
2470 2008-10-28  Simon Josefsson  <simon@josefsson.org>
2471
2472         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
2473
2474 2008-10-28  Simon Josefsson  <simon@josefsson.org>
2475
2476         * MODULES.html.sh (Support for systems lacking POSIX:2001):
2477         Mention times and sys_times.
2478         * modules/sys_times, modules/sys_times-tests: New modules.
2479         * modules/times, modules/times-tests: Likewise
2480         * m4/sys_times_h.m4: New file.
2481         * lib/sys_times.in.h: Likewise
2482         * lib/times.c: Likewise.
2483         * tests/test-sys_times.c: Likewise.
2484         * tests/test-times.c: Likewise.
2485         * doc/posix-headers/sys_times.texi: Update.
2486         * doc/posix-functions/times.texi: Update.
2487
2488 2008-10-28  Jim Meyering  <meyering@redhat.com>
2489
2490         * modules/tempname (Depends-on): Add lstat.
2491
2492         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
2493
2494 2008-10-28  Simon Josefsson  <simon@josefsson.org>
2495
2496         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
2497         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
2498         using idiom used elsewhere in gnulib.
2499
2500 2008-10-27  Jim Meyering  <meyering@redhat.com>
2501
2502         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
2503
2504 2008-10-27  Simon Josefsson  <simon@josefsson.org>
2505
2506         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
2507         TESTS_ENVIRONMENT, for shell scripts that needs to call built
2508         programs.
2509         * tests/test-argp-2.sh: Use $EXEEXT when needed.
2510
2511 2008-10-27  Simon Josefsson  <simon@josefsson.org>
2512
2513         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
2514
2515 2008-10-27  Bruno Haible  <bruno@clisp.org>
2516
2517         * tests/test-lstat.c: Include <stdio.h>.
2518
2519 2008-10-27  Simon Josefsson  <simon@josefsson.org>
2520
2521         * modules/lstat-tests: New module.
2522         * tests/test-lstat.c: New file.
2523
2524 2008-10-26  Jim Meyering  <meyering@redhat.com>
2525
2526         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
2527
2528 2008-10-26  Simon Josefsson  <simon@josefsson.org>
2529             Bruno Haible  <bruno@clisp.org>
2530
2531         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
2532         * modules/configmake (Include): Add a note that the include must come
2533         after all system headers.
2534         * lib/javaversion.c: Include configmake.h after all other includes.
2535
2536 2008-10-26  Bruno Haible  <bruno@clisp.org>
2537
2538         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
2539         HAVE_STRUCT_RANDOM_DATA to 1.
2540         (gl_STDLIB_H): Simplify.
2541
2542 2008-10-26  Simon Josefsson  <simon@josefsson.org>
2543
2544         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
2545         substitute HAVE_STRUCT_RANDOM_DATA.
2546         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
2547         random_data.
2548         * modules/stdlib (Makefile.am): Substitute
2549         HAVE_STRUCT_RANDOM_DATA.
2550
2551 2008-10-26  Simon Josefsson  <simon@josefsson.org>
2552
2553         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
2554         * doc/gnulib-intro.texi (Copyright): Likewise.
2555
2556 2008-10-26  Simon Josefsson  <simon@josefsson.org>
2557
2558         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
2559         findings.
2560
2561 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
2562             Bruno Haible  <bruno@clisp.org>
2563
2564         * lib/unistd.in.h: Include <winsock2.h>.
2565         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
2566         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
2567         Provide dummy declarations.
2568         (gethostname): Override.
2569         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
2570         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
2571         gl_PREREQ_SYS_H_WINSOCK2.
2572         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
2573         * doc/posix-functions/gethostname.texi: More details.
2574
2575 2008-10-25  Bruno Haible  <bruno@clisp.org>
2576
2577         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
2578         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
2579         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
2580
2581         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
2582         here ...
2583         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
2584         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
2585         gl_UNISTD_H_DEFAULTS.
2586
2587 2008-10-25  Eric Blake  <ebb9@byu.net>
2588
2589         signbit: avoid spurious compiler failure
2590         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
2591         declarations inside function.
2592
2593 2008-10-24  Simon Josefsson  <simon@josefsson.org>
2594             Bruno Haible  <bruno@clisp.org>
2595
2596         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
2597         * modules/random_r (Depends-on): Add stdint.
2598
2599 2008-10-24  Bruno Haible  <bruno@clisp.org>
2600
2601         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
2602         Eggert.
2603         * modules/strerror (License): Likewise.
2604
2605 2008-10-24  Jim Meyering  <meyering@redhat.com>
2606
2607         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
2608         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
2609
2610 2008-10-24  Eric Blake  <ebb9@byu.net>
2611
2612         getgroups: fix compilation when getgroups is available
2613         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
2614         but with <config.h> override of getgroups disabled.
2615
2616 2008-10-24  Simon Josefsson  <simon@josefsson.org>
2617
2618         * doc/gnulib.texi (Header files): Add note about C++ problems.
2619         Explained by Bruno Haible <bruno@clisp.org>.
2620
2621 2008-10-23  Bruno Haible  <bruno@clisp.org>
2622
2623         Define a dummy SA_NODEFER macro on Interix.
2624         * lib/signal.in.h (SA_NODEFER): Define fallback.
2625         Reported by Aleksey Cheusov <cheusov@tut.by> via
2626         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
2627
2628 2008-10-23  Bruno Haible  <bruno@clisp.org>
2629
2630         * modules/freadahead (License): Change to LGPLv2+.
2631         Suggested by Simon Josefsson.
2632
2633 2008-10-23  Jim Meyering  <meyering@redhat.com>
2634
2635         random_r: new module
2636         * modules/random_r: New file.
2637         * m4/random_r.m4: New file.
2638         * lib/random_r.c: New file, from glibc.
2639         * modules/random_r-tests: New file.
2640         * tests/test-random_r.c: New file.
2641         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
2642          Declare.
2643         (RAND_MAX): Define.
2644         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
2645         * modules/stdlib: Substitute them, too.
2646         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
2647         * doc/glibc-functions/initstate_r.texi: Mention the new module.
2648         * doc/glibc-functions/random_r.texi: Likewise.
2649         * doc/glibc-functions/setstate_r.texi: Likewise.
2650         * doc/glibc-functions/srandom_r.texi: Likewise.
2651         * config/srclist.txt: Mention it.
2652
2653 2008-10-23  David Lutterkort  <lutter@redhat.com>
2654
2655         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
2656         link requirement
2657
2658 2008-10-23  Jim Meyering  <meyering@redhat.com>
2659
2660         selinux-h: mark parameters of stub functions as intentionally unused
2661         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
2662         * lib/se-context.in.h: Likewise.
2663
2664 2008-10-22  Simon Josefsson  <simon@josefsson.org>
2665
2666         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
2667
2668 2008-10-22  Simon Josefsson  <simon@josefsson.org>
2669
2670         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
2671
2672 2008-10-22  Eric Blake  <ebb9@byu.net>
2673
2674         glthread/thread: avoid compiler warning
2675         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
2676         Add unreachable abort to silence compiler.
2677
2678 2008-10-22  Eric Blake  <ebb9@byu.net>
2679
2680         netdb: also supply struct addrinfo for cygwin 1.5.x
2681         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
2682         older cygwin.
2683         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
2684         cygwin.
2685         * doc/posix-headers/netdb.texi (netdb.h): Document this.
2686
2687 2008-10-22  Bruno Haible  <bruno@clisp.org>
2688
2689         * users.txt: Update entry about pspp.
2690
2691 2008-10-21  Bruno Haible  <bruno@clisp.org>
2692
2693         Simplification.
2694         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
2695         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
2696
2697         Simplification.
2698         * lib/ioctl.c (ioctl): Don't undefine.
2699         * lib/socket.c (socket): Don't undefine.
2700
2701         Remove unused module indicator macros.
2702         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
2703         GNULIB_$1 as a C macro.
2704
2705         * doc/posix-functions/close.texi: Undo last change.
2706         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
2707         Windows platforms.
2708
2709 2008-10-21  Bruno Haible  <bruno@clisp.org>
2710
2711         Add gethostname() declaration to <unistd.h>.
2712         * lib/unistd.in.h (gethostname): New declaration.
2713         * lib/gethostname.c: Include <unistd.h>.
2714         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
2715         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
2716         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
2717         and HAVE_GETHOSTNAME.
2718         * modules/gethostname (Depends-on): Add unistd.
2719         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
2720         (Include): Specify <unistd.h>.
2721         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
2722         HAVE_GETHOSTNAME.
2723         * tests/test-gethostname.c: Include <unistd.h> first.
2724
2725 2008-10-21  Bruno Haible  <bruno@clisp.org>
2726
2727         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
2728         * modules/select-tests (Depends-on): Likewise.
2729         Reported by Simon Josefsson.
2730
2731 2008-10-21  Simon Josefsson  <simon@josefsson.org>
2732
2733         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
2734         * lib/accept.c: New file, based on winsock.c.
2735         * lib/bind.c: New file, based on winsock.c.
2736         * lib/connect.c: New file, based on winsock.c.
2737         * lib/getpeername.c: New file, based on winsock.c.
2738         * lib/getsockname.c: New file, based on winsock.c.
2739         * lib/getsockopt.c: New file, based on winsock.c.
2740         * lib/ioctl.c: New file, based on winsock.c.
2741         * lib/listen.c: New file, based on winsock.c.
2742         * lib/recv.c: New file, based on winsock.c.
2743         * lib/recvfrom.c: New file, based on winsock.c.
2744         * lib/send.c: New file, based on winsock.c.
2745         * lib/sendto.c: New file, based on winsock.c.
2746         * lib/setsockopt.c: New file, based on winsock.c.
2747         * lib/shutdown.c: New file, based on winsock.c.
2748         * lib/socket.c: New file, based on winsock.c.
2749         * lib/w32sock.h: New file, based on winsock.c.
2750         * lib/winsock.c: Remove file.
2751         * modules/accept: Likewise.
2752         * modules/bind: Likewise.
2753         * modules/connect: Likewise.
2754         * modules/getpeername: Likewise.
2755         * modules/getsockname: Likewise.
2756         * modules/getsockopt: Likewise.
2757         * modules/ioctl: Likewise.
2758         * modules/listen: Likewise.
2759         * modules/recv: Likewise.
2760         * modules/recvfrom: Likewise.
2761         * modules/send: Likewise.
2762         * modules/sendto: Likewise.
2763         * modules/setsockopt: Likewise.
2764         * modules/shutdown: Likewise.
2765         * modules/socket: Use socket.c instead of winsock.c.
2766         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
2767         * doc/posix-functions/accept.texi: Doc fix.
2768         * doc/posix-functions/bind.texi: Doc fix.
2769         * doc/posix-functions/close.texi: Doc fix.
2770         * doc/posix-functions/connect.texi: Doc fix.
2771         * doc/posix-functions/getpeername.texi: Doc fix.
2772         * doc/posix-functions/getsockname.texi: Doc fix.
2773         * doc/posix-functions/getsockopt.texi: Doc fix.
2774         * doc/posix-functions/ioctl.texi: Doc fix.
2775         * doc/posix-functions/listen.texi: Doc fix.
2776         * doc/posix-functions/recv.texi: Doc fix.
2777         * doc/posix-functions/recvfrom.texi: Doc fix.
2778         * doc/posix-functions/send.texi: Doc fix.
2779         * doc/posix-functions/sendto.texi: Doc fix.
2780         * doc/posix-functions/setsockopt.texi: Doc fix.
2781         * doc/posix-functions/shutdown.texi: Doc fix.
2782         * doc/posix-functions/socket.texi: Doc fix.
2783
2784 2008-10-20  Bruno Haible  <bruno@clisp.org>
2785
2786         Take into account the role of SIGABRT_COMPAT on Windows 2008.
2787         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
2788         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
2789         as an alias for SIGABRT.
2790         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
2791         (sigaction): Map it to SIGABRT.
2792         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
2793
2794 2008-10-20  Bruno Haible  <bruno@clisp.org>
2795
2796         * lib/fts.c: Don't include lstat.h.
2797         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
2798
2799         Move the lstat() declaration to <sys/stat.h>.
2800         * lib/lstat.h: Remove file.
2801         * lib/sys_stat.in.h: Add special invocation convention.
2802         (lstat): New declaration.
2803         * lib/lstat.c (orig_lstat): New function.
2804         (rpl_lstat): Use orig_lstat instead of lstat.
2805         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
2806         AC_C_INLINE. Set REPLACE_LSTAT.
2807         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
2808         and REPLACE_LSTAT.
2809         * modules/lstat (Files): Remove lib/lstat.h.
2810         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
2811         (Include): Specify <sys/stat.h> instead of lstat.h.
2812         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
2813         REPLACE_LSTAT.
2814         * NEWS: Mention the change.
2815
2816 2008-10-20  Bruno Haible  <bruno@clisp.org>
2817
2818         * modules/posix_spawn-tests: New file.
2819         * tests/test-posix_spawn3.c: New file.
2820
2821 2008-10-20  Bruno Haible  <bruno@clisp.org>
2822
2823         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
2824         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
2825         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
2826         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
2827         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
2828
2829 2008-10-20  Bruno Haible  <bruno@clisp.org>
2830
2831         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
2832         of posix_spawn on AIX 5.3.
2833
2834 2008-10-20  Bruno Haible  <bruno@clisp.org>
2835
2836         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
2837
2838 2008-10-20  Bruno Haible  <bruno@clisp.org>
2839
2840         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
2841         of AC_LANG_PROGRAM.
2842
2843 2008-10-20  Simon Josefsson  <simon@josefsson.org>
2844
2845         * lib/netdb.in.h: Don't define GNU specific constants until they
2846         are supported or needed.  Reported by Bruno Haible
2847         <bruno@clisp.org>.
2848
2849 2008-10-20  Simon Josefsson  <simon@josefsson.org>
2850
2851         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
2852
2853 2008-10-20  Simon Josefsson  <simon@josefsson.org>
2854
2855         * lib/getaddrinfo.h: Remove file.
2856         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
2857         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
2858         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
2859         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
2860         * modules/netdb: Substitute GNULIB_GETADDRINFO.
2861         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
2862         * tests/test-getaddrinfo.c: Likewise.
2863         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
2864         * NEWS: Mention change.
2865
2866 2008-10-19  Bruno Haible  <bruno@clisp.org>
2867
2868         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
2869
2870 2008-10-19  Bruno Haible  <bruno@clisp.org>
2871
2872         * lib/wait-process.c: Include simply <sys/wait.h>.
2873         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
2874         WIFSTOPPED): Remove fallback definitions.
2875         * modules/wait-process (Depends-on): Add sys_wait.
2876
2877         New module 'sys_wait'.
2878         * modules/sys_wait: New file.
2879         * lib/sys_wait.in.h: New file, partially copied from
2880         lib/wait-process.c.
2881         * m4/sys_wait_h.m4: New file.
2882         * doc/posix-headers/sys_wait.texi: Mention the new module.
2883
2884 2008-10-19  Bruno Haible  <bruno@clisp.org>
2885
2886         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
2887
2888 2008-10-19  Bruno Haible  <bruno@clisp.org>
2889
2890         Assume that waitpid() fills an 'int' status, not a 'union wait'.
2891         * lib/wait-process.c (WAIT_T): Remove type.
2892         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
2893         (wait_subprocess): Update.
2894
2895 2008-10-19  Bruno Haible  <bruno@clisp.org>
2896
2897         New module 'atoll'.
2898         * modules/atoll: New file.
2899         * lib/stdlib.in.h (atoll): New declaration.
2900         * lib/atoll.c: New file, from glibc with modifications.
2901         * m4/atoll.m4: New file.
2902         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
2903         HAVE_ATOLL.
2904         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
2905         * doc/posix-functions/atoll.texi: Mention the new module.
2906
2907 2008-10-19  Bruno Haible  <bruno@clisp.org>
2908
2909         Add strtoull() declaration to <stdlib.h>.
2910         * lib/stdlib.in.h (strtoull): New declaration.
2911         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
2912         Set HAVE_STRTOULL.
2913         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
2914         HAVE_STRTOULL.
2915         * modules/strtoull (Depends-on): Add stdlib.
2916         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
2917         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
2918         HAVE_STRTOULL.
2919
2920 2008-10-19  Bruno Haible  <bruno@clisp.org>
2921
2922         Add strtoll() declaration to <stdlib.h>.
2923         * lib/stdlib.in.h (strtoll): New declaration.
2924         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
2925         Set HAVE_STRTOLL.
2926         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
2927         HAVE_STRTOLL.
2928         * modules/strtoll (Depends-on): Add stdlib.
2929         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
2930         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
2931
2932 2008-10-19  Bruno Haible  <bruno@clisp.org>
2933
2934         * modules/bcopy (Depends-on): Add strings.
2935         (Include): Specify <strings.h>.
2936
2937 2008-10-19  Bruno Haible  <bruno@clisp.org>
2938
2939         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
2940
2941 2008-10-19  Bruno Haible  <bruno@clisp.org>
2942
2943         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
2944         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
2945         mingw.
2946
2947 2008-10-19  Bruno Haible  <bruno@clisp.org>
2948
2949         * lib/atanl.c: Don't include isnanl.h.
2950         * lib/cosl.c: Likewise.
2951         * lib/ldexpl.c: Likewise.
2952         * lib/logl.c: Likewise.
2953         * lib/sinl.c: Likewise.
2954         * lib/sqrtl.c: Likewise.
2955         * lib/tanl.c: Likewise.
2956
2957         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
2958         * lib/isnanf.h: Remove file.
2959         * lib/isnand.h: Remove file.
2960         * lib/isnanl.h: Remove file.
2961         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
2962         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
2963         macros.
2964         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
2965         HAVE_ISNANF, don't define it as a C macro.
2966         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
2967         HAVE_ISNAND, don't define it as a C macro.
2968         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
2969         HAVE_ISNANL, don't define it as a C macro.
2970         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
2971         HAVE_ISNAN[FDL].
2972         * modules/isnanf (Files): Remove lib/isnanf.h.
2973         (Depends-on): Add math.
2974         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
2975         (Include): Specify <math.h> instead of isnanf.h.
2976         * modules/isnand (Files): Remove lib/isnand.h.
2977         (Depends-on): Add math.
2978         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
2979         (Include): Specify <math.h> instead of isnand.h.
2980         * modules/isnanl (Files): Remove lib/isnanl.h.
2981         (Depends-on): Add math.
2982         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
2983         (Include): Specify <math.h> instead of isnanl.h.
2984         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
2985         HAVE_ISNAN[FDL].
2986         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
2987         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
2988         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
2989         * NEWS: Mention the change.
2990
2991 2008-10-18  Bruno Haible  <bruno@clisp.org>
2992
2993         Add getusershell(), setusershell(), endusershell() declarations to
2994         <unistd.h>.
2995         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
2996         declarations.
2997         * lib/getusershell.c: Include unistd.h.
2998         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
2999         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
3000         HAVE_GETUSERSHELL.
3001         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
3002         and HAVE_GETUSERSHELL.
3003         * modules/getusershell (Depends-on): Add unistd, extensions.
3004         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3005         (Include): Specify <unistd.h>.
3006         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
3007         HAVE_GETUSERSHELL.
3008
3009 2008-10-18  Bruno Haible  <bruno@clisp.org>
3010
3011         Add a getloadavg() declaration to <stdlib.h>.
3012         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
3013         getloadavg declaration.
3014         (getloadavg): New declaration.
3015         * lib/getloadavg.c: Include <stdlib.h> first.
3016         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
3017         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
3018         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
3019         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
3020         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
3021         * modules/getloadavg (Depends-on): Add stdlib, extensions.
3022         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3023         (Include): Specify <stdlib.h>.
3024         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
3025         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
3026
3027 2008-10-18  Bruno Haible  <bruno@clisp.org>
3028
3029         * lib/dirchownmod.c: Don't include lchmod.h.
3030
3031         Move the lchmod() declaration to <sys/stat.h>.
3032         * lib/lchmod.h: Remove file.
3033         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
3034         (lchmod): New declaration, moved here from lib/lchown.h.
3035         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
3036         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
3037         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
3038         and HAVE_LCHMOD.
3039         * modules/lchmod (Files): Remove lib/lchmod.h.
3040         (Depends-on): Add sys_stat, extensions.
3041         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
3042         (Include): Specify <sys/stat.h> instead of lchmod.h.
3043         * modules/sys_stat (Depends-on): Add link-warning.
3044         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
3045         definition of GL_LINK_WARNING.
3046         * NEWS: Mention the change.
3047
3048 2008-10-18  Bruno Haible  <bruno@clisp.org>
3049
3050         * lib/fchdir.c: Don't include dirfd.h.
3051         * lib/fts.c: Likewise.
3052         * lib/getcwd.c: Likewise.
3053         * lib/glob.c: Likewise.
3054
3055         Move the dirfd() declaration to <dirent.h>.
3056         * lib/dirfd.h: Remove file.
3057         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
3058         (dirfd): New declaration.
3059         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
3060         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
3061         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
3062         HAVE_DECL_DIRFD.
3063         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
3064         HAVE_DECL_DIRFD.
3065         * modules/dirfd (Files): Remove lib/dirfd.h.
3066         (Depends-on): Add dirent, extensions.
3067         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
3068         (Include): Specify <dirent.h> instead of dirfd.h.
3069         * modules/dirent (Depends-on): Add link-warning.
3070         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
3071         definition of GL_LINK_WARNING.
3072         * NEWS: Mention the change.
3073
3074 2008-10-18  Bruno Haible  <bruno@clisp.org>
3075
3076         Move the euidaccess() declaration to <unistd.h>.
3077         * lib/euidaccess.h: Remove file.
3078         * lib/unistd.in.h (euidaccess): New declaration.
3079         * lib/euidaccess.c: Don't include euidaccess.h.
3080         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
3081         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
3082         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
3083         and HAVE_EUIDACCESS.
3084         * modules/euidaccess (Files): Remove lib/euidaccess.h.
3085         (Depends-on): Add unistd.
3086         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3087         (Include): Specify <unistd.h> instead of euidaccess.h.
3088         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
3089         HAVE_EUIDACCESS.
3090         * NEWS: Mention the change.
3091
3092 2008-10-18  Bruno Haible  <bruno@clisp.org>
3093
3094         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
3095
3096         Move the getdomainname() declaration to <unistd.h>.
3097         * lib/getdomainname.h: Remove file.
3098         * lib/unistd.in.h (getdomainname): New declaration.
3099         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
3100         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
3101         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
3102         HAVE_GETDOMAINNAME.
3103         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3104         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
3105         * modules/getdomainname (Files): Remove lib/getdomainname.h.
3106         (Depends-on): Add unistd, extensions.
3107         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3108         (Includes): Specify <unistd.h> instead of getdomainname.h.
3109         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
3110         HAVE_GETDOMAINNAME.
3111         * NEWS: Mention the change.
3112
3113 2008-10-18  Bruno Haible  <bruno@clisp.org>
3114
3115         * modules/dirent: New file.
3116         * m4/dirent_h.m4: New file.
3117         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
3118         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
3119         * modules/fchdir (Files): Remove lib/dirent.in.h.
3120         (Depends-on): Add dirent.
3121         (Makefile.am): Move rules to modules/dirent.
3122         * doc/posix-headers/dirent.texi: Mention the new module.
3123
3124 2008-10-18  Bruno Haible  <bruno@clisp.org>
3125
3126         Avoid -Wunused-parameter warnings in public gnulib header files.
3127         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
3128         macro.
3129         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
3130
3131 2008-10-18  Bruno Haible  <bruno@clisp.org>
3132
3133         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
3134         * doc/glibc-functions/error.texi: Mention the module 'error'.
3135         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
3136         * doc/glibc-functions/getdomainname.texi: Mention the module
3137         'getdomainname'.
3138         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
3139         * doc/glibc-functions/getpagesize.texi: Mention the module
3140         'getpagesize'.
3141         * doc/glibc-functions/getusershell.texi: Mention the module
3142         'getusershell'.
3143         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
3144         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
3145         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
3146         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
3147         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
3148         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
3149         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
3150         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
3151         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
3152         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
3153         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
3154         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
3155         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
3156         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
3157
3158 2008-10-17  Bruno Haible  <bruno@clisp.org>
3159
3160         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
3161         HP-UX and IRIX, use -0.0L.
3162         * tests/test-ceill.c (minus_zero): Likewise.
3163         * tests/test-floorl.c (minus_zero): Likewise.
3164         * tests/test-frexpl.c (minus_zero): Likewise.
3165         * tests/test-isnan.c (minus_zerol): Likewise.
3166         * tests/test-isnanl.h (minus_zero): Likewise.
3167         * tests/test-ldexpl.c (minus_zero): Likewise.
3168         * tests/test-roundl.c (minus_zero): Likewise.
3169         * tests/test-signbit.c (minus_zerol): Likewise.
3170         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
3171         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
3172         * tests/test-truncl.c (minus_zero): Likewise.
3173         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
3174         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
3175         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
3176         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
3177
3178 2008-10-17  Bruno Haible  <bruno@clisp.org>
3179
3180         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
3181         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
3182         that it gets activated only for gcc >= 3.0.
3183         * lib/dirent.in.h: Likewise.
3184         * lib/errno.in.h: Likewise.
3185         * lib/fcntl.in.h: Likewise.
3186         * lib/float.in.h: Likewise.
3187         * lib/iconv.in.h: Likewise.
3188         * lib/inttypes.in.h: Likewise.
3189         * lib/locale.in.h: Likewise.
3190         * lib/math.in.h: Likewise.
3191         * lib/netdb.in.h: Likewise.
3192         * lib/netinet_in.in.h: Likewise.
3193         * lib/search.in.h: Likewise.
3194         * lib/signal.in.h: Likewise.
3195         * lib/spawn.in.h: Likewise.
3196         * lib/stdarg.in.h: Likewise.
3197         * lib/stdint.in.h: Likewise.
3198         * lib/stdio.in.h: Likewise.
3199         * lib/stdlib.in.h: Likewise.
3200         * lib/string.in.h: Likewise.
3201         * lib/strings.in.h: Likewise.
3202         * lib/sys_file.in.h: Likewise.
3203         * lib/sys_ioctl.in.h: Likewise.
3204         * lib/sys_select.in.h: Likewise.
3205         * lib/sys_socket.in.h: Likewise.
3206         * lib/sys_stat.in.h: Likewise.
3207         * lib/sys_time.in.h: Likewise.
3208         * lib/sysexits.in.h: Likewise.
3209         * lib/time.in.h: Likewise.
3210         * lib/unistd.in.h: Likewise.
3211         * lib/wchar.in.h: Likewise.
3212         * lib/wctype.in.h: Likewise.
3213         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3214
3215 2008-10-17  Jim Meyering  <meyering@redhat.com>
3216
3217         ignore-value: don't depend on inline module
3218         * modules/ignore-value (Depends-on): Remove 'inline'.
3219         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
3220         Suggestion from Bruno Haible.
3221
3222 2008-10-17  Bruno Haible  <bruno@clisp.org>
3223
3224         New implementation of condition variables for Win32.
3225         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
3226         (gl_linked_waitqueue_t): New type.
3227         (gl_cond_t): Use it.
3228         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
3229         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
3230         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
3231         (glthread_cond_init_func, glthread_cond_wait_func,
3232         glthread_cond_timedwait_func, glthread_cond_signal_func,
3233         glthread_cond_broadcast_func, glthread_cond_destroy_func):
3234         Reimplemented on the basis of gl_linked_waitqueue_t.
3235         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
3236         gl_waitqueue_t.
3237         (gl_rwlock_t): Update.
3238         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
3239
3240 2008-10-17  Simon Josefsson  <simon@josefsson.org>
3241
3242         * modules/recvfrom (Depends-on): Add dependency on getpeername.
3243         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
3244
3245 2008-10-17  Jim Meyering  <meyering@redhat.com>
3246
3247         ignore-value: new module
3248         * modules/ignore-value: New file.
3249         * lib/ignore-value.h: New file.
3250         * MODULES.html.sh (Compiler warning management): New section,
3251         just for this module.  More to come.
3252
3253 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3254
3255         open-safer.c: avoid 'signed and unsigned in conditional...' warning
3256         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
3257         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
3258
3259 2008-10-16  Jim Meyering  <meyering@redhat.com>
3260
3261         openat-die.c: avoid 'no previous prototype' warning
3262         * lib/openat-die.c: Include "openat.h".
3263         Reported by Reuben Thomas <rrt@sc3d.org>.
3264
3265 2008-10-16  Simon Josefsson  <simon@josefsson.org>
3266
3267         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
3268         * lib/netdb.in.h: Fix typo.
3269         Reported by Bruno Haible  <bruno@clisp.org>
3270
3271         * lib/netdb.in.h: Include sys/socket.h for platforms without
3272         netdb.h, to get structures like hostent on MinGW.
3273         * modules/netdb (Depends-on): Add sys_socket.
3274
3275 2008-10-15  Simon Josefsson  <simon@josefsson.org>
3276
3277         * modules/netdb, modules/netdb-tests: New file.
3278         * m4/netdb_h.m4: New file.
3279         * lib/netdb.in.h: Add, currently just an empty file pending
3280         definitions.
3281         * tests/test-netdb.c: New file.
3282         * doc/posix-headers/netdb.texi: Mention that we replace it if
3283         needed.
3284         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3285         netdb.
3286
3287 2008-10-15  Simon Josefsson  <simon@josefsson.org>
3288
3289         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
3290         with code.
3291
3292 2008-10-13  Bruno Haible  <bruno@clisp.org>
3293
3294         * lib/glthread/cond.c (glthread_cond_wait_func,
3295         glthread_cond_timedwait_func): Add a comment.
3296
3297 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
3298
3299         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
3300         * tests/test-select.c: Likewise,
3301
3302 2008-10-13  Bruno Haible  <bruno@clisp.org>
3303
3304         * lib/glthread/cond.c (glthread_cond_wait_func,
3305         glthread_cond_timedwait_func): Fix variable name.
3306         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
3307
3308 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
3309
3310         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
3311         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
3312         struct sockaddr.sa_len.
3313         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
3314
3315 2008-10-13  Simon Josefsson  <simon@josefsson.org>
3316
3317         * build-aux/pmccabe2html: Add css and css_url parameters.
3318
3319 2008-10-12  Bruno Haible  <bruno@clisp.org>
3320
3321         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
3322         calling aclx_get.
3323         Reported by Rainer Tammer <tammer@tammer.net>.
3324
3325 2008-10-12  Bruno Haible  <bruno@clisp.org>
3326
3327         Use msvcrt aware primitives for creation/termination of Win32 threads.
3328         * lib/glthread/thread.c: Include <process.h>.
3329         (glthread_create_func): Use _beginthreadex instead of CreateThread.
3330         (wrapper_func): Update signature.
3331         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
3332
3333 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
3334             Bruno Haible  <bruno@clisp.org>
3335
3336         Provide a Win32 implementation of the 'cond' module.
3337         * lib/glthread/cond.h [USE_WIN32]: New implementation.
3338         * lib/glthread/cond.c (glthread_cond_init_func,
3339         glthread_cond_wait_func, glthread_cond_timedwait_func,
3340         glthread_cond_signal_func, glthread_cond_broadcast_func,
3341         glthread_cond_destroy_func) [USE_WIN32]: New functions.
3342         * modules/cond (Dependencies): Add gettimeofday.
3343
3344 2008-10-11  Bruno Haible  <bruno@clisp.org>
3345
3346         Make sleep work on older versions of mingw.
3347         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
3348         only whether it exists.
3349         * doc/posix-functions/sleep.texi: Mention the problem with older
3350         versions of mingw.
3351
3352 2008-10-11  Bruno Haible  <bruno@clisp.org>
3353
3354         New module 'shutdown'.
3355         * modules/shutdown: New file.
3356         * lib/sys_socket.in.h (shutdown): New declaration.
3357         * lib/winsock.c (shutdown): New function.
3358         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
3359         GNULIB_SHUTDOWN.
3360         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
3361         * doc/posix-functions/shutdown.texi: Document the new module.
3362
3363 2008-10-11  Jim Meyering  <meyering@redhat.com>
3364
3365         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
3366
3367 2008-10-11  Bruno Haible  <bruno@clisp.org>
3368
3369         New module 'fclose'.
3370         * modules/fclose: New file.
3371         * lib/stdio.in.h (fclose): New declaration.
3372         * lib/fclose.c: New file.
3373         * m4/fclose.m4: New file.
3374         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
3375         REPLACE_FCLOSE.
3376         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
3377         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
3378         REPLACE_FCLOSE.
3379         * modules/close (Depends-on): fclose.
3380         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
3381
3382 2008-10-11  Bruno Haible  <bruno@clisp.org>
3383
3384         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
3385         set errno and don't call _close.
3386
3387 2008-10-10  Bruno Haible  <bruno@clisp.org>
3388
3389         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
3390         ACL, not afterwards. Fixes test failure on Cygwin.
3391
3392 2008-10-09  Ben Pfaff  <blp@gnu.org>
3393
3394         * build-aux/announce-gen: Fix gnulib version related part of usage
3395         message.  Die with a useful error message if no tarballs are
3396         found.
3397
3398 2008-10-10  Jim Meyering  <meyering@redhat.com>
3399
3400         bootstrap: use git's --depth=N option only if it's supported
3401         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
3402         recognize the --depth option.  Reported by Pádraig Brady.
3403
3404 2008-10-09  Bruno Haible  <bruno@clisp.org>
3405
3406         New module 'ioctl'.
3407         * modules/ioctl: New file.
3408         * lib/sys_socket.in.h (ioctl): Remove declaration.
3409         * lib/winsock.c: Include <sys/ioctl.h>.
3410         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
3411         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
3412         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
3413         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
3414         * doc/posix-functions/ioctl.texi: Mention the new module.
3415
3416 2008-10-09  Bruno Haible  <bruno@clisp.org>
3417
3418         New module 'sys_ioctl'.
3419         * lib/sys_ioctl.in.h: New file.
3420         * m4/sys_ioctl_h.m4: New file.
3421         * modules/sys_ioctl: New file.
3422         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
3423
3424 2008-10-09  Bruno Haible  <bruno@clisp.org>
3425
3426         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
3427         * lib/winsock.c: Include <stdarg.h>.
3428         (rpl_ioctl): Change to second argument 'int' and then varargs.
3429
3430 2008-10-09  Bruno Haible  <bruno@clisp.org>
3431
3432         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
3433         when the sys_socket module is present and the system has <winsock2.h>.
3434
3435 2008-10-09  Bruno Haible  <bruno@clisp.org>
3436
3437         * doc/posix-functions/close.texi: Mention module 'close' instead of
3438         module 'sys_socket'.
3439
3440 2008-10-09  Bruno Haible  <bruno@clisp.org>
3441
3442         * doc/glibc-headers/sys_ioctl.texi: New file.
3443         * doc/gnulib.texi: Include it.
3444
3445 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
3446             Bruno Haible  <bruno@clisp.org>
3447
3448         Combine the two replacements of 'close'.
3449         * lib/sys_socket.in.h (close): Define to a reminder to include
3450         <unistd.h>.
3451         (_gl_close_fd_maybe_socket): New declaration.
3452         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
3453         * lib/winsock.c (close): Remove undefinition.
3454         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
3455         needed for the gnulib module 'close'.
3456         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
3457         define to an error symbol or to a warning, if suitable.
3458         * lib/close.c: Include <sys/socket.h>.
3459         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
3460         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
3461         UNISTD_H_HAVE_WINSOCK2_H.
3462         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
3463         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3464         UNISTD_H_HAVE_WINSOCK2_H.
3465         * modules/sys_socket (Files): Add m4/unistd_h.m4.
3466         (configure.ac): Set a module indicator.
3467         (Makefile.am): Substitute GNULIB_CLOSE.
3468         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
3469         * modules/poll-tests (Depends-on): Add close.
3470         * modules/select-tests (Depends-on): Likewise.
3471
3472 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
3473             Bruno Haible  <bruno@clisp.org>
3474
3475         New module 'close'.
3476         * modules/close: New file.
3477         * lib/unistd.in.h (close): Move declaration out of the
3478         FCHDIR_REPLACEMENT scope.
3479         (_gl_unregister_fd): New declaration.
3480         * lib/close.c: New file.
3481         * lib/fchdir.c (rpl_close): Remove function.
3482         * m4/close.m4: New file.
3483         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
3484         close.
3485         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
3486         REPLACE_CLOSE.
3487         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
3488         REPLACE_CLOSE.
3489         * modules/fchdir (Depends-on): Add close.
3490
3491 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
3492             Bruno Haible  <bruno@clisp.org>
3493
3494         * lib/fcntl.in.h (open): Simplify conditionals.
3495         (_gl_register_fd): New declaration.
3496         * lib/fchdir.c (rpl_open): Remove function.
3497         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
3498         also.
3499         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
3500         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
3501         open.
3502
3503 2008-10-09  Jim Meyering  <meyering@redhat.com>
3504
3505         GNUmakefile: use the more name-space-friendly "_version"
3506         * top/GNUmakefile (_dummy): Update.
3507         (_version): Rename from "version".
3508
3509 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
3510             Bruno Haible  <bruno@clisp.org>
3511
3512         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
3513         rpl_close.
3514         (_gl_register_fd): New function, extracted from rpl_open.
3515         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
3516         (rpl_open, rpl_opendir): Use _gl_register_fd.
3517
3518 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
3519
3520         Fix organization of 'open' replacement.
3521         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
3522         (gl_FUNC_OPEN): Use it.
3523         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
3524
3525 2008-10-08  Bruno Haible  <bruno@clisp.org>
3526
3527         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
3528
3529 2008-10-08  Simon Josefsson  <simon@josefsson.org>
3530
3531         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
3532         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
3533         listen).
3534
3535 2008-10-08  Eric Blake  <ebb9@byu.net>
3536
3537         GNUmakefile: add 'make version' target
3538         * top/GNUmakefile (_curr-ver): Split version update rules...
3539         (version): ...into a target.
3540
3541 2008-10-07  Bruno Haible  <bruno@clisp.org>
3542
3543         Use a more portable replacement expression for -0.0L.
3544         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
3545         instead of -0.0L. Fix m4 quotation.
3546
3547         * tests/test-signbit.c: Include <float.h>.
3548         (minus_zero): New variable.
3549         (test_signbitl): Use minus_zero instead of -zero.
3550         * modules/signbit-tests (Depends-on): Add float.
3551
3552         * tests/test-ceill.c: Include <float.h>.
3553         (zero): Remove variable.
3554         (minus_zero): New variable.
3555         (main): Use minus_zero instead of -zero.
3556         * modules/ceill-tests (Depends-on): Add float.
3557
3558         * tests/test-floorl.c: Include <float.h>.
3559         (zero): Remove variable.
3560         (minus_zero): New variable.
3561         (main): Use minus_zero instead of -zero.
3562         * modules/floorl-tests (Depends-on): Add float.
3563
3564         * tests/test-roundl.c: Include <float.h>.
3565         (zero): Remove variable.
3566         (minus_zero): New variable.
3567         (main): Use minus_zero instead of -zero.
3568         * modules/roundl-tests (Depends-on): Add float.
3569
3570         * tests/test-truncl.c: Include <float.h>.
3571         (zero): Remove variable.
3572         (minus_zero): New variable.
3573         (main): Use minus_zero instead of -zero.
3574         * modules/truncl-tests (Depends-on): Add float.
3575
3576         * tests/test-frexpl.c (zero): Remove variable.
3577         (minus_zero): New variable.
3578         (main): Use minus_zero instead of -zero.
3579         * modules/frexpl-tests (Depends-on): Add float.
3580
3581         * tests/test-isnan.c (zerol): Remove variable.
3582         (minus_zerol): New variable.
3583         (test_long_double): Use minus_zerol instead of -zerol.
3584         * modules/isnan-tests (Depends-on): Add float.
3585
3586         * tests/test-isnanl.h (zero): Remove variable.
3587         (minus_zero): New variable.
3588         (main): Use minus_zero instead of -zero.
3589         * modules/isnanl-nolibm-tests (Depends-on): Add float.
3590         * modules/isnanl-tests (Depends-on): Add float.
3591
3592         * tests/test-ldexpl.c (zero): Remove variable.
3593         (minus_zero): New variable.
3594         (main): Use minus_zero instead of -zero.
3595         * modules/ldexpl-tests (Depends-on): Add float.
3596
3597         * tests/test-snprintf-posix.h (zerol): Remove variable.
3598         (minus_zerol): New variable.
3599         (test_function): Use minus_zerol instead of -zerol.
3600         * modules/snprintf-posix-tests (Depends-on): Add float.
3601         * modules/vsnprintf-posix-tests (Depends-on): Add float.
3602
3603         * tests/test-sprintf-posix.h (zerol): Remove variable.
3604         (minus_zerol): New variable.
3605         (test_function): Use minus_zerol instead of -zerol.
3606         * modules/sprintf-posix-tests (Depends-on): Add float.
3607         * modules/vsprintf-posix-tests (Depends-on): Add float.
3608
3609         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
3610         (minus_zerol): New variable.
3611         (test_function): Use minus_zerol instead of -zerol.
3612         * modules/vasnprintf-posix-tests (Depends-on): Add float.
3613
3614         * tests/test-vasprintf-posix.c (zerol): Remove variable.
3615         (minus_zerol): New variable.
3616         (test_function): Use minus_zerol instead of -zerol.
3617         * modules/vasprintf-posix-tests (Depends-on): Add float.
3618
3619 2008-10-07  Simon Josefsson  <simon@josefsson.org>
3620
3621         * MODULES.html.sh (Support for building documentation): Mention
3622         pmccabe2html.  Sort entries.
3623
3624         Add pmccabe2html module, from gnupdf.
3625         * build-aux/pmccabe.css: New file.
3626         * build-aux/pmccabe2html: New file.
3627         * m4/pmccabe2html.m4: New file.
3628         * modules/pmccabe2html: New file.
3629
3630 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
3631
3632         flock: new module
3633         * MODULES.html.sh: Add to list of modules.
3634         * lib/flock.c: flock implementation for Windows and Unix systems
3635         which have fcntl.
3636         * doc/glibc-functions/flock.texi: Update documentation.
3637         * lib/sys_file.in.h: <sys/file.h> header file.
3638         * m4/flock.m4: M4 macros.
3639         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
3640         * modules/flock: flock module.
3641         * modules/flock-tests: flock tests module.
3642         * modules/sys_file: sys/file.h module.
3643         * tests/test-flock.c: test suite for flock.
3644
3645 2008-10-06  Jim Meyering  <meyering@redhat.com>
3646
3647         bootstrap: check for LT_INIT more portably still ;-)
3648         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
3649         Spotted by Bruno Haible.
3650
3651 2008-10-06  Eric Blake  <ebb9@byu.net>
3652
3653         test-signbit: avoid tripping Irix cc bug on -0.0L
3654         * tests/test-signbit.c (minus_zerol): Delete, and replace with
3655         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
3656         entire testsuite consistent and avoids an Irix 6.2 bug.
3657
3658 2008-10-05  Bruno Haible  <bruno@clisp.org>
3659             Jim Meyering  <jim@meyering.net>
3660
3661         Add an option for ignoring EPIPE during close_stdout.
3662         * lib/closeout.h: Include <stdbool.h>.
3663         (close_stdout_set_ignore_EPIPE): New declaration.
3664         * lib/closeout.c: Include <stdbool.h>.
3665         (ignore_EPIPE): New variable.
3666         (close_stdout_set_ignore_EPIPE): New function.
3667         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
3668         * lib/close-stream.c (close_stream): Mention the possible EPIPE
3669         failure.
3670         * modules/closeout (Depends-on): Add stdbool.
3671
3672 2008-10-05  Bruno Haible  <bruno@clisp.org>
3673
3674         * modules/accept: New file.
3675         * modules/bind: New file.
3676         * modules/connect: New file.
3677         * modules/getpeername: New file.
3678         * modules/getsockname: New file.
3679         * modules/getsockopt: New file.
3680         * modules/listen: New file.
3681         * modules/recv: New file.
3682         * modules/recvfrom: New file.
3683         * modules/send: New file.
3684         * modules/sendto: New file.
3685         * modules/setsockopt: New file.
3686         * modules/socket: New file.
3687         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
3688         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
3689         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
3690         the particular module is requested. Add a link warning when the
3691         particular module is not requested.
3692         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
3693         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
3694         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
3695         the particular module is requested.
3696         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
3697         gl_SYS_SOCKET_H_DEFAULTS): New macros.
3698         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
3699         * modules/sys_socket (Depends-on): Add link-warning.
3700         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
3701         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
3702         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
3703         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
3704         GL_LINK_WARNING.
3705         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
3706         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
3707         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
3708         * doc/posix-functions/getpeername.texi: Mention the new module
3709         'getpeername'.
3710         * doc/posix-functions/getsockname.texi: Mention the new module
3711         'getsockname'.
3712         * doc/posix-functions/getsockopt.texi: Mention the new module
3713         'getsockopt'.
3714         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
3715         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
3716         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
3717         * doc/posix-functions/send.texi: Mention the new module 'send'.
3718         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
3719         * doc/posix-functions/setsockopt.texi: Mention the new module
3720         'setsockopt'.
3721         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
3722         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
3723         listen, connect, accept.
3724         * modules/select-tests (Depends-on): Likewise.
3725
3726 2008-10-05  Bruno Haible  <bruno@clisp.org>
3727
3728         * lib/winsock.c (strerror): Remove unused #undef.
3729         (rpl_close): Remove unused local variable.
3730
3731         * modules/sys_socket (Depends-on); Add errno.
3732
3733 2008-10-05  Bruno Haible  <bruno@clisp.org>
3734
3735         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
3736         (select): Add a link warning when the 'select' module is not used.
3737         * modules/sys_select (Depends-on): Add link-warning.
3738         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
3739         Suggested by Paolo Bonzini.
3740
3741 2008-10-05  Jim Meyering  <meyering@redhat.com>
3742
3743         bootstrap: check for LT_INIT more portably
3744         * build-aux/bootstrap: Avoid using grep -E, since it's not
3745         portable enough.  Suggestion from Bruno Haible.
3746
3747 2008-10-05  Bruno Haible  <bruno@clisp.org>
3748
3749         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
3750         as being fixed by gnulib.
3751
3752 2008-10-05  Bruno Haible  <bruno@clisp.org>
3753
3754         * modules/select-tests: New file, mostly copied from
3755         modules/sys_select-tests.
3756         * tests/test-select.c: New file, mostly copied from
3757         tests/test-sys_select.c.
3758         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
3759         * modules/sys_select-tests (Depends-on): Remove all dependencies.
3760         (Makefile.am): Remove test_sys_select_LDADD.
3761
3762         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
3763         to an undefined symbol, for an error message.
3764         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
3765         (gl_SYS_SELECT_H_DEFAULTS): New macro.
3766         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
3767         winsock-select.c here.
3768         * modules/sys_select (Files): Remove lib/winsock-select.c.
3769         (Depends-on): Remove alloca.
3770         (Makefile.am): Substitute GNULIB_SELECT.
3771         * modules/select: New file.
3772         * doc/posix-functions/select.texi: Update.
3773
3774 2008-10-05  Bruno Haible  <bruno@clisp.org>
3775
3776         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
3777         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
3778         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
3779         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
3780         getdtablesize.
3781         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
3782         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
3783
3784 2008-10-05  Bruno Haible  <bruno@clisp.org>
3785
3786         * modules/getdtablesize-tests: New file.
3787         * tests/test-getdtablesize.c: New file.
3788
3789         New module 'getdtablesize'.
3790         * lib/unistd.in.h (getdtablesize): New declaration.
3791         * lib/getdtablesize.c: New file.
3792         * m4/getdtablesize.m4: New file.
3793         * modules/getdtablesize: New file.
3794         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3795         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
3796         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
3797         HAVE_GETDTABLESIZE.
3798         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
3799
3800 2008-10-05  Bruno Haible  <bruno@clisp.org>
3801
3802         * modules/sched (Makefile.am): Fix typo.
3803         Reported by Simon Josefsson.
3804
3805 2008-10-05  Jim Meyering  <meyering@redhat.com>
3806
3807         bootstrap: check for LT_INIT, too
3808         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
3809         are deprecated.  Suggestion from Ralf Wildenhues.
3810
3811 2008-10-05  Bruno Haible  <bruno@clisp.org>
3812
3813         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
3814         overriding them by ours.
3815         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
3816
3817 2008-10-05  Jim Meyering  <meyering@redhat.com>
3818
3819         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
3820         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
3821         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
3822
3823 2008-10-04  Bruno Haible  <bruno@clisp.org>
3824
3825         * modules/dup2 (License): Change to LGPLv2+.
3826         * modules/sleep (License): Likewise.
3827         * modules/perror (License): Likewise.
3828         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
3829         Blake.
3830         * modules/signal (License): Likewise.
3831         * modules/sigprocmask (License): Likewise.
3832         * modules/raise (License): Change to LGPLv2+, with approval by Jim
3833         Meyering.
3834
3835 2008-10-04  Bruno Haible  <bruno@clisp.org>
3836
3837         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
3838         Reported by Rainer Tammer <tammer@tammer.net>.
3839
3840 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
3841             Bruno Haible  <bruno@clisp.org>
3842
3843         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
3844         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
3845         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
3846
3847 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
3848
3849         filevercmp: new module
3850         * lib/filevercmp.h: New function filevercmp comparing version strings.
3851         * lib/filevercmp.c: Implementation of filevercmp function.
3852         * modules/filevercmp: Module metadata.
3853         * tests/test-filevercmp.c: Unit test for new module.
3854         * modules/filevercmp-tests: Unit test metadata.
3855         * MODULES.html.sh: Add filevercmp module.
3856
3857 2008-10-03  Bruno Haible  <bruno@clisp.org>
3858
3859         * lib/c-ctype.h: Add comment.
3860         Reported by Jim Meyering.
3861
3862 2008-10-02  Bruno Haible  <bruno@clisp.org>
3863
3864         * modules/posix_spawn-internal (Depends-on): Add 'open'.
3865
3866 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
3867
3868         * build-aux/bootstrap: Allow renaming bootstrap, and change the
3869         name of bootstrap.conf accordingly.
3870
3871 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
3872
3873         * build-aux/bootstrap: Install git-merge-changelog configuration
3874         items into .gitconfig if needed.
3875
3876 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
3877
3878         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
3879         git repository, and initialize/update it accordingly.
3880
3881 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
3882
3883         * modules/fsync-tests: New file.
3884         * tests/test-fsync.c: New file.
3885
3886         New module 'fsync'.
3887         * lib/fsync.c: New file.
3888         * m4/fsync.m4: New file.
3889         * modules/fsync: New file.
3890         * lib/unistd.in.h (fsync): New declaration.
3891         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
3892         GNULIB_FSYNC and HAVE_FSYNC.
3893         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
3894         * MODULES.html.sh (posix_functions): Add fsync.
3895         * doc/posix-functions/fsync.texi: Mention the new module.
3896
3897 2008-10-02  Jim Meyering  <meyering@redhat.com>
3898
3899         fts.c: sync with similar code from coreutils' remove.c
3900         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
3901         Guard also with "#if defined __linux__", since for now at least,
3902         this code is Linux-kernel-specific.
3903
3904 2008-10-02  Jim Meyering  <meyering@redhat.com>
3905
3906         fts: bug fixes
3907         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
3908         Include <sys/vfs.h>, not <sys/statfs.h>.
3909
3910         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
3911         Include <sys/vfs.h>, not <sys/statfs.h>.
3912
3913 2008-10-01  Bruno Haible  <bruno@clisp.org>
3914
3915         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
3916         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
3917         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
3918         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
3919         * doc/posix-functions/posix_spawnp.texi: Likewise.
3920         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
3921         whether posix_spawn actually works.
3922         * m4/pipe.m4 (gl_PIPE): Likewise.
3923         * modules/execute (Files): Add m4/posix_spawn.m4.
3924         * modules/pipe (Files): Add m4/posix_spawn.m4.
3925         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
3926
3927 2008-10-01  Jim Meyering  <meyering@redhat.com>
3928
3929         remove trailing spaces
3930         * NEWS: Likewise.
3931         * lib/poll.c (poll): Likewise.
3932         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
3933         * lib/winsock.c (rpl_close): Likewise.
3934         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
3935         * modules/yield: Likewise.
3936         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
3937         * tests/test-sys_select.c (connect_to_socket): Likewise.
3938
3939         fts.c: adjust a new interface to be more generally useful
3940         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
3941         (fts_build): Adjust caller.
3942
3943 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3944
3945         * modules/cond-tests: New file.
3946         * tests/test-cond.c: New file.
3947
3948 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3949             Bruno Haible  <bruno@clisp.org>
3950
3951         * modules/cond (Dependencies): Add errno, time.
3952         * lib/glthread/cond.h: Include <time.h>.
3953         (gl_cond_define, gl_cond_define_initialized): Use the same definition
3954         across platforms.
3955
3956 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3957             Bruno Haible  <bruno@clisp.org>
3958
3959         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
3960
3961 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3962             Bruno Haible  <bruno@clisp.org>
3963
3964         * modules/tls-tests (Depends-on): Add thread, yield.
3965         (configure.ac): Remove all checks.
3966         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
3967         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
3968         gl_thread_self): Remove definitions. Include glthread/thread.h and
3969         glthread/yield.h instead.
3970         (test_tls): Pass an additional NULL argument to gl_thread_join.
3971
3972 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3973             Bruno Haible  <bruno@clisp.org>
3974
3975         * modules/lock-tests (Depends-on): Add thread, yield.
3976         (configure.ac): Remove all checks.
3977         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
3978         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
3979         gl_thread_self): Remove definitions. Include glthread/thread.h and
3980         glthread/yield.h instead.
3981         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
3982         additional NULL argument to gl_thread_join.
3983
3984 2008-09-30  Bruno Haible  <bruno@clisp.org>
3985
3986         Fix the Win32 implementation of the 'thread' module.
3987         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
3988         pointer type.
3989         (gl_thread_self): Invoke gl_thread_self_func.
3990         (gl_thread_self_func): New declaration.
3991         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
3992         (do_init_self_key, init_self_key): New functions.
3993         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
3994         Remove some fields.
3995         (running_threads, running_lock): Remove variables.
3996         (get_current_thread_handle): New function.
3997         (gl_thread_self_func, wrapper_func, glthread_create_func,
3998         glthread_join_func, gl_thread_exit_func): Largely rewritten and
3999         simplified.
4000
4001 2008-09-30  Bruno Haible  <bruno@clisp.org>
4002
4003         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
4004         files.
4005
4006 2008-09-30  Jim Meyering  <meyering@redhat.com>
4007
4008         fts.m4: correct the test for statfs.f_type
4009         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
4010         when checking for statfs.f_type.
4011
4012 2008-09-15  Simon Josefsson  <simon@josefsson.org>
4013
4014         tests: avoid some compiler warnings
4015         * tests/test-memchr.c (main): Pass NULL indirectly.
4016         * tests/test-getdate.c (main): Remove unused variable 'ret'.
4017
4018 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
4019
4020         getdate.y: disallow countable dayshifts like "4 yesterday ago"
4021         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
4022         exactly specified dayshifts.
4023         (dayshift): New rule.
4024         (rel): Add dayshift.
4025         (relative_time_table) [tomorrow, yesterday, today, now]:
4026         Use tDAY_SHIFT in place of tDAY_UNIT.
4027         * tests/test-getdate.c: Add tests for now-disallowed countable
4028         dayshifts, e.g., "4 yesterday ago".
4029
4030 2008-09-29  Bruno Haible  <bruno@clisp.org>
4031
4032         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
4033         * tests/test-posix_spawn1.in.sh: Renamed from
4034         tests/test-posix_spawn.in.sh.
4035         * tests/test-posix_spawn2.c: New file.
4036         * tests/test-posix_spawn2.in.sh: New file.
4037         * modules/posix_spawnp-tests (Files): Update.
4038         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
4039
4040 2008-09-29  Bruno Haible  <bruno@clisp.org>
4041
4042         Propagate effects of putenv/setenv/unsetenv to child processes.
4043         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
4044         * lib/pipe.c (create_pipe): Likewise.
4045
4046 2008-09-29  Bruno Haible  <bruno@clisp.org>
4047
4048         Enable use of shell scripts as executables in mingw.
4049         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
4050         run the program as a shell script.
4051         * lib/pipe.c (create_pipe): Likewise.
4052         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
4053         resulting array.
4054
4055 2008-09-29  Eric Blake  <ebb9@byu.net>
4056
4057         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
4058
4059 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
4060
4061         * doc/posix-functions/accept.texi: Update mingw problems.
4062         * doc/posix-functions/bind.texi: Update mingw problems.
4063         * doc/posix-functions/close.texi: Update mingw problems.
4064         * doc/posix-functions/connect.texi: Update mingw problems.
4065         * doc/posix-functions/getpeername.texi: Update mingw problems.
4066         * doc/posix-functions/getsockname.texi: Update mingw problems.
4067         * doc/posix-functions/getsockopt.texi: Update mingw problems.
4068         * doc/posix-functions/ioctl.texi: Update mingw problems.
4069         * doc/posix-functions/listen.texi: Update mingw problems.
4070         * doc/posix-functions/recv.texi: Update mingw problems.
4071         * doc/posix-functions/recvfrom.texi: Update mingw problems.
4072         * doc/posix-functions/select.texi: Update mingw problems.
4073         * doc/posix-functions/send.texi: Update mingw problems.
4074         * doc/posix-functions/sendto.texi: Update mingw problems.
4075         * doc/posix-functions/setsockopt.texi: Update mingw problems.
4076         * doc/posix-functions/socket.texi: Update mingw problems.
4077
4078 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
4079             Bruno Haible  <bruno@clisp.org>
4080
4081         * lib/sys_select.in.h: Include sys/time.h.
4082         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
4083         * modules/sys_select: Depend on sys_time.
4084         * tests/test-sys_select.c: Test that sys/select.h defines struct
4085         timeval fully.
4086
4087 2008-09-29  Bruno Haible  <bruno@clisp.org>
4088
4089         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
4090         * lib/sys_select.in.h: Likewise.
4091
4092 2008-09-29  Bruno Haible  <bruno@clisp.org>
4093
4094         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
4095
4096 2008-09-29  Bruno Haible  <bruno@clisp.org>
4097
4098         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
4099         Set LIBSOCKET instead of augmenting LIBS.
4100         * modules/sockets (Link): New section.
4101         * modules/sockets-tests (test_sockets_LDADD): New variable.
4102         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
4103         * modules/poll-tests (test_poll_LDADD): New variable.
4104         * NEWS: Document the change.
4105
4106 2008-09-29  Bruno Haible  <bruno@clisp.org>
4107
4108         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
4109         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
4110         ARPA_INET_H directly.
4111         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
4112
4113 2008-09-28  Bruno Haible  <bruno@clisp.org>
4114
4115         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
4116         from gl_HEADER_SYS_SOCKET.
4117         (gl_HEADER_SYS_SOCKET): Invoke it.
4118         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4119
4120 2008-09-28  Bruno Haible  <bruno@clisp.org>
4121
4122         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
4123         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
4124         Needed on OSF/1 4.0.
4125
4126 2008-09-28  Bruno Haible  <bruno@clisp.org>
4127
4128         Override open more carefully.
4129         * lib/open.c (orig_open): New function.
4130         (rpl_open): Use orig_open instead of open.
4131         * lib/fcntl.in.h: Add special invocation convention.
4132         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
4133         (gl_FUNC_OPEN): Invoke it.
4134
4135         Override freopen more carefully.
4136         * lib/freopen.c (orig_freopen): New function.
4137         (rpl_freopen): Use orig_freopen instead of freopen.
4138         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
4139         (gl_FUNC_FREOPEN): Invoke it.
4140
4141         Override fopen more carefully.
4142         * lib/fopen.c (orig_fopen): New function.
4143         (rpl_fopen): Use orig_fopen instead of fopen.
4144         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
4145         (gl_FUNC_FOPEN): Invoke it.
4146         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
4147
4148 2008-09-28  Bruno Haible  <bruno@clisp.org>
4149
4150         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
4151         SIGPIPE.
4152
4153 2008-09-28  Bruno Haible  <bruno@clisp.org>
4154
4155         * tests/test-sigaction.c (handler, main): Disable the check whether
4156         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
4157         glibc systems with LinuxThreads.
4158
4159 2008-09-28  Bruno Haible  <bruno@clisp.org>
4160
4161         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
4162
4163         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
4164         with AIX xlc.
4165         * lib/fcntl.in.h (open): Likewise.
4166         Reported by Rainer Tammer <tammer@tammer.net>.
4167
4168 2008-09-28  Bruno Haible  <bruno@clisp.org>
4169
4170         * modules/posix_spawnp-tests: New file.
4171         * tests/test-posix_spawn.c: New file.
4172         * tests/test-posix_spawn.in.sh: New file.
4173
4174         New module 'posix_spawnp'.
4175         * modules/posix_spawnp: New file.
4176         * lib/spawnp.c: New file, from GNU libc with modifications.
4177         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
4178
4179         New module 'posix_spawn'.
4180         * modules/posix_spawn: New file.
4181         * lib/spawn.c: New file, from GNU libc with modifications.
4182         * doc/posix-functions/posix_spawn.texi: Mention the new module.
4183
4184         New module 'posix_spawnattr_destroy'.
4185         * modules/posix_spawnattr_destroy: New file.
4186         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
4187         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
4188         module.
4189
4190         New module 'posix_spawnattr_setsigmask'.
4191         * modules/posix_spawnattr_setsigmask: New file.
4192         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
4193         modifications.
4194         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
4195         new module.
4196
4197         New module 'posix_spawnattr_getsigmask'.
4198         * modules/posix_spawnattr_getsigmask: New file.
4199         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
4200         modifications.
4201         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
4202         new module.
4203
4204         New module 'posix_spawnattr_setsigdefault'.
4205         * modules/posix_spawnattr_setsigdefault: New file.
4206         * lib/spawnattr_setdefault.c: New file, from GNU libc with
4207         modifications.
4208         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
4209         new module.
4210
4211         New module 'posix_spawnattr_getsigdefault'.
4212         * modules/posix_spawnattr_getsigdefault: New file.
4213         * lib/spawnattr_getdefault.c: New file, from GNU libc with
4214         modifications.
4215         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
4216         new module.
4217
4218         New module 'posix_spawnattr_setschedpolicy'.
4219         * modules/posix_spawnattr_setschedpolicy: New file.
4220         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
4221         modifications.
4222         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
4223         new module.
4224
4225         New module 'posix_spawnattr_getschedpolicy'.
4226         * modules/posix_spawnattr_getschedpolicy: New file.
4227         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
4228         modifications.
4229         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
4230         new module.
4231
4232         New module 'posix_spawnattr_setschedparam'.
4233         * modules/posix_spawnattr_setschedparam: New file.
4234         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
4235         modifications.
4236         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
4237         new module.
4238
4239         New module 'posix_spawnattr_getschedparam'.
4240         * modules/posix_spawnattr_getschedparam: New file.
4241         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
4242         modifications.
4243         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
4244         new module.
4245
4246         New module 'posix_spawnattr_setpgroup'.
4247         * modules/posix_spawnattr_setpgroup: New file.
4248         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
4249         modifications.
4250         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
4251         module.
4252
4253         New module 'posix_spawnattr_getpgroup'.
4254         * modules/posix_spawnattr_getpgroup: New file.
4255         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
4256         modifications.
4257         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
4258         module.
4259
4260         New module 'posix_spawnattr_setflags'.
4261         * modules/posix_spawnattr_setflags: New file.
4262         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
4263         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
4264         module.
4265
4266         New module 'posix_spawnattr_getflags'.
4267         * modules/posix_spawnattr_getflags: New file.
4268         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
4269         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
4270         module.
4271
4272         New module 'posix_spawnattr_init'.
4273         * modules/posix_spawnattr_init: New file.
4274         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
4275         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
4276         module.
4277
4278         New module 'posix_spawn_file_actions_destroy'.
4279         * modules/posix_spawn_file_actions_destroy: New file.
4280         * lib/spawn_faction_destroy.c: New file, from GNU libc with
4281         modifications.
4282         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
4283         the new module.
4284
4285         New module 'posix_spawn_file_actions_addopen'.
4286         * modules/posix_spawn_file_actions_addopen: New file.
4287         * lib/spawn_faction_addopen.c: New file, from GNU libc with
4288         modifications.
4289         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
4290         the new module.
4291
4292         New module 'posix_spawn_file_actions_adddup2'.
4293         * modules/posix_spawn_file_actions_adddup2: New file.
4294         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
4295         modifications.
4296         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
4297         the new module.
4298
4299         New module 'posix_spawn_file_actions_addclose'.
4300         * modules/posix_spawn_file_actions_addclose: New file.
4301         * lib/spawn_faction_addclose.c: New file, from GNU libc with
4302         modifications.
4303         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
4304         the new module.
4305
4306         New module 'posix_spawn_file_actions_init'.
4307         * modules/posix_spawn_file_actions_init: New file.
4308         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
4309         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
4310         new module.
4311
4312         New module 'posix_spawn-internal'.
4313         * modules/posix_spawn-internal: New file.
4314         * lib/spawn_int.h: New file, from GNU libc with modifications.
4315         * lib/spawni.c: New file, from GNU libc with modifications.
4316         * m4/posix_spawn.m4: New file.
4317
4318         New module 'spawn'.
4319         * modules/spawn: New file.
4320         * lib/spawn.in.h: New file, from GNU libc with modifications.
4321         * m4/spawn_h.m4: New file.
4322         * doc/posix-headers/spawn.texi: Mention the new module.
4323
4324 2008-09-28  Bruno Haible  <bruno@clisp.org>
4325
4326         * modules/sched-tests: New file.
4327         * tests/test-sched.c: New file.
4328
4329         New module 'sched'.
4330         * modules/sched: New file.
4331         * lib/sched.in.h: New file.
4332         * m4/sched_h.m4: New file.
4333         * doc/posix-headers/sched.texi: Mention the new module.
4334
4335 2008-09-27  Eric Blake  <ebb9@byu.net>
4336
4337         Fix previous patch, and tweak references to $0.
4338         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
4339         (func_version, func_gnulib_dir): Don't call this program
4340         gnulib-tool.
4341         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
4342         with using $0 in function.
4343         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
4344         (func_fatal_error): Reuse the name the user invoked us with.
4345
4346 2008-09-27  Bruno Haible  <bruno@clisp.org>
4347
4348         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
4349         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
4350         (gl_ICONV_H): Not here.
4351         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
4352         instead of assigning ICONV_H directly.
4353
4354         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
4355         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
4356         WCHAR_H directly.
4357
4358 2008-09-27  Bruno Haible  <bruno@clisp.org>
4359
4360         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
4361         * modules/arpa_inet (Depends-on): Add link-warning.
4362         (Makefile.am): Insert the definition of GL_LINK-WARNING.
4363         * modules/unistd (Makefile.am): Likewise.
4364
4365 2008-09-26  Bruno Haible  <bruno@clisp.org>
4366
4367         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
4368         variables.
4369         (func_version): Essentially copied from gnulib-tool.
4370         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
4371         func_readlink): Copied from gnulib-tool.
4372
4373 2008-09-26  Bruno Haible  <bruno@clisp.org>
4374
4375         * gnulib-tool (func_version): Change directory to $gnulib_dir before
4376         invoking git-version-gen.
4377
4378 2008-09-26  Bruno Haible  <bruno@clisp.org>
4379
4380         * posix-modules: Update to directory names changed on 2008-01-19.
4381         Remove commas in output before splitting into words. No more need to
4382         avoid 'ftruncate' since 2007-02-19.
4383
4384 2008-09-26  Bruno Haible  <bruno@clisp.org>
4385
4386         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
4387
4388 2008-09-26  Bruno Haible  <bruno@clisp.org>
4389
4390         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
4391         * modules/fwriteerror (Depends-on): Add errno.
4392
4393 2008-09-26  Bruno Haible  <bruno@clisp.org>
4394
4395         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
4396         * tests/test-vc-list-files-cvs.sh: Likewise.
4397
4398 2008-09-26  Bruno Haible  <bruno@clisp.org>
4399
4400         * doc/posix-headers/sys_resource.texi: Reorder items.
4401
4402 2008-09-26  Jim Meyering  <meyering@redhat.com>
4403
4404         fts: tweak inode comparison function
4405         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
4406         inode numbers, as documented.
4407
4408         fts: sort dirent entries on inode number before traversing
4409         This avoids a quadratic, seek-related performance penalty when
4410         operating on a directory containing many entries (measurable at 10k;
4411         3.5 hours at 2 million entries with a cold cache) on certain types
4412         of file systems, including ext3 and ext4, but not tmpfs.
4413         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
4414         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
4415         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
4416         (fs_handles_readdir_ordered_dirents_efficiently): New function.
4417         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
4418         (fts_build): Set the stat.st_ino member from D_INO.
4419         If it is likely to be useful, sort dirent entries on inode number.
4420
4421         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
4422         and the struct statfs.f_type member.
4423         * modules/fts (Depends-on): Add d-ino.
4424
4425 2008-09-26  Bruno Haible  <bruno@clisp.org>
4426
4427         * modules/sigpipe-die (Depends-on): Add sigpipe.
4428
4429         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
4430         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
4431         and GNULIB_STDIO_H_SIGPIPE are set.
4432         * lib/stdio-write.c: New file.
4433         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
4434         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
4435         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
4436         REPLACE_STDIO_WRITE_FUNCS.
4437         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
4438         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
4439         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
4440         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
4441         * modules/stdio (Files): Add lib/stdio-write.c.
4442         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
4443         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
4444         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
4445         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
4446         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
4447         REPLACE_FPRINTF_POSIX.
4448         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
4449         REPLACE_PRINTF_POSIX.
4450         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
4451         REPLACE_VFPRINTF_POSIX.
4452         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
4453         REPLACE_VPRINTF_POSIX.
4454         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
4455         SIGPIPE issue.
4456         * doc/posix-functions/fputc.texi: Likewise.
4457         * doc/posix-functions/fputs.texi: Likewise.
4458         * doc/posix-functions/fwrite.texi: Likewise.
4459         * doc/posix-functions/printf.texi: Likewise.
4460         * doc/posix-functions/putc.texi: Likewise.
4461         * doc/posix-functions/putchar.texi: Likewise.
4462         * doc/posix-functions/puts.texi: Likewise.
4463         * doc/posix-functions/vfprintf.texi: Likewise.
4464         * doc/posix-functions/vprintf.texi: Likewise.
4465
4466         * modules/safe-write (Depends-on): Add write.
4467
4468         * modules/sigpipe-tests: New file.
4469         * tests/test-sigpipe.c: New file.
4470         * tests/test-sigpipe.sh: New file.
4471
4472         * modules/write: New file.
4473         * lib/unistd.in.h: Include <sys/types.h>.
4474         (write): New declaration.
4475         * lib/write.c: New file.
4476         * m4/write.m4: New file.
4477         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
4478         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
4479         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
4480         GNULIB_WRITE, REPLACE_WRITE.
4481         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
4482         and the SIGPIPE issue.
4483
4484         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
4485         (raise): New declaration.
4486         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
4487         (ext_signal): New function.
4488         (rpl_raise): New function.
4489         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
4490         GNULIB_SIGNAL_H_SIGPIPE.
4491         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
4492         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
4493
4494         * modules/sigpipe: New file.
4495         * m4/sigpipe.m4: New file.
4496
4497 2008-09-25  Derek Price  <derek@ximbiot.com>
4498             Bruno Haible  <bruno@clisp.org>
4499
4500         * gnulib-tool (func_import): Report all license incompatibilities, not
4501         just the first one.
4502
4503 2008-09-25  Bruno Haible  <bruno@clisp.org>
4504
4505         * gnulib-tool (func_import): When computing the edits, consider not
4506         only the Makefile.ams that exist but also those that will be generated.
4507
4508 2008-09-25  Simon Josefsson  <simon@josefsson.org>
4509
4510         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
4511         fixes gnulib-tool --test warning about duplicate dependency.
4512
4513 2008-09-25  Bruno Haible  <bruno@clisp.org>
4514
4515         * gnulib-tool: Don't ask the user to perform edits in the generated
4516         Makefile.ams.
4517         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
4518         apply to the Makefile.am being generated.
4519         (func_emit_tests_Makefile_am): Execute edits that apply to the
4520         Makefile.am being generated.
4521         (func_import): Setup list of Makefile.am edits before emitting the
4522         Makefile.ams, not at the end.
4523         (func_create_testdir): Update.
4524         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4525
4526 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4527
4528         * gnulib-tool (func_import): Store the --tests-base option in the
4529         comment in gnulib-cache.m4.
4530
4531 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
4532
4533         * NEWS: Document increased portability that sys_select now provides.
4534
4535         * lib/sys_select.in.h: Install select wrapper.
4536         * lib/sys_socket.in.h: Use more descriptive name when there is no
4537         select wrapper.
4538         * lib/winsock-select.c: New.
4539         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
4540         Require gl_HEADER_SYS_SOCKET.
4541         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
4542         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
4543         * tests/test-sys_select.c: Add functional tests.
4544
4545 2008-09-24  Eric Blake  <ebb9@byu.net>
4546
4547         open, fopen: close fd leak in last patch
4548         * lib/open.c (rpl_open): Close fd before returning error.
4549         * lib/fopen.c (rpl_fopen): Close fd before returning error.
4550         * doc/posix-functions/open.texi (open): Document that Irix also
4551         has the bug.
4552         * doc/posix-functions/fopen.texi (fopen): Likewise.
4553         Reported by Paolo Bonzini.
4554
4555 2008-09-24  Bruno Haible  <bruno@clisp.org>
4556
4557         Ensure that a filename ending in a slash cannot be used to access a
4558         non-directory.
4559         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
4560         to check whether it's really a directory.
4561         * lib/fopen.c: Include fcntl.h, unistd.h.
4562         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
4563         and fdopen().
4564         * modules/fopen (Depends-on): Add unistd.
4565         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
4566         * tests/test-fopen.c (main): Likewise.
4567         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
4568         * doc/posix-functions/fopen.texi: Likewise.
4569         Reported by Eric Blake.
4570
4571 2008-09-23  Eric Blake  <ebb9@byu.net>
4572
4573         c-stack: avoid compiler optimizations when provoking overflow
4574         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
4575         recursion harder to optimize, to ensure a stack overflow occurs.
4576         * tests/test-c-stack.c (recurse): Likewise.
4577         Borrowed from libsigsegv.
4578
4579         c-stack: work around Irix sigaltstack bug
4580         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
4581         whether sigaltstack uses wrong end of stack_t (copied in part from
4582         libsigsegv).
4583         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
4584         Irix bug, without requiring an over-allocation.
4585         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
4586         bug.
4587
4588         fopen: document mingw bug on directories
4589         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
4590         not allowing a stream visiting a directory, even though reading
4591         from such a stream is not portable.
4592
4593 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
4594
4595         * lib/poll.c: Rewrite.
4596         * modules/poll: Depend on alloca.
4597
4598 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
4599
4600         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
4601         instead define prototypes for a full set of wrappers.  Ensure
4602         that Cygwin does not use the compatibility code, which is only
4603         for MinGW.
4604         * lib/winsock.c: New.
4605         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
4606         * modules/sys_socket: Add lib/winsock.c.
4607
4608         * modules/poll-tests: Add errno and perror.
4609         * tests/test-poll.c: Use ioctl, not ioctlsocket.
4610
4611 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
4612
4613         * tests/test-poll.c: Downgrade minimum needed Winsock version.
4614
4615 2008-09-23  Bruno Haible  <bruno@clisp.org>
4616
4617         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
4618         * doc/glibc-functions/*: Likewise.
4619
4620 2008-09-23  Simon Josefsson  <simon@josefsson.org>
4621
4622         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
4623         success.
4624
4625 2008-09-22  Eric Blake  <ebb9@byu.net>
4626             Bruno Haible  <bruno@clisp.org>
4627
4628         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
4629         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
4630         supply %A but mishandle pseudo-NaN.
4631         Reported by Simon Josefsson.
4632
4633 2008-09-21  Bruno Haible  <bruno@clisp.org>
4634
4635         * tests/test-lock.c (main): Tweak skip message.
4636         * tests/test-tls.c (main): Likewise.
4637
4638 2008-09-21  Bruno Haible  <bruno@clisp.org>
4639
4640         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
4641         whether 'struct sigaction' has sa_sigaction here...
4642         (gl_PREREQ_SIG_HANDLER_H): ... not here.
4643         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
4644
4645 2008-09-21  Bruno Haible  <bruno@clisp.org>
4646
4647         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
4648         section.
4649         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
4650         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
4651         the new section.
4652         (Support for obsolete systems lacking POSIX:2001): New section.
4653         (String handling <string.h>): Move strdup to the new section.
4654         Suggested by Simon Josefsson and Paolo Bonzini.
4655
4656 2008-09-21  Bruno Haible  <bruno@clisp.org>
4657
4658         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
4659         exponents in %e and %g results on 'long double'. Needed for mingw's
4660         improved *printf functions.
4661         * tests/test-vasprintf-posix.c (test_function): Likewise.
4662         * tests/test-snprintf-posix.h (test_function): Likewise.
4663         * tests/test-sprintf-posix.h (test_function): Likewise.
4664         Reported by Eric Blake.
4665
4666 2008-09-21  Bruno Haible  <bruno@clisp.org>
4667
4668         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
4669         * tests/test-sprintf-posix.h (test_function): Likewise.
4670
4671 2008-09-21  Bruno Haible  <bruno@clisp.org>
4672
4673         * modules/getpass (Depends-on): Add strdup-posix.
4674
4675         New module 'strdup-posix'.
4676         * modules/strdup-posix: New file.
4677         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
4678         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
4679         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4680         REPLACE_STRDUP.
4681         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
4682         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
4683         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
4684         strdup-posix.
4685
4686         * modules/strdup (Depends-on): Remove malloc-posix.
4687
4688 2008-09-20  Bruno Haible  <bruno@clisp.org>
4689
4690         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
4691         Wildenhues.
4692
4693 2008-09-20  Bruno Haible  <bruno@clisp.org>
4694
4695         Ensure that wint_t gets defined on IRIX 5.3.
4696         * lib/wchar.in.h (wint_t): Define if not defined by the system.
4697         * lib/wctype.in.h (wint_t): Likewise.
4698         (__wctype_wint_t): Remove type.
4699         (isw*): Use wint_t instead of __wctype_wint_t.
4700         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
4701         * modules/wchar (Files): Add m4/wint_t.m4.
4702         (Makefile.am): Substitute HAVE_WINT_T.
4703         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
4704         * tests/test-wctype.c: Check that wint_t is defined.
4705         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
4706         * doc/posix-headers/wctype.texi: Likewise.
4707         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4708
4709 2008-09-18  Bruno Haible  <bruno@clisp.org>
4710
4711         * gnulib-tool (func_exit): Update comment.
4712
4713 2008-09-18  Simon Josefsson  <simon@josefsson.org>
4714
4715         * modules/getaddrinfo (Depends-on): Remove strdup, this module
4716         assumes strdup exists and does not depend on strdup to return
4717         ENOMEM on out of memory conditions.
4718
4719 2008-09-18  Bruno Haible  <bruno@clisp.org>
4720
4721         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
4722         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
4723         digits for the exponent.
4724
4725 2008-09-18  Jim Meyering  <meyering@redhat.com>
4726             Bruno Haible  <bruno@clisp.org>
4727
4728         * lib/vasnprintf.c (decimal_point_char): Define also if
4729         NEED_PRINTF_INFINITE_LONG_DOUBLE.
4730
4731 2008-09-16  Bruno Haible  <bruno@clisp.org>
4732         and Eric Blake  <ebb9@byu.net>
4733
4734         vasnprintf: support Irix 5.3
4735         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
4736         that mishandle long double infinity.
4737         Reported by Tom G. Christensen.
4738
4739 2008-09-16  Bruno Haible  <bruno@clisp.org>
4740
4741         * doc/glibc-functions/scandir.texi: Mention the function is missing on
4742         Solaris 9.
4743         * doc/glibc-functions/alphasort.texi: Likewise.
4744         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
4745
4746 2008-09-16  Jim Meyering  <meyering@redhat.com>
4747
4748         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
4749         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
4750         a umask modification leak out of a subshell.  Otherwise, the
4751         opensolaris /bin/sh would be accepted and thus cause unwarranted
4752         failures in the coreutils test suite.
4753
4754 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
4755
4756         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
4757         to succeed.
4758
4759 2008-09-16  Jim Meyering  <meyering@redhat.com>
4760
4761         avoid spurious test failure when library is built without ACL support
4762         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
4763         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
4764         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
4765         * tests/test-copy-acl.sh: Likewise.
4766
4767 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4768
4769         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
4770         based on character occurrence counts.
4771
4772 2008-09-15  Eric Blake  <ebb9@byu.net>
4773
4774         tests: avoid some compiler warnings
4775         * tests/test-memchr.c (main): Pass NULL indirectly.
4776         * tests/test-closein.c (main): Avoid unused variable.
4777
4778 2008-09-15  Bruno Haible  <bruno@clisp.org>
4779
4780         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
4781         are missing on OpenBSD 4.0 individually.
4782         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4783
4784 2008-09-15  Bruno Haible  <bruno@clisp.org>
4785
4786         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
4787         * doc/posix-functions/strerror.texi: Mention also Cygwin.
4788         * doc/posix-functions/perror.texi: Likewise.
4789         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
4790         is missing.
4791         Reported by Eric Blake.
4792
4793         * lib/errno.in.h: Use replacement values >= 2000.
4794         Reported by Eric Blake.
4795
4796 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4797
4798         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
4799         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
4800         limit.
4801         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
4802         compareseq was aborted.
4803
4804 2008-09-14  Bruno Haible  <bruno@clisp.org>
4805
4806         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
4807         yvec_edit_count.
4808         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
4809         (fstrcmp_bounded): Simplify result computation accordingly.
4810
4811 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4812
4813         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
4814         (fstrcmp): Define in terms of fstrcmp_bounded.
4815         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
4816         lower_bound argument.
4817         Return quickly if the result is certainly < lower_bound.
4818         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
4819
4820 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4821
4822         * lib/diffseq.h (EARLY_ABORT): New macro.
4823         (compareseq): Change return type to bool. Return true when EARLY_ABORT
4824         evaluates to true.
4825
4826 2008-09-14  Bruno Haible  <bruno@clisp.org>
4827
4828         * modules/perror-tests: New file.
4829         * tests/test-perror.sh: New file.
4830         * tests/test-perror.c: New file.
4831
4832         New module 'perror'.
4833         * lib/stdio.in.h (perror): New declaration.
4834         * lib/perror.c: New file.
4835         * m4/perror.m4: New file.
4836         * modules/perror: New file.
4837         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
4838         * doc/posix-functions/perror.texi: Mention the perror module.
4839         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
4840         REPLACE_PERROR.
4841         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
4842         REPLACE_PERROR.
4843
4844 2008-09-14  Bruno Haible  <bruno@clisp.org>
4845
4846         * modules/stdio (Makefile.am): Reorder to match the order in
4847         lib/stdio.in.h.
4848         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4849
4850 2008-09-13  Bruno Haible  <bruno@clisp.org>
4851
4852         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
4853
4854 2008-09-13  Bruno Haible  <bruno@clisp.org>
4855
4856         Extend strerror to cover the added errno values.
4857         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
4858         (rpl_strerror): Provide error messages for the added errno values and
4859         for the WSA* values.
4860         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
4861         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
4862         strerror.
4863         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
4864         * modules/strerror (Depends-on): Add errno.
4865         * doc/posix-functions/strerror.texi: Document the change.
4866         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
4867         and EOVERFLOW.
4868
4869 2008-09-13  Bruno Haible  <bruno@clisp.org>
4870
4871         * modules/EOVERFLOW: Remove file.
4872         * m4/eoverflow.m4: Remove file.
4873         * modules/EOVERFLOW-tests: Remove file.
4874         * tests/test-EOVERFLOW.c: Remove file.
4875         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
4876         * modules/ftell (Depends-on): Likewise.
4877         * modules/getdelim (Depends-on): Likewise.
4878         * modules/getugroups (Depends-on): Likewise.
4879         * modules/poll (Depends-on): Likewise.
4880         * modules/snprintf (Depends-on): Likewise.
4881         * modules/sprintf-posix (Depends-on): Likewise.
4882         * modules/vasnprintf (Depends-on): Likewise.
4883         * modules/vasprintf (Depends-on): Likewise.
4884         * modules/vfprintf-posix (Depends-on): Likewise.
4885         * modules/vsnprintf (Depends-on): Likewise.
4886         * modules/vsprintf-posix (Depends-on): Likewise.
4887         * modules/xvasprintf (Depends-on): Likewise.
4888         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
4889         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
4890         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
4891         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
4892         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
4893         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
4894         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
4895         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
4896         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
4897         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
4898         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
4899         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
4900         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
4901         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
4902         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
4903         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
4904         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
4905         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
4906         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
4907         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
4908         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
4909         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
4910         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
4911         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
4912         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
4913         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
4914         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
4915         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
4916         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
4917         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
4918         * MODULES.html.sh: Remove EOVERFLOW.
4919         * NEWS: Mention the change.
4920
4921 2008-09-13  Bruno Haible  <bruno@clisp.org>
4922
4923         * modules/errno-tests: New file.
4924         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
4925
4926         * lib/errno.in.h: New file.
4927         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
4928         * modules/errno: New file.
4929         * doc/posix-headers/errno.texi: Update documentation.
4930         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
4931
4932 2008-09-13  Bruno Haible  <bruno@clisp.org>
4933
4934         * tests/test-poll.c: Use #if for native Windows, rather than testing
4935         __MSVCRT__.
4936
4937 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4938             Bruno Haible  <bruno@clisp.org>
4939
4940         * lib/glob.c: Don't include <pwd.h> on native Windows.
4941         (WINDOWS32): New macro.
4942         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
4943
4944 2008-09-13  Bruno Haible  <bruno@clisp.org>
4945
4946         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
4947         (ETIMEDOUT): Remove macro.
4948         (glthread_cond_timedwait_multithreaded): New declaration.
4949         (glthread_cond_timedwait): Use it.
4950         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
4951         (glthread_cond_timedwait_multithreaded): New function.
4952
4953 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
4954
4955         * modules/poll-tests: Do not check for io.h.
4956         * tests/test-poll.c: Check for __MSVCRT__ instead.
4957
4958 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
4959
4960         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
4961         * modules/poll-tests: Add inet_pton, stdbool, sockets.
4962         * tests/test-poll.c: Use them.  Use _pipe on Windows.
4963
4964 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
4965
4966         * modules/poll-tests: New.
4967         * tests/test-poll.c: New.
4968
4969 2008-09-12  Eric Blake  <ebb9@byu.net>
4970
4971         frexp: test for NetBSD failure on -0.0
4972         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
4973         not all, bugs from NetBSD 3.0 have been fixed.
4974         * doc/posix-functions/frexp.texi (frexp): Document bug.
4975         Reported by Thomas Klausner.
4976
4977         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
4978         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
4979         literal -0.0.
4980         Reported by Jonathan C. Patschke <jp@centtech.com>.
4981
4982 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4983
4984         * lib/glthread/cond.h: Use dummy implementation also if
4985         USE_WIN32_THREADS.
4986
4987 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4988
4989         * modules/fnmatch-posix (License): Change to LGPLv2+.
4990         * modules/fnmatch-gnu (License): Likewise.
4991
4992 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4993
4994         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
4995
4996 2008-09-11  Jim Meyering  <meyering@redhat.com>
4997
4998         * users.txt: Add gtk-vnc.
4999
5000 2008-09-08  Simon Josefsson  <simon@josefsson.org>
5001
5002         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
5003         rotate amounts.
5004
5005         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
5006         required for 16-bit and 8-bit rotates.
5007         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
5008         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
5009         UINT8_MAX instead of hard-coded constants.
5010         Suggested by Paul Eggert.
5011
5012 2008-09-07  Bruno Haible  <bruno@clisp.org>
5013
5014         * tests/test-striconveh.c (main): Check behaviour when converting from
5015         UTF-7.
5016
5017         Make striconveh work better with stateful encodings.
5018         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
5019         that iconv does not increment the inptr when returning -1/EINVAL.
5020
5021 2008-09-07  Bruno Haible  <bruno@clisp.org>
5022
5023         * build-aux/config.rpath: Update according to libtool-2.2.6.
5024         * build-aux/config.libpath: Likewise.
5025
5026 2008-09-06  Bruno Haible  <bruno@clisp.org>
5027
5028         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
5029         * lib/freadptr.c (freadptr): Likewise.
5030         * lib/freadseek.c (freadptrinc): Likewise.
5031         Reported by Simon Josefsson.
5032
5033 2008-09-06  Bruno Haible  <bruno@clisp.org>
5034
5035         * modules/freadptr (License): Change to LGPLv2+.
5036         * modules/freadseek (License): Likewise.
5037         Suggested by Eric Blake.
5038
5039         * modules/memchr2 (License): Change to LGPLv2+.
5040         Approved by Eric Blake.
5041
5042 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5043             Bruno Haible  <bruno@clisp.org>
5044
5045         Make gnulib-tool work with native 'sed' on AIX.
5046         * gnulib-tool (sed_noop): New variable.
5047         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
5048         func_add_or_update, func_create_testdir): Use it to initialize sed
5049         script variables.
5050         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
5051
5052 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
5053             Bruno Haible  <bruno@clisp.org>
5054
5055         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
5056         also works after #include directives.
5057
5058 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
5059
5060         getdate.y: reject an out-of-range timezone value
5061         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
5062         the range [-24...+24].  When specified with only one or two digits,
5063         * tests/test-getdate.c: Tests for the fix.
5064         * doc/getdate.texi: Document this change.
5065
5066 2008-09-03  Bruno Haible  <bruno@clisp.org>
5067
5068         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
5069
5070 2008-09-02  Simon Josefsson  <simon@josefsson.org>
5071
5072         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
5073         <bruce.korb@gmail.com> with ideas from Ben Pfaff
5074         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
5075         Blake <ebb9@byu.net>.
5076
5077         * tests/test-bitrotate.c: Add more test vectors.
5078
5079 2008-09-02  Eric Blake  <ebb9@byu.net>
5080
5081         vasnprintf-posix: handle large precision via %.*d
5082         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
5083         when handling it ourselves.
5084         * tests/test-vasnprintf-posix.c (test_function): Add test.
5085         * tests/test-snprintf-posix.h (test_function): Likewise.
5086         * tests/test-sprintf-posix.h (test_function): Likewise.
5087         * tests/test-vasprintf-posix.c (test_function): Likewise.
5088         Reported by Alain Guibert.
5089
5090 2008-09-01  Eric Blake  <ebb9@byu.net>
5091
5092         c-stack: make configure-time check more robust
5093         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
5094         successful sigaction call.
5095         Reported by Tom G. Christensen.
5096
5097 2008-09-01  Bruno Haible  <bruno@clisp.org>
5098
5099         New module 'findprog-lgpl'.
5100         * modules/findprog-lgpl: New file.
5101         * lib/findprog-lgpl.c: New file.
5102         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
5103         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
5104         to decide whether to use strdup or xstrdup, concatenated_filename or
5105         xconcatenated_filename.
5106
5107 2008-09-01  Bruno Haible  <bruno@clisp.org>
5108
5109         Split module 'concat-filename' into 'concat-filename' (LGPL) and
5110         'xconcat-filename' (GPL).
5111         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
5112         (License): Change to LGPLv2+.
5113         * modules/xconcat-filename: New file.
5114         * lib/concat-filename.h (concatenated_filename): Change specification.
5115         (xconcatenated_filename): New declaration.
5116         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
5117         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
5118         memory situations.
5119         * lib/xconcat-filename.c: New file.
5120         * NEWS: Mention the change.
5121         * lib/findprog.c: Include concat-filename.h, not filename.h.
5122         (find_in_path): Use xconcatenated_filename instead of
5123         concatenated_filename.
5124         * lib/javacomp.c: Include concat-filename.h, not filename.h.
5125         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
5126         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
5127         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
5128         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
5129         instead of concatenated_filename.
5130         * lib/javaexec.c: Include concat-filename.h, not filename.h.
5131         (execute_java_class): Use xconcatenated_filename instead of
5132         concatenated_filename.
5133         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
5134         * modules/javacomp (Depends-on): Likewise.
5135         * modules/javaexec (Depends-on): Likewise.
5136
5137 2008-09-01  Bruno Haible  <bruno@clisp.org>
5138
5139         Split module 'filename' into 'filename' and 'concat-filename'.
5140         * modules/filename: Keep only lib/filename.h.
5141         (License): Change to LGPLv2+.
5142         * modules/concat-filename: New file, extracted from modules/filename.
5143         * lib/filename.h (concatenated_filename): Remove declaration.
5144         * lib/concat-filename.h: New file, extracted from lib/filename.h.
5145         * lib/concat-filename.c: Include concat-filename.h.
5146         * NEWS: Mention the change.
5147
5148 2008-09-01  Simon Josefsson  <simon@josefsson.org>
5149
5150         * lib/bitrotate.h (rotl8, rotr8): Add.
5151
5152         * modules/bitrotate (configure.ac): Need
5153         AC_REQUIRE([AC_C_INLINE]).
5154         (Description): Mention stdint.h.  Reported by Bruno Haible
5155         <bruno@clisp.org>.
5156
5157         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
5158         Paolo Bonzini <bonzini@gnu.org>.
5159
5160 2008-08-31  Bruno Haible  <bruno@clisp.org>
5161
5162         Assume Solaris specific bi-arch conventions on Solaris systems.
5163         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
5164         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
5165         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
5166         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
5167         like acl_libdirstem.
5168         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
5169         acl_libdirstem.
5170         * NEWS: Mention the change.
5171         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
5172
5173 2008-08-31  Jim Meyering  <meyering@redhat.com>
5174
5175         * lib/strftime.h: Add comments describing the two added arguments.
5176
5177         remove duplicate #include directives
5178         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
5179         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
5180
5181 2008-08-31  Bruno Haible  <bruno@clisp.org>
5182
5183         New module 'sigpipe-die'.
5184         * modules/sigpipe-die: New file.
5185         * lib/sigpipe-die.h: New file.
5186         * lib/sigpipe-die.c: New file.
5187         * MODULES.html.sh (Signal handling): Add sigpipe-die.
5188
5189 2008-08-31  Bruno Haible  <bruno@clisp.org>
5190
5191         Don't override previously installed signal handlers.
5192         * lib/fatal-signal.c (saved_sigactions): New variable.
5193         (uninstall_handlers): Reset the signal to the saved handler, not
5194         to SIG_DFL (except when ignored).
5195         (install_handlers): Save the previous handlers.
5196
5197 2008-08-30  Bruno Haible  <bruno@clisp.org>
5198
5199         * gnulib-tool (func_reset_sigpipe): New function.
5200         (func_get_automake_snippet, func_modules_transitive_closure,
5201         func_import): Invoke it before a join command that reads from stdin,
5202         to avoid "echo: write error: Broken pipe" error messages on stderr.
5203         Reported by Sam Steingold <sds@gnu.org>.
5204
5205 2008-08-30  Bruno Haible  <bruno@clisp.org>
5206
5207         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
5208         Code copied from m4/open.m4.
5209         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
5210         access and the filename ends in a slash. Code copied from lib/open.c.
5211         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
5212         * tests/test-fopen.c (main): Check against bug with trailing slash.
5213
5214 2008-08-29  Bruno Haible  <bruno@clisp.org>
5215
5216         Avoid some "gcc -pedantic" warnings.
5217         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
5218         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
5219         * lib/dirent.in.h: Likewise.
5220         * lib/fcntl.in.h: Likewise.
5221         * lib/float.in.h: Likewise.
5222         * lib/iconv.in.h: Likewise.
5223         * lib/inttypes.in.h: Likewise.
5224         * lib/locale.in.h: Likewise.
5225         * lib/math.in.h: Likewise.
5226         * lib/netinet_in.in.h: Likewise.
5227         * lib/search.in.h: Likewise.
5228         * lib/signal.in.h: Likewise.
5229         * lib/stdarg.in.h: Likewise.
5230         * lib/stdint.in.h: Likewise.
5231         * lib/stdio.in.h: Likewise.
5232         * lib/stdlib.in.h: Likewise.
5233         * lib/string.in.h: Likewise.
5234         * lib/strings.in.h: Likewise.
5235         * lib/sys_select.in.h: Likewise.
5236         * lib/sys_socket.in.h: Likewise.
5237         * lib/sys_stat.in.h: Likewise.
5238         * lib/sys_time.in.h: Likewise.
5239         * lib/sysexits.in.h: Likewise.
5240         * lib/time.in.h: Likewise.
5241         * lib/unistd.in.h: Likewise.
5242         * lib/wchar.in.h: Likewise.
5243         * lib/wctype.in.h: Likewise.
5244         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
5245         * modules/fchdir (Makefile.am): Likewise.
5246         * modules/fcntl (Makefile.am): Likewise.
5247         * modules/float (Makefile.am): Likewise.
5248         * modules/iconv_open (Makefile.am): Likewise.
5249         * modules/inttypes (Makefile.am): Likewise.
5250         * modules/locale (Makefile.am): Likewise.
5251         * modules/math (Makefile.am): Likewise.
5252         * modules/netinet_in (Makefile.am): Likewise.
5253         * modules/search (Makefile.am): Likewise.
5254         * modules/signal (Makefile.am): Likewise.
5255         * modules/stdarg (Makefile.am): Likewise.
5256         * modules/stdint (Makefile.am): Likewise.
5257         * modules/stdio (Makefile.am): Likewise.
5258         * modules/stdlib (Makefile.am): Likewise.
5259         * modules/string (Makefile.am): Likewise.
5260         * modules/strings (Makefile.am): Likewise.
5261         * modules/sys_select (Makefile.am): Likewise.
5262         * modules/sys_socket (Makefile.am): Likewise.
5263         * modules/sys_stat (Makefile.am): Likewise.
5264         * modules/sys_time (Makefile.am): Likewise.
5265         * modules/sysexits (Makefile.am): Likewise.
5266         * modules/time (Makefile.am): Likewise.
5267         * modules/unistd (Makefile.am): Likewise.
5268         * modules/wchar (Makefile.am): Likewise.
5269         * modules/wctype (Makefile.am): Likewise.
5270         Reported by Reuben Thomas <rrt@sc3d.org>.
5271
5272 2008-08-29  Bruno Haible  <bruno@clisp.org>
5273
5274         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
5275         any more.
5276
5277 2008-08-29  Simon Josefsson  <simon@josefsson.org>
5278
5279         * MODULES.html.sh (Misc): Add bitrotate.
5280
5281         * modules/bitrotate: New file.
5282
5283         * lib/bitrotate.h: New file.
5284
5285         * modules/bitrotate-tests: New file.
5286
5287         * tests/test-bitrotate.c: New file.
5288
5289         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
5290         on the bitrotate module.
5291
5292         * lib/arctwo.c: Use new bitrotate module.
5293
5294 2008-08-29  Jim Meyering  <meyering@redhat.com>
5295
5296         bootstrap: merge changes from coreutils
5297         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
5298         of copied files.  Remove a kludge, now that this is fixed.
5299         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
5300         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
5301         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
5302
5303 2008-08-29  Bruno Haible  <bruno@clisp.org>
5304
5305         * MODULES.html.sh: Remove --cvs-urls option.
5306
5307 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
5308
5309         maint.mk: adjust to file name change
5310         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
5311
5312 2008-08-28  Jim Meyering  <meyering@redhat.com>
5313
5314         * modules/getndelim2 (License): Relicense to LGPLv2+.
5315         Approved by Richard Stallman for the version of 1995, and by
5316         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
5317
5318 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
5319
5320         * lib/getdelim.c (flockfile, funlockfile): Make all of them
5321         dummy if one is not available.  Do not touch them if
5322         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
5323         (getc_maybe_unlocked): New.
5324         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
5325
5326 2008-08-26  Eric Blake  <ebb9@byu.net>
5327
5328         doc/INSTALL: resync from autoconf
5329         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
5330         (INSTALL_PRELUDE): Delete; this is done more efficiently by
5331         moving...
5332         * install.texi [!autoconf]: ...here.  Resync from autoconf.
5333         * INSTALL: Regenerate.
5334         * INSTALL.ISO: New file.
5335         * INSTALL.UTF-8: Likewise.
5336
5337 2008-08-26  Jim Meyering  <meyering@redhat.com>
5338
5339         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
5340         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
5341         these definitions conditional, so that they may be overridden, too.
5342
5343 2008-08-26  Bruno Haible  <bruno@clisp.org>
5344
5345         Generate INSTALL file variants with prettier quotes.
5346         * doc/Makefile (INSTALL_PRELUDE): New macro.
5347         (INSTALL): Use it.
5348         (INSTALL.ISO, INSTALL.UTF-8): New rules.
5349
5350 2008-08-26  Bruno Haible  <bruno@clisp.org>
5351
5352         Run makeinfo in an English locale.
5353         * doc/Makefile (MAKEINFO): New variable.
5354
5355 2008-08-26  Bruno Haible  <bruno@clisp.org>
5356
5357         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
5358         Suggested by Eric Blake.
5359
5360 2008-08-25  Bruno Haible  <bruno@clisp.org>
5361
5362         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
5363
5364 2008-08-25  Eric Blake  <ebb9@byu.net>
5365
5366         c-stack: test that stack overflow can be caught
5367         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
5368         that platform allows handling stack overflow; at least OS/2 EMX
5369         has sigaltstack, but crashes before transferring control to
5370         handler on stack overflow.
5371         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
5372         check for HAVE_STACK_OVERFLOW_HANDLING.
5373         Reported by Elbert Pol.
5374
5375 2008-08-25  Bruno Haible  <bruno@clisp.org>
5376
5377         * doc/posix-functions/strftime.texi: Fix description of strftime
5378         module.
5379
5380 2008-08-24  Bruno Haible  <bruno@clisp.org>
5381
5382         * tests/uniwidth/test-uc_width2.c: New file.
5383         * tests/uniwidth/test-uc_width2.sh: New file.
5384         * modules/uniwidth/width-tests (Files): Add the new files.
5385         (TESTS): Add uniwidth/test-uc_width2.sh.
5386         (TESTS_ENVIRONMENT): New variable.
5387         (check_PROGRAMS): Add test-uc_width2.
5388         (test_uc_width2_SOURCES): New variable.
5389
5390         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
5391         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
5392         not 0x00AB.
5393         Reported by Alexander V. Lukyanov <lav@netis.ru>.
5394
5395 2008-08-22  Eric Blake  <ebb9@byu.net>
5396
5397         test-lock, test-tls: mention why a test is skipped
5398         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
5399         skipped.
5400         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
5401
5402         count-one-bits: relax license
5403         * modules/count-one-bits (License): Relicense to LGPLv2+.
5404         Suggested by Ludovic Courtès, approved by Ben Pfaff.
5405
5406 2008-08-22  Andreas Schwab  <schwab@suse.de>
5407
5408         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
5409         Remove spurious space in assignment.
5410
5411 2008-08-21  Simon Josefsson  <simon@josefsson.org>
5412
5413         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
5414         Paul Eggert <eggert@CS.UCLA.EDU>.
5415
5416 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
5417
5418         * modules/gettext: Add m4/threadlib.m4.
5419
5420 2008-08-19  Eric Blake  <ebb9@byu.net>
5421
5422         test-c-stack: fix compilation failure on FreeBSD 5.0
5423         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
5424         headers before <sys/resource.h>.
5425         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
5426         the bug.
5427         Reported by Nelson H. F. Beebe.
5428
5429         strverscmp: migrate from "strverscmp.h" to <string.h>
5430         * modules/string (Makefile.am): Add new hooks.
5431         * modules/strverscmp (Files): Remove strverscmp.h.
5432         (Depends-on): Add string.
5433         (configure.ac): Add indicator.
5434         (Include): Mention new header.
5435         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
5436         defaults.
5437         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
5438         results.
5439         * lib/strverscmp.h: Delete.
5440         * lib/string.in.h (strverscmp): Provide declaration, when needed.
5441         * tests/test-strverscmp.c (includes): Adjust client.
5442         * lib/check-version.c (includes): Likewise.
5443         * NEWS: Document the change.
5444
5445         strverscmp: add unit test
5446         * modules/strverscmp-tests: New file.
5447         * tests/test-strverscmp.c: Likewise.
5448
5449 2008-08-19  Simon Josefsson  <simon@josefsson.org>
5450
5451         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
5452         regarding Windows crypto stuff, from Mono.
5453
5454 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
5455
5456         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
5457         if present, for intel RND.  Return error on failures.
5458
5459 2008-08-18  Ben Pfaff  <blp@gnu.org>
5460
5461         gitlog-to-changelog: give better diagnostic for failed pipe-open
5462         * build-aux/gitlog-to-changelog: Improve error message: suggest
5463         that the version of Git may be too old.
5464
5465 2008-08-18  Simon Josefsson  <simon@josefsson.org>
5466
5467         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
5468         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
5469
5470 2008-08-18  Bruno Haible  <bruno@clisp.org>
5471
5472         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
5473         pthread_in_use().
5474
5475 2008-08-18  Bruno Haible  <bruno@clisp.org>
5476
5477         * lib/glthread/threadlib.c: Include <pthread.h>.
5478
5479 2008-08-18  Bruno Haible  <bruno@clisp.org>
5480
5481         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
5482         glthread_recursive_lock_* macros.
5483         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
5484         Fix syntax error.
5485
5486 2008-08-18  Bruno Haible  <bruno@clisp.org>
5487
5488         * lib/glthread/thread.c: Avoid forcing a context switch right after
5489         thread creation.
5490
5491 2008-08-17  Bruno Haible  <bruno@clisp.org>
5492
5493         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
5494         * lib/glthread/thread.h: Provide Win32 specific implementation.
5495         * modules/thread (Files): Add lib/glthread/thread.c.
5496         (Depends-on): Add lock.
5497         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
5498
5499 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5500
5501         New module 'yield'.
5502         * modules/yield: New file.
5503         * lib/glthread/yield.h: New file.
5504         * m4/yield.m4: New file.
5505         * MODULES.html.sh (Multithreading): Add yield.
5506
5507 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5508
5509         New module 'thread'.
5510         * modules/thread: New file.
5511         * lib/glthread/thread.h: New file.
5512         * m4/thread.m4: New file.
5513         * MODULES.html.sh (Multithreading): Add thread.
5514
5515 2008-08-17  Bruno Haible  <bruno@clisp.org>
5516
5517         * lib/glthread/lock.h: Include <stdlib.h> always.
5518         * lib/glthread/tls.h: Likewise.
5519         * lib/glthread/cond.h: Likewise.
5520
5521 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5522
5523         New module 'cond'.
5524         * modules/cond: New file.
5525         * lib/glthread/cond.h: New file.
5526         * lib/glthread/cond.c: New file.
5527         * m4/cond.m4: New file.
5528         * MODULES.html.sh (Multithreading): Add cond.
5529
5530 2008-08-16  Eric Blake  <ebb9@byu.net>
5531
5532         c-stack: fix regression on Irix 5.3 from 2008-06-21
5533         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
5534         sa_sigaction...
5535         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
5536         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
5537         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
5538         * modules/signal (Makefile.am): Use the value.
5539         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
5540         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
5541         * doc/posix-headers/signal.texi (signal.h): Document this
5542         portability issue.
5543         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
5544         Reported by Tom G. Christensen.
5545
5546 2008-08-17  Bruno Haible  <bruno@clisp.org>
5547
5548         New module 'threadlib'.
5549         * modules/threadlib: New file.
5550         * lib/glthread/threadlib.c: New file, extracted from
5551         lib/glthread/lock.c.
5552         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
5553         functions.
5554         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
5555         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
5556         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
5557         macros.
5558         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
5559         (gl_DISABLE_THREADS): Remove macro.
5560         * modules/lock (Files): Remove build-aux/config.rpath.
5561         (Depends-on): Remove havelib. Add threadlib.
5562         (configure.ac-early): Remove section.
5563         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
5564         * modules/tls (Depends-on): Remove lock. Add threadlib.
5565         (Link): New section, copied from threadlib.
5566         * MODULES.html.sh (Multithreading): Add threadlib.
5567
5568 2008-08-14  Bruno Haible  <bruno@clisp.org>
5569
5570         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
5571         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
5572         glthread_rwlock_unlock, glthread_rwlock_destroy,
5573         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
5574         glthread_recursive_lock_destroy): Define as macros always.
5575         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
5576         glthread_lock_lock.
5577         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
5578         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
5579         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
5580         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
5581         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
5582         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
5583         (glthread_recursive_lock_lock_func): Renamed from
5584         glthread_recursive_lock_lock.
5585         (glthread_recursive_lock_unlock_func): Renamed from
5586         glthread_recursive_lock_unlock.
5587         (glthread_recursive_lock_destroy_func): Renamed from
5588         glthread_recursive_lock_destroy.
5589
5590 2008-08-14  Bruno Haible  <bruno@clisp.org>
5591
5592         * lib/glthread/lock.h: Renamed from lib/lock.h.
5593         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
5594         * lib/glthread/tls.h: Renamed from lib/tls.h.
5595         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
5596         * lib/fstrcmp.c: Update includes.
5597         * lib/strsignal.c: Update includes.
5598         * modules/lock (Files, Makefile.am): Update.
5599         (Include): Change to "glthread/lock.h".
5600         * modules/tls (Files, Makefile.am): Update.
5601         (Include): Change to "glthread/tls.h".
5602         * tests/test-lock.c: Update includes.
5603         * tests/test-tls.c: Update includes.
5604         * NEWS: Mention the renamed header files.
5605
5606 2008-08-11  Jim Meyering  <meyering@redhat.com>
5607
5608         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
5609
5610 2008-08-11  Eric Blake  <ebb9@byu.net>
5611
5612         test-c-stack: avoid C99-ism
5613         * tests/test-c-stack.c (main): Fix whitespace, move declaration
5614         before statement.
5615         Reported by Alain Guibert.
5616
5617 2008-08-10  Jim Meyering  <meyering@redhat.com>
5618
5619         ensure that return value of uinttostr et al are not ignored
5620         * lib/inttostr.h (__GNUC_PREREQ): Define.
5621         (__attribute_warn_unused_result__): Define.
5622         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
5623
5624 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
5625
5626         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
5627         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
5628
5629 2008-08-07  Jim Meyering  <meyering@redhat.com>
5630
5631         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
5632
5633         * modules/mkstemp (License): Relicense under LGPLv2+.
5634         * modules/tempname (License): Likewise.
5635
5636 2008-08-06  Bruno Haible  <bruno@clisp.org>
5637
5638         * lib/poll.c (poll): Further micro-optimization.
5639
5640 2008-08-06  Jim Meyering  <meyering@redhat.com>
5641
5642         inet_pton.c: use locale-independent tolower
5643         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
5644         (inet_pton6): Use c_tolower rather than tolower.
5645         * modules/inet_pton (Depends-on): Add c-ctype.
5646
5647 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
5648
5649         * lib/poll.c (poll): Avoid division when timeout is 0, cache
5650         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
5651
5652 2008-08-06  Jim Meyering  <meyering@redhat.com>
5653
5654         * modules/inet_pton (License): Relicense under LGPLv2+.
5655
5656 2008-08-03  Bruno Haible  <bruno@clisp.org>
5657
5658         Additional non-aborting API for lock and tls.
5659         * lib/lock.h: Include <errno.h>.
5660         (glthread_lock_init): New macro/function.
5661         (gl_lock_init): Define as wrapper around glthread_lock_init.
5662         (glthread_lock_lock): New macro/function.
5663         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
5664         (glthread_lock_unlock): New macro/function.
5665         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
5666         (glthread_lock_destroy): New macro/function.
5667         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
5668         (glthread_rwlock_init): New macro/function.
5669         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
5670         (glthread_rwlock_rdlock): New macro/function.
5671         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
5672         (glthread_rwlock_wrlock): New macro/function.
5673         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
5674         (glthread_rwlock_unlock): New macro/function.
5675         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
5676         (glthread_rwlock_destroy): New macro/function.
5677         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
5678         (glthread_recursive_lock_init): New macro/function.
5679         (gl_recursive_lock_init): Define as wrapper around
5680         glthread_recursive_lock_init.
5681         (glthread_recursive_lock_lock): New macro/function.
5682         (gl_recursive_lock_lock): Define as wrapper around
5683         glthread_recursive_lock_lock.
5684         (glthread_recursive_lock_unlock): New macro/function.
5685         (gl_recursive_lock_unlock): Define as wrapper around
5686         glthread_recursive_lock_unlock.
5687         (glthread_recursive_lock_destroy): New macro/function.
5688         (gl_recursive_lock_destroy): Define as wrapper around
5689         glthread_recursive_lock_destroy.
5690         (glthread_once): New macro/function.
5691         (gl_once): Define as wrapper around glthread_once.
5692         Update function declarations.
5693         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
5694         glthread_rwlock_init. Return error code.
5695         (glthread_rwlock_rdlock_multithreaded): Renamed from
5696         glthread_rwlock_rdlock. Return error code.
5697         (glthread_rwlock_wrlock_multithreaded): Renamed from
5698         glthread_rwlock_wrlock. Return error code.
5699         (glthread_rwlock_unlock_multithreaded): Renamed from
5700         glthread_rwlock_unlock. Return error code.
5701         (glthread_rwlock_destroy_multithreaded): Renamed from
5702         glthread_rwlock_destroy. Return error code.
5703         (glthread_recursive_lock_init_multithreaded): Renamed from
5704         glthread_recursive_lock_init. Return error code.
5705         (glthread_recursive_lock_lock_multithreaded): Renamed from
5706         glthread_recursive_lock_lock. Return error code.
5707         (glthread_recursive_lock_unlock_multithreaded): Renamed from
5708         glthread_recursive_lock_unlock. Return error code.
5709         (glthread_recursive_lock_destroy_multithreaded): Renamed from
5710         glthread_recursive_lock_destroy. Return error code.
5711         (glthread_once_call): Make static.
5712         (glthread_once_multithreaded): Renamed from glthread_once.
5713         * lib/tls.h: Include <errno.h>.
5714         (glthread_tls_key_init): New macro/function.
5715         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
5716         (glthread_tls_set): New macro/function.
5717         (gl_tls_set): Define as wrapper around glthread_tls_set.
5718         (glthread_tls_key_destroy): New macro/function.
5719         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
5720         Update function declarations.
5721         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
5722         glthread_tls_get.
5723         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
5724
5725 2008-08-04  Eric Blake  <ebb9@byu.net>
5726
5727         gnumakefile: use space, not TAB, outside of targets
5728         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
5729
5730 2008-08-02  Jim Meyering  <meyering@redhat.com>
5731
5732         getdate.y: avoid locale-dependent date parsing failure
5733         In Turkish locales, getdate would fail to recognize keywords
5734         containing a lowercase "i".  The solution is not to rely on
5735         locale-sensitive case-conversion.
5736         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
5737         (lookup_word): Use c_toupper in place of toupper.
5738         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
5739         Reported by Vefa Bicakci <bicave@superonline.com> in
5740         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
5741         * modules/getdate (Depends-on): Add c-ctype.
5742
5743 2008-08-02  Bruno Haible  <bruno@clisp.org>
5744
5745         * gnulib-tool (func_import): When updating or creating a .gitignore
5746         file, prepend each added line with a slash, and ignore leading slashes
5747         from the existing lines.
5748         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
5749
5750 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5751
5752         Portability fix for GNU make 3.79.1.
5753         * top/GNUmakefile: Avoid 'else COND', which older GNU make
5754         versions do not understand.
5755
5756 2008-08-01  Bruno Haible  <bruno@clisp.org>
5757
5758         Work around bug of HP-UX 10.20 cc with -0.0 literal.
5759         * tests/test-isnanf.h (zero): New variable.
5760         (main): Avoid literal -0.0f.
5761         * tests/test-isnand.h (zero): New variable.
5762         (main): Avoid literal -0.0.
5763         * tests/test-isnanl.h (zero): New variable.
5764         (main): Avoid literal -0.0L.
5765         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
5766         (test_float, test_double, test_long_double): Avoid literals -0.0f,
5767         -0.0, -0.0L.
5768         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
5769         (test_signbitd): Avoid literal -0.0.
5770         (test_signbitl): Avoid literal -0.0L.
5771         * tests/test-ceilf1.c (zero): New variable.
5772         (main): Avoid literal -0.0f.
5773         * tests/test-ceill.c (zero): New variable.
5774         (main): Avoid literal -0.0L.
5775         * tests/test-floorf1.c (zero): New variable.
5776         (main): Avoid literal -0.0f.
5777         * tests/test-floorl.c (zero): New variable.
5778         (main): Avoid literal -0.0L.
5779         * tests/test-roundf1.c (zero): New variable.
5780         (main): Avoid literal -0.0f.
5781         * tests/test-round1.c (zero): New variable.
5782         (main): Avoid literal -0.0.
5783         * tests/test-roundl.c (zero): New variable.
5784         (main): Avoid literal -0.0L.
5785         * tests/test-truncf1.c (zero): New variable.
5786         (main): Avoid literal -0.0f.
5787         * tests/test-trunc1.c (zero): New variable.
5788         (main): Avoid literal -0.0.
5789         * tests/test-truncl.c (zero): New variable.
5790         (main): Avoid literal -0.0L.
5791         * tests/test-frexp.c (zero): New variable.
5792         (main): Avoid literal -0.0.
5793         * tests/test-frexpl.c (zero): New variable.
5794         (main): Avoid literal -0.0L.
5795         * tests/test-ldexpl.c (zero): New variable.
5796         (main): Avoid literal -0.0L.
5797         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
5798         (zerod, zerol): New variables.
5799         (test_function): Avoid literals -0.0, -0.0L.
5800         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
5801         (zerod, zerol): New variables.
5802         (test_function): Avoid literals -0.0, -0.0L.
5803         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
5804         (zerod, zerol): New variables.
5805         (test_function): Avoid literals -0.0, -0.0L.
5806         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
5807         (zerod, zerol): New variables.
5808         (test_function): Avoid literals -0.0, -0.0L.
5809         * tests/test-strtod.c (zero): New variable.
5810         (main): Avoid literal -0.0.
5811         Reported by Jonathan C. Patschke <jp@centtech.com>.
5812
5813 2008-07-31  Jim Meyering  <meyering@redhat.com>
5814
5815         sha256.h: correct definition of SHA224_DIGEST_SIZE
5816         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
5817         Reported by Paulie Pena IV <paulie4@gmail.com>.
5818         Define as 224 / 8, rather than as a literal.
5819         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
5820         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
5821         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
5822
5823 2008-07-31  Bruno Haible  <bruno@clisp.org>
5824
5825         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
5826         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
5827         Reported by Jonathan Patschke <jp@centtech.com>.
5828
5829 2008-07-31  Bruno Haible  <bruno@clisp.org>
5830
5831         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
5832         Reported by Paolo Bonzini <bonzini@gnu.org>.
5833
5834 2008-07-30  Eric Blake  <ebb9@byu.net>
5835
5836         test-strtod: allow compilation without -lm
5837         * tests/test-strtod.c (main): Avoid link dependence on fabs.
5838         Reported by Dennis Clarke <blastwave@gmail.com>.
5839
5840 2008-07-28  Jim Meyering  <meyering@redhat.com>
5841
5842         bootstrap: work also when there are no .po files in po/
5843         * build-aux/bootstrap (update_po_files): Complete the change
5844         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
5845
5846 2008-07-27  Jim Meyering  <meyering@redhat.com>
5847
5848         * users.txt: Add zile.
5849
5850 2008-07-26  Ben Pfaff  <blp@gnu.org>
5851
5852         Add missing dependencies on new m4/exponent[fdl].m4 files.
5853         * modules/isnanf-nolibm: Add m4/exponentf.m4.
5854         * modules/isnand-nolibm: Add m4/exponentd.m4.
5855         * modules/isnanl-nolibm: Add m4/exponentl.m4.
5856         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
5857         m4/isnan[fdl].m4, because the macros actually used moved.
5858         Reported by Jim Meyering.
5859
5860 2008-07-14  Ben Pfaff  <blp@gnu.org>
5861
5862         Add isinf module.
5863         * lib/isinf.c: New file.
5864         * lib/math.in.h: Define isinf macro if we have decided to replace
5865         it.
5866         * m4/isinf.m4: New file.
5867         * m4/math_h.m4: Initialize and substitute variables for isinf
5868         module.
5869         * modules/isinf: New file.
5870         * modules/isinf-tests: New file.
5871         * modules/math: Add substitutions for new module.
5872         * tests/test-isinf.c: New file.
5873         * doc/posix-functions/isinf.texi: Mention new module.
5874         * MODULES.html.sh: Mention new module.
5875
5876 2008-07-14  Ben Pfaff  <blp@gnu.org>
5877
5878         Factor out some macros for use by additional modules.
5879         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
5880         exponentf.m4.
5881         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
5882         exponentd.m4.
5883         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
5884         file exponentl.m4.
5885         * m4/exponentf.m4: New file.
5886         * m4/exponentd.m4: New file.
5887         * m4/exponentl.m4: New file.
5888         * modules/isnanf: Use new file m4/exponentf.m4.
5889         * modules/isnand: Use new file m4/exponentd.m4.
5890         * modules/isnanl: Use new file m4/exponentl.m4.
5891
5892 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
5893
5894         mktime.c: normalize tp->tm_isdst value to -1/0/1.
5895         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
5896         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
5897         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
5898
5899         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
5900         readlink on platforms without PATH_MAX.
5901
5902 2008-07-21  Eric Blake  <ebb9@byu.net>
5903
5904         Warn, not fail, on stale version.
5905         * top/GNUmakefile (_curr-ver): Tone down previous patch.
5906
5907         Don't allow installation with stale devel version number.
5908         * top/GNUmakefile (_is-install-target): New macro.
5909         (_curr-ver): Forbid installation with stale version number.
5910
5911 2008-07-20  Bruno Haible  <bruno@clisp.org>
5912
5913         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
5914         TESTS_ENVIRONMENT.
5915         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
5916
5917 2008-07-20  Bruno Haible  <bruno@clisp.org>
5918
5919         * lib/c-stack.h (c_stack_action): Add documentation.
5920         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
5921
5922 2008-07-20  Bruno Haible  <bruno@clisp.org>
5923
5924         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
5925         * modules/readlink (License): Likewise.
5926
5927 2008-07-17  Eric Blake  <ebb9@byu.net>
5928
5929         * modules/c-stack (Link): Fix typo.
5930
5931         Make c-stack use libsigsegv, when available.
5932         * modules/c-stack (Depends-on): Add libsigsegv.
5933         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
5934         needed.
5935         * lib/c-stack.c (SIGSTKSZ): Define fallback.
5936         (segv_handler, overflow_handler, c_stack_action)
5937         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
5938         implementation when libsigsegv is available, but only when using
5939         the library is necessary.
5940         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
5941         comment, explaining why XSI check fails on Linux.
5942         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
5943         * tests/test-c-stack2.sh: Tweak skip message.
5944         * NEWS: Document new link-time requirements.
5945
5946 2008-07-16  Eric Blake  <ebb9@byu.net>
5947
5948         c-stack: Expose false positives when not using libsigsegv.
5949         * modules/c-stack-tests (Files): Expand test.
5950         * tests/test-c-stack.c (main): Add means to conditionally trigger
5951         non-overflow SIGSEGV.
5952         * tests/test-c-stack2.sh: New file.
5953
5954 2008-07-14  Bruno Haible  <bruno@clisp.org>
5955
5956         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
5957         Reported by Eric Blake.
5958
5959 2008-07-14  Sam Steingold  <sds@gnu.org>
5960             Bruno Haible  <bruno@clisp.org>
5961
5962         New module libsigsegv.
5963         * modules/libsigsegv: New file.
5964         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
5965         modifications.
5966         * MODULES.html.sh (Signal handling): New section.
5967
5968 2008-07-14  Bruno Haible  <bruno@clisp.org>
5969
5970         * modules/unictype/ctype-* (Description): Add the word "function".
5971         Improves the resulting doc in MODULES.html.
5972
5973 2008-07-12  Ben Pfaff  <blp@gnu.org>
5974
5975         Add longlong module.
5976         * modules/longlong: New file.
5977
5978 2008-07-12  Bruno Haible  <bruno@clisp.org>
5979
5980         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
5981         to empty.
5982
5983 2008-07-10  Ben Pfaff  <blp@gnu.org>
5984
5985         Add isnan module.
5986         * doc/posix-functions/isnan.texi: Mention new module.
5987         * lib/math.in.h: Define isnan macro if we have decided to replace
5988         it.
5989         * m4/isnan.m4: New file.
5990         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
5991         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
5992         also.
5993         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
5994         redundancy.
5995         * m4/math_h.m4: Initialize and substitute variables for isnan
5996         module.
5997         * modules/isnan: New file.
5998         * modules/isnan-tests: New file.
5999         * modules/math: Add substitutions for new module.
6000         * tests/test-isnan.c: New file.
6001         * MODULES.html.sh: Mention new module.
6002
6003 2008-07-10  Ben Pfaff  <blp@gnu.org>
6004
6005         Add isnanf module.
6006         * lib/isnanf.m4: New file.
6007         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
6008         (gl_HAVE_ISNANF_IN_LIBM): New macro.
6009         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
6010         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
6011         * modules/isnanf: New file.
6012         * modules/isnanf-tests: New file.
6013         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
6014         files.
6015         * tests/test-isnanf-nolibm.c: factored most of its contents into
6016         new file tests/test-isnanf.h.
6017         * tests/test-isnanf.h: New file.
6018         * tests/test-isnanf.c: New file.
6019         * MODULES.html.sh: Mention new module.
6020         * doc/glibc-functions/isnanf.texi: Mention new module.
6021
6022 2008-07-10  Ben Pfaff  <blp@gnu.org>
6023
6024         Add isnand module.
6025         * lib/isnand.h: New file.
6026         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
6027         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
6028         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
6029         functionality also.
6030         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
6031         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
6032         (gl_HAVE_ISNAND_IN_LIBM): New macro.
6033         * modules/isnand: New file.
6034         * modules/isnand-tests: New file.
6035         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
6036         files.
6037         * tests/test-isnand-nolibm.c: factored most of its contents into
6038         new file tests/test-isnand.h.
6039         * tests/test-isnand.h: New file.
6040         * tests/test-isnand.c: New file.
6041         * MODULES.html.sh: Mention new module.
6042
6043 2008-07-10  Ben Pfaff  <blp@gnu.org>
6044
6045         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
6046         * lib/isnand.h: Rename lib/isnand-nolibm.h.
6047         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
6048         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
6049         * modules/isnanf-nolibm: Update references to renamed files.
6050         * modules/isnand-nolibm: Likewise.
6051         * modules/isnanf-nolibm-tests: Likewise.
6052         * modules/isnand-nolibm-tests: Likewise.
6053         * lib/frexp.c: Likewise.
6054         * lib/isfinite.c: Likewise.
6055         * lib/signbitd.c: Likewise.
6056         * lib/signbitf.c: Likewise.
6057         * lib/vasnprintf.c: Likewise.
6058         * tests/test-ceilf1.c: Likewise.
6059         * tests/test-ceilf2.c: Likewise.
6060         * tests/test-floorf1.c: Likewise.
6061         * tests/test-floorf2.c: Likewise.
6062         * tests/test-frexp.c: Likewise.
6063         * tests/test-round1.c: Likewise.
6064         * tests/test-round2.c: Likewise.
6065         * tests/test-roundf1.c: Likewise.
6066         * tests/test-strtod.c: Likewise.
6067         * tests/test-trunc1.c: Likewise.
6068         * tests/test-trunc2.c: Likewise.
6069         * tests/test-truncf1.c: Likewise.
6070         * tests/test-truncf2.c: Likewise.
6071         * NEWS: Mention the renamed header files.
6072
6073 2008-07-11  Jim Meyering  <meyering@redhat.com>
6074
6075         vc-list-files: make the last-resort awk code more portable
6076         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
6077         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
6078         does not support it.
6079
6080 2008-07-10  Eric Blake  <ebb9@byu.net>
6081
6082         Work with tar's bootstrap.
6083         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
6084         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
6085         an m4 comment.
6086
6087 2008-07-09  Jim Meyering  <meyering@redhat.com>
6088
6089         posix-shell.m4: fix typo that made this test malfunction
6090         * m4/posix-shell.m4: Remove capitalization in variable name.
6091
6092 2008-07-08  Bruno Haible  <bruno@clisp.org>
6093
6094         * m4/onceonly.m4: Update comments.
6095         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6096
6097 2008-07-04  Jim Meyering  <meyering@redhat.com>
6098
6099         * users.txt: Add vc-dwim.
6100         (bison, coreutils): Use the gitweb URL.
6101
6102 2008-07-03  Jim Meyering  <meyering@redhat.com>
6103
6104         * users.txt: Add libffcall.  From Sam Steingold.
6105
6106 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
6107
6108         getdate.y: do not ignore TZ with relative day, month or year offset
6109         * lib/getdate.y (get_date): Move the tz-handling block to follow the
6110         relative-date-handling, since otherwise, the latter would clobber the
6111         sole output (an updated Start value) of the tz-handling block.
6112         * tests/test-getdate.c: Tests for the fix
6113
6114 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6115
6116         Recognize 'foo_LIBRARIES += libgnu.a'.
6117         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
6118         makefile snippet has already specified an installation location,
6119         also using '+='.
6120
6121 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
6122
6123         getdate.y: factor out common actions
6124         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
6125         Use them in place of open-coded actions.
6126
6127 2008-07-01  Simon Josefsson  <simon@josefsson.org>
6128
6129         Add self-test for getdate module.
6130         * modules/getdate-tests: New file.
6131         * tests/test-getdate.c: New file.
6132
6133 2008-06-29  Bruno Haible  <bruno@clisp.org>
6134
6135         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
6136         .gitignore.
6137         Reported by Sylvain Beucler <beuc@beuc.net>.
6138
6139 2008-06-29  Bruno Haible  <bruno@clisp.org>
6140
6141         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
6142         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
6143
6144 2008-06-29  Bruno Haible  <bruno@clisp.org>
6145
6146         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
6147         EXTRA_DIST.
6148         Reported by Sylvain Beucler <beuc@beuc.net>.
6149
6150 2008-06-26  Jim Meyering  <meyering@redhat.com>
6151
6152         make several modules depend on the "open" module
6153         This provides slightly increased consistency when opening-for-write
6154         the name of a non-directory spelled with a trailing slash.
6155         * modules/chdir-safer: Likewise.
6156         * modules/chown: Likewise.
6157         * modules/clean-temp: Likewise.
6158         * modules/copy-file: Likewise.
6159         * modules/fchdir: Likewise.
6160         * modules/fcntl-safer: Likewise.
6161         * modules/pipe: Likewise.
6162         * modules/utime: Likewise.
6163         Prompted by Eric Blake and Bruno Haible.
6164
6165 2008-06-24  Andreas Schwab  <schwab@suse.de>
6166
6167         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
6168         literals can be used as initializers for global variables.
6169
6170 2008-06-23  Eric Blake  <ebb9@byu.net>
6171
6172         Make gnulib-cache.m4 easier to diff.
6173         * gnulib-tool (func_import): Allow newlines when reading cached
6174         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
6175
6176 2008-06-23  Bruno Haible  <bruno@clisp.org>
6177
6178         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
6179         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
6180         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
6181         m4/signalblocking.m4.
6182         (gl_PREREQ_SIGACTION): Don't invoke it.
6183         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
6184         gl_PREREQ_SIG_HANDLER_H.
6185         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
6186         Don't check for sigaction here.
6187
6188 2008-06-23  Bruno Haible  <bruno@clisp.org>
6189
6190         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
6191         (install_handlers): Don't set the SA_RESETHAND flag.
6192
6193 2008-06-23  Bruno Haible  <bruno@clisp.org>
6194
6195         * m4/sigaction.m4: Comment fixes.
6196         * lib/signal.in.h: Likewise.
6197
6198 2008-06-23  Eric Blake  <ebb9@byu.net>
6199
6200         Fix typo.
6201         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
6202
6203         Avoid SA_ namespace.
6204         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
6205         Reported by Ralf Wildenhues.
6206
6207         Avoid test failure due to SA_RESTORER.
6208         * tests/test-sigaction.c (SA_MASK): New macro.
6209         (main): Avoid failing due to extension flags being set.
6210         Reported by Jim Meyering.
6211
6212         Revert use of sig-handler.h in sigprocmask.c.
6213         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
6214         it requires the existence of struct sigaction.
6215         * lib/sigprocmask.c (handler_t): Restore typedef.
6216         (rpl_signal, old_handlers): Use local type.
6217
6218 2008-06-22  Bruno Haible  <bruno@clisp.org>
6219
6220         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
6221         conditionally.
6222         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
6223
6224 2008-06-22  Bruno Haible  <bruno@clisp.org>
6225
6226         * doc/posix-functions/siginterrupt.texi: Move note.
6227
6228         * lib/signal.in.h (SA_RESTART): New macro.
6229         * lib/sigaction.c: Update comment.
6230
6231         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
6232
6233         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
6234         (gl_PREREQ_SIGPROCMASK): Invoke it.
6235         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
6236
6237         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
6238
6239         * lib/sigprocmask.c: Update a comment.
6240
6241 2008-06-21  Eric Blake  <ebb9@byu.net>
6242
6243         Use sigaction module rather than signal().
6244         * modules/c-stack (Depends-on): Add sigaction.
6245         * modules/fatal-signal (Depends-on): Likewise.
6246         * modules/nanosleep (Depends-on): Likewise.
6247         * modules/sigprocmask (Files): Add sig-handler.h.
6248         * modules/sigaction (Files): Likewise.
6249         * lib/sig-handler.h (get_handler): New file, suggested by Paul
6250         Eggert.
6251         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
6252         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
6253         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
6254         (init_fatal_signals): Likewise.
6255         * lib/nanosleep.c (rpl_nanosleep): Likewise.
6256         (siginterrupt): Delete fallback.
6257         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
6258         instead.
6259         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
6260         siginterrupt.
6261
6262         New module sigaction, for mingw.
6263         * modules/sigaction: New module...
6264         * modules/sigaction-tests: ...and its test.
6265         * m4/sigaction.m4: New file.
6266         * lib/sigaction.c: Likewise.
6267         * tests/test-sigaction.c: Likewise.
6268         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
6269         * modules/signal (Makefile.am): Likewise.
6270         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
6271         needed.
6272         * doc/posix-headers/signal.texi (signal.h): Mention provided
6273         types.
6274         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
6275         that sigaction is preferable.
6276         * doc/posix-functions/sigaction.texi (sigaction): Mention new
6277         module.
6278         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
6279         sigaction.
6280
6281         Improve robustness of sigprocmask by overriding signal.
6282         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
6283         is in use.
6284         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
6285         (SIGKILL, SIGSTOP): Provide fallbacks.
6286         (rpl_signal): Implement.
6287         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
6288         signal can be called inside handlers.
6289
6290         Fix nanosleep module on mingw.
6291         * modules/nanosleep (Depends-on): Add sys_select.
6292         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
6293
6294         Fix licensing of sigprocmask.
6295         * modules/raise (License): Relicense as LGPL.
6296
6297 2008-06-21  Bruno Haible  <bruno@clisp.org>
6298
6299         * lib/propername.c (proper_name_utf8): Don't use the transliterated
6300         result if it contains question marks.
6301         Reported by Michael Geng <linux@michaelgeng.de>.
6302
6303 2008-06-19  Bruno Haible  <bruno@clisp.org>
6304
6305         Fix CVS-ism.
6306         * doc/gnulib.texi: Include updated-stamp.texi.
6307         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
6308         (updated-stamp.texi): New rule.
6309         (gnulib.info): Depend on it.
6310         * doc/.gitignore: Add updated-stamp.texi.
6311         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
6312
6313 2008-06-19  Bruno Haible  <bruno@clisp.org>
6314
6315         * doc/Makefile (gnulib.info): Update and simplify dependencies.
6316         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
6317
6318 2008-06-19  Eric Blake  <ebb9@byu.net>
6319
6320         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
6321         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
6322         Reported by Stepan Kasal.
6323
6324 2008-06-18  Bruno Haible  <bruno@clisp.org>
6325
6326         * lib/fatal-signal.c (init_fatal_signals): Add comment.
6327         Reported by Eric Blake.
6328
6329 2008-06-18  Eric Blake  <ebb9@byu.net>
6330
6331         Work around cygwin 1.5.25 strsignal bug.
6332         * tests/test-strsignal.c: Allow for const char *.
6333         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
6334
6335 2008-06-18  Simon Josefsson  <simon@josefsson.org>
6336
6337         * users.txt: Update URL to article and add author/date
6338         information.
6339
6340 2008-06-17  Bruno Haible  <bruno@clisp.org>
6341
6342         New macro gl_DISABLE_THREADS.
6343         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
6344         if the user did not pass --enable-threads or --disable-threads option.
6345         (gl_DISABLE_THREADS): New macro.
6346         Reported by Eric Blake <ebb9@byu.net>.
6347
6348 2008-06-17  Bruno Haible  <bruno@clisp.org>
6349
6350         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
6351         when the macro ignores it.
6352         Based on a patch by Eric Blake <ebb9@byu.net>.
6353
6354 2008-06-17  Bruno Haible  <bruno@clisp.org>
6355
6356         * modules/tls (License): Change to LGPLv2+.
6357         Reported by Eric Blake.
6358
6359 2008-06-17  Eric Blake  <ebb9@byu.net>
6360
6361         Simplify c-stack prerequisites.
6362         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
6363         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
6364         no longer requires <ucontext.h> to exist.  Optimize setrlimit
6365         check.
6366         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
6367         <sys/resource.h>.
6368
6369         Move c-stack test into testsuite.
6370         * modules/c-stack-tests: New file.
6371         * lib/c-stack.c [DEBUG]: Move test program...
6372         * tests/test-c-stack.c: ...into this new file.  Skip rather than
6373         fail test if sigaltstack is lacking.
6374         * tests/test-c-stack.sh: New driver file.
6375
6376 2008-06-16  Eric Blake  <ebb9@byu.net>
6377
6378         Use raise module consistently.
6379         * modules/fatal-signal (Depends-on): Add raise.
6380         * modules/sigprocmask (Depends-on): Likewise.
6381         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
6382         * lib/sigprocmask.c (sigprocmask): Likewise.
6383         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
6384         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
6385
6386         Fix compliance bug in sigpending.
6387         * lib/sigprocmask.c (sigpending): Return pending array via
6388         parameter, not return value.
6389
6390 2008-06-14  Eric Blake  <ebb9@byu.net>
6391
6392         Improve obstack-printf test code.
6393         * tests/test-obstack-printf.c (test_function): Fix comment, and
6394         simplify usage of obstack_* in macros.  Add a test for coverage.
6395         Reported by Bruno Haible.
6396
6397 2008-06-14  Bruno Haible  <bruno@clisp.org>
6398
6399         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
6400         array size as a constant, not as a const variable.
6401         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
6402         AC_USE_SYSTEM_EXTENSIONS.
6403         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
6404         Test whether the obstack_printf function actually exists.
6405         * modules/obstack-printf (Depends-on): Add extensions.
6406         (Include): Remove obstack.h.
6407         * modules/obstack-printf-posix (Depends-on): Add extensions.
6408         (Include): Remove obstack.h.
6409
6410 2008-06-13  Eric Blake  <ebb9@byu.net>
6411
6412         Add obstack-printf and obstack-printf-posix modules.
6413         * modules/obstack-printf: New file.
6414         * modules/obstack-printf-posix: Likewise.
6415         * MODULES.html.sh (Misc): Mention them.
6416         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
6417         Likewise.
6418         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
6419         Likewise.
6420         * modules/stdio (Makefile.am): Accomodate new modules.
6421         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6422         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
6423         Declare.
6424         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
6425         functions.
6426         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
6427         (gl_REPLACE_OBSTACK_PRINTF): New macros
6428         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
6429         * tests/test-obstack-printf.c: New file.
6430         * modules/obstack-printf-tests: Likewise.
6431         * modules/obstack-printf-posix-tests: Likewise.
6432
6433 2008-06-11  Bruno Haible  <bruno@clisp.org>
6434
6435         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
6436         * lib/open.c: Include errno.h.
6437         (open): Fail when attempting to write to a file that has a trailing
6438         slash.
6439         * tests/test-open.c (main): Test against trailing slash bug.
6440         * doc/posix-functions/open.texi: Mention the trailing slash bug.
6441
6442 2008-06-10  Bruno Haible  <bruno@clisp.org>
6443
6444         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
6445         for $? to work inside the trap command, with various /bin/sh-s.
6446         * tests/test-vc-list-files-cvs.sh: Likewise.
6447
6448 2008-06-10  Bruno Haible  <bruno@clisp.org>
6449
6450         * lib/acl-internal.h: Don't include gettext.h here.
6451         * lib/set-mode-acl.c: Include gettext.h here.
6452         * lib/copy-acl.c: Likewise.
6453
6454 2008-06-10  Bruno Haible  <bruno@clisp.org>
6455
6456         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
6457         * lib/wait-process.c (wait_subprocess): Likewise.
6458         * lib/execute.h (execute): Add termsigp argument.
6459         * lib/execute.c (execute): Likewise.
6460         * lib/csharpcomp.c (compile_csharp_using_pnet,
6461         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
6462         * lib/csharpexec.c (execute_csharp_using_pnet,
6463         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
6464         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
6465         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
6466         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
6467         is_jikes_present): Update.
6468         * lib/javaexec.c (execute_java_class): Update.
6469         * lib/javaversion.c (execute_and_read_line): Update.
6470         * NEWS: Document the changes.
6471         Reported by Eric Blake.
6472
6473 2008-06-10  Eric Blake  <ebb9@byu.net>
6474
6475         Add missing include.
6476         * tests/test-strstr.c (includes): Add <signal.h>.
6477         * tests/test-strcasestr.c (includes): Likewise.
6478         * tests/test-memmem.c (includes): Likewise.
6479
6480 2008-06-10  Bruno Haible  <bruno@clisp.org>
6481
6482         * lib/wait-process.c (wait_subprocess): Add an assertion.
6483
6484 2008-06-10  Bruno Haible  <bruno@clisp.org>
6485
6486         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
6487
6488 2008-06-10  Bruno Haible  <bruno@clisp.org>
6489
6490         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
6491         using alarm().
6492         * tests/test-strcasestr.c (main): Likewise.
6493         * tests/test-strstr.c (main): Likewise.
6494
6495 2008-06-09  Bruno Haible  <bruno@clisp.org>
6496
6497         Work around the Solaris 10 ACE ACLs ABI change.
6498         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
6499         declare if ACL_NO_TRIVIAL is present.
6500         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
6501         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
6502         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
6503         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
6504         define if ACL_NO_TRIVIAL is present.
6505         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
6506         and use the current ABI.
6507         (file_has_acl): Use same #if condition as elsewhere.
6508         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
6509         in use, and use the current ABI.
6510         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
6511         Reported by Jim Meyering.
6512
6513 2008-06-09  Eric Blake  <ebb9@byu.net>
6514
6515         Work around environments that (stupidly) ignore SIGALRM.
6516         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
6517         before using alarm().
6518         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
6519         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
6520         Reported by Ian Beckwith <ianb@erislabs.net>.
6521
6522         Produce autobuild blurb earlier in log.
6523         * modules/autobuild (configure.ac-early): Move AB_INIT here.
6524
6525 2008-06-09  Jim Meyering  <meyering@redhat.com>
6526         and OndÅ™ej Vašík  <ovasik@redhat.com>
6527
6528         utimens.c: correct kernel bug work-around
6529         OndÅ™ej Vašík found that the invalid return value of 280 indicates
6530         failure, not success, and the kernel bug we're trying to work
6531         around affects not just the utimensat call, but also the fallback
6532         futimens call.
6533         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
6534         not success.
6535         [HAVE_FUTIMENS]: Use the same work-around, here.
6536
6537 2008-06-09  Jim Meyering  <meyering@redhat.com>
6538
6539         add more guards around definition of ACE_-related code
6540         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
6541         ALLOW and ACE_OWNER are also defined.
6542
6543 2008-06-08  Bruno Haible  <bruno@clisp.org>
6544
6545         * lib/acl-internal.h: Add me as co-author.
6546         * lib/file-has-acl.c: Likewise.
6547         * lib/set-mode-acl.c: Likewise.
6548         * lib/copy-acl.c: Likewise.
6549
6550 2008-06-08  Bruno Haible  <bruno@clisp.org>
6551
6552         Add support for AIX ACLs.
6553         * lib/acl-internal.h (acl_nontrivial): New declaration.
6554         * lib/file-has-acl.c (acl_nontrivial): New function.
6555         (file_has_acl): Add implementation using AIX 4 ACL API.
6556         * lib/set-mode-acl.c (qset_acl): Likewise.
6557         * lib/copy-acl.c (qcopy_acl): Likewise.
6558
6559 2008-06-08  Bruno Haible  <bruno@clisp.org>
6560
6561         Add support for HP-UX ACLs.
6562         * lib/acl-internal.h (acl_nontrivial): New declaration.
6563         * lib/file-has-acl.c (acl_nontrivial): New function.
6564         (file_has_acl): Add implementation using HP-UX 11 ACL API.
6565         * lib/set-mode-acl.c (qset_acl): Likewise.
6566         * lib/copy-acl.c (qcopy_acl): Likewise.
6567
6568 2008-06-08  Bruno Haible  <bruno@clisp.org>
6569
6570         Add support for Cygwin ACLs.
6571         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
6572         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
6573         the chmod_or_fchmod call.
6574         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
6575
6576 2008-06-08  Bruno Haible  <bruno@clisp.org>
6577
6578         Fix bug with setuid modes in Solaris 10+ code.
6579         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
6580         succeeded, when the mode contains some special bits.
6581
6582 2008-06-08  Bruno Haible  <bruno@clisp.org>
6583
6584         Add support for Solaris 7..10 ACLs.
6585         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
6586         declarations.
6587         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
6588         functions.
6589         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
6590         * lib/set-mode-acl.c (qset_acl): Likewise.
6591         * lib/copy-acl.c (qcopy_acl): Likewise.
6592
6593 2008-06-08  Bruno Haible  <bruno@clisp.org>
6594
6595         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
6596         declaration.
6597         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
6598         (acl_access_nontrivial): Remove MacOS X case.
6599         (file_has_acl): Use acl_extended_nontrivial.
6600         * lib/copy-acl.c (qcopy_acl): Likewise.
6601
6602 2008-06-08  Bruno Haible  <bruno@clisp.org>
6603
6604         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
6605
6606 2008-06-08  Jim Meyering  <meyering@redhat.com>
6607
6608         * modules/acl (Maintainer): Add Bruno Haible.
6609
6610 2008-06-07  Bruno Haible  <bruno@clisp.org>
6611
6612         Improve support for Tru64 ACLs.
6613         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
6614         ACL on OSF/1.
6615
6616 2008-06-07  Bruno Haible  <bruno@clisp.org>
6617
6618         Add support for MacOS X ACLs.
6619         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
6620         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
6621         * lib/set-mode-acl.c (qset_acl): Likewise.
6622         * lib/copy-acl.c (qcopy_acl): Likewise.
6623
6624 2008-06-07  Bruno Haible  <bruno@clisp.org>
6625
6626         Fix memory leak introduced on 2008-05-22.
6627         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
6628         use.
6629
6630 2008-06-07  Bruno Haible  <bruno@clisp.org>
6631
6632         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
6633         to construct an empty ACL.
6634
6635 2008-06-07  Bruno Haible  <bruno@clisp.org>
6636
6637         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
6638         precisely.
6639         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
6640
6641 2008-06-07  Bruno Haible  <bruno@clisp.org>
6642
6643         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
6644         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
6645
6646 2008-06-07  Bruno Haible  <bruno@clisp.org>
6647
6648         * doc/posix-functions/_setjmp.texi: Explain the use of this function
6649         regardless of POSIX.
6650         * doc/posix-functions/_longjmp.texi: Likewise.
6651         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
6652         SystemV platform in this case.
6653
6654 2008-06-06  Eric Blake  <ebb9@byu.net>
6655
6656         Document abort() bugs.
6657         * doc/posix-functions/abort.texi (abort): Mention anomalies.
6658
6659         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
6660         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
6661         sigsetjmp.
6662         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
6663         siglongjmp, but only as a macro.
6664         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
6665         is obsolete.
6666         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
6667
6668         Tweak documentation to cover cygwin argz bugs.
6669         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
6670         argz bug fix; no code change needed since no cygwin releases
6671         occurred between the last fix and the bug being tested.
6672         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
6673         module and recently fixed cygwin bugs.
6674         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
6675         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
6676         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
6677         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
6678         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
6679         Likewise.
6680         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
6681         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
6682         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
6683         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
6684         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
6685         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
6686         Likewise.
6687
6688         Avoid gcc warning on cygwin.
6689         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
6690         !ACL_NO_TRIVIAL]: Avoid unused variable.
6691
6692 2008-06-05  Eric Blake  <ebb9@byu.net>
6693
6694         Be tolerant of UNKNOWN version in gnulib-tool test dir.
6695         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
6696         git-version-gen fails to come up with a version.
6697         Reported by Simon Josefsson.
6698
6699 2008-06-05  Jim Meyering  <meyering@redhat.com>
6700             Paul Eggert  <eggert@cs.ucla.edu>
6701
6702         utimens.c: work around a probable Linux kernel bug
6703         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
6704         appears to be a kernel bug that causes utimensat to return 280
6705         instead of 0, indicating success.
6706
6707 2008-06-04  Bruno Haible  <bruno@clisp.org>
6708
6709         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
6710         2008-06-01 commit.
6711
6712 2008-06-04  Bruno Haible  <bruno@clisp.org>
6713
6714         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
6715         * lib/file-has-acl.c (acl_access_nontrivial): New function.
6716         (file_has_acl): Use it. Save errno afterwards.
6717         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
6718
6719 2008-06-03  Bruno Haible  <bruno@clisp.org>
6720
6721         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
6722         draft code. Simplify #ifs.
6723         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
6724         Put Solaris code after POSIX-draft code. Fix comments regarding
6725         Solaris 10, HP-UX. Mention Cygwin.
6726         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
6727
6728 2008-06-03  Eric Blake  <ebb9@byu.net>
6729
6730         Provide fallback for older kernels.
6731         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
6732         Provide runtime fallback if kernel lacks support.
6733         Reported by Mike Frysinger.
6734
6735 2008-06-02  Bruno Haible  <bruno@clisp.org>
6736
6737         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
6738         it exists.
6739
6740 2008-06-02  Bruno Haible  <bruno@clisp.org>
6741
6742         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
6743         * lib/copy-acl.c (qcopy_acl): Update comment.
6744
6745 2008-06-02  Bruno Haible  <bruno@clisp.org>
6746
6747         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
6748         like ACL APIs.
6749
6750 2008-06-02  Bruno Haible  <bruno@clisp.org>
6751
6752         * tests/test-file-has-acl.sh: Use different code for Cygwin.
6753         * tests/test-set-mode-acl.sh: Likewise.
6754         * tests/test-copy-acl.sh: Likewise.
6755         * tests/test-copy-file.sh: Likewise.
6756
6757 2008-06-02  Bruno Haible  <bruno@clisp.org>
6758
6759         * tests/test-file-has-acl.sh: Remove unused code.
6760
6761 2008-06-01  Bruno Haible  <bruno@clisp.org>
6762
6763         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
6764         (copy_acl): Just a wrapper around qcopy_acl that emits the error
6765         messages.
6766         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
6767
6768 2008-06-01  Bruno Haible  <bruno@clisp.org>
6769
6770         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
6771         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
6772         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
6773         APIs.
6774         * modules/acl-tests (configure.ac): Remove tests now contained in
6775         m4/acl.m4.
6776
6777 2008-06-02  Jim Meyering  <meyering@redhat.com>
6778
6779         announce-gen: use a better key-server host name
6780         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
6781         it may be more consistently reliable.  Suggested by Werner Koch
6782         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
6783
6784 2008-06-01  Bruno Haible  <bruno@clisp.org>
6785
6786         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
6787         Reported by Voroskoi Andras <voroskoi@gmail.com>.
6788
6789 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
6790
6791         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
6792
6793 2008-06-01  Bruno Haible  <bruno@clisp.org>
6794
6795         New ACL tests.
6796         * tests/test-file-has-acl.sh: New file.
6797         * tests/test-file-has-acl.c: New file.
6798         * tests/test-set-mode-acl.sh: New file.
6799         * tests/test-set-mode-acl.c: New file.
6800         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
6801         * tests/test-copy-acl.c: New file.
6802         * modules/acl-tests: New file, based on modules/copy-file-tests.
6803         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
6804         (Depends-on): Add acl-tests.
6805         (configure.ac): Remove checks.
6806         (Makefile.am): Don't create test-sameacls program here any more.
6807
6808 2008-06-01  Bruno Haible  <bruno@clisp.org>
6809
6810         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
6811         * tests/test-sameacls.c: Include progname.h.
6812         (main): Invoke set_program_name. Portability fixes for MacOS X,
6813         Solaris, HP-UX.
6814
6815 2008-06-01  Bruno Haible  <bruno@clisp.org>
6816
6817         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
6818         function.
6819         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
6820
6821 2008-06-01  Bruno Haible  <bruno@clisp.org>
6822
6823         * modules/rpmatch (Depends-on): Add strdup.
6824
6825 2008-06-01  Bruno Haible  <bruno@clisp.org>
6826
6827         * lib/pipe.c: Include unistd-safer.h.
6828         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
6829         * modules/pipe (Depends-on): Add unistd-safer.
6830
6831 2008-05-30  Simon Josefsson  <simon@josefsson.org>
6832
6833         * modules/autobuild (configure.ac): Call AB_INIT.
6834
6835 2008-05-30  Simon Josefsson  <simon@josefsson.org>
6836
6837         * tests/test-getaddrinfo.c: Don't print debug messages by default.
6838         Suggested by Bruno Haible <bruno@clisp.org>.
6839
6840 2008-05-30  Simon Josefsson  <simon@josefsson.org>
6841
6842         * tests/test-base64.c: Cast size_t to unsigned long when invoking
6843         printf.  Use %lu instead of %d.  Reported by Bruno Haible
6844         <bruno@clisp.org>.
6845
6846 2008-05-29  Eric Blake  <ebb9@byu.net>
6847
6848         Prefer new POSIX 200x interfaces over futimesat.
6849         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
6850         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
6851         when available.
6852         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
6853
6854 2008-05-28  Bruno Haible  <bruno@clisp.org>
6855
6856         * modules/stpcpy (License): Change to LGPLv2+.
6857         Requested by David Lutterkort <dlutter@redhat.com>.
6858
6859 2008-05-27  Bruno Haible  <bruno@clisp.org>
6860
6861         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
6862         current mingw.
6863         Reported by Jose E. Marchesi <jemarch@gnu.org>.
6864
6865 2008-05-27  Bruno Haible  <bruno@clisp.org>
6866
6867         * modules/iconv_open (Link): New section, from module 'iconv'.
6868         * modules/striconv (Link): Likewise.
6869         * modules/striconveh (Link): Likewise.
6870         * modules/xstriconv (Link): Likewise.
6871         * modules/unicodeio (Link): Likewise.
6872         * modules/propername (Link): Likewise.
6873         Reported by Jim Meyering.
6874
6875 2008-05-26  Jim Meyering  <meyering@redhat.com>
6876
6877         sha256: do not artificially restrict buffer length to be < 2^32
6878         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
6879         uint32_t to size_t.
6880         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
6881         to match.
6882
6883         avoid unaligned access errors, e.g., on sparc
6884         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
6885         direct access through a possibly-unaligned uint64* pointer.
6886         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
6887         direct access through a possibly-unaligned uint32* pointer.
6888         Prompted by this patch from Tom "spot" Callaway:
6889         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
6890
6891         sha512.c: fix typo in comment
6892         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
6893
6894 2008-05-25  Bruno Haible  <bruno@clisp.org>
6895
6896         * lib/set-mode-acl.c: Renamed from lib/acl.c.
6897         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
6898         (Makefile.am): Update lib_SOURCES.
6899
6900 2008-05-25  Bruno Haible  <bruno@clisp.org>
6901
6902         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
6903
6904 2008-05-25  Jim Meyering  <meyering@redhat.com>
6905
6906         useless-if-before-free: freed expr may have white-space differences
6907         * build-aux/useless-if-before-free: Recognize cases in which the
6908         freed expression differs from the tested one in embedded white
6909         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
6910         $1 was used, so we can't make any regexp shy.  Improved tests now
6911         detect this.
6912
6913         useless-if-before-free: accept white space in the expression.
6914         * build-aux/useless-if-before-free: For now, any white space
6915         in the expression must be identical in the free argument.
6916
6917         useless-if-before-free: efficiency tweak
6918         * build-aux/useless-if-before-free: Make the expression-matching
6919         regexp "shy".
6920         Make the *outer* regexp shy, not the expr-matching one.
6921
6922         update code-in-comment to accept cast of free arg
6923         * build-aux/useless-if-before-free: Update regexp.
6924
6925 2008-05-25  Bruno Haible  <bruno@clisp.org>
6926
6927         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
6928         * modules/copy-file-tests (Files, Makefile.am): Update.
6929         * tests/test-copy-file.c (func_test_copy): Update.
6930
6931 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
6932
6933         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
6934
6935 2008-05-23  Bruno Haible  <bruno@clisp.org>
6936
6937         Improve support for ACLs on OSF/1.
6938         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
6939         Remove fallback for unknown flavors of ACLs.
6940
6941 2008-05-22  Bruno Haible  <bruno@clisp.org>
6942
6943         Add support for ACLs on OSF/1.
6944         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
6945         replacements.
6946         (acl_free_text): New macro fallback.
6947         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
6948         acl_free.
6949         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
6950         acl_free_text function. Require AC_C_INLINE.
6951
6952 2008-05-22  Bruno Haible  <bruno@clisp.org>
6953
6954         Make copy_acl work on MacOS X 10.5.
6955         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
6956         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
6957         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
6958         If MODE_INSIDE_ACL, don't assume that every system has the same text
6959         representation for ACLs as FreeBSD.
6960         * lib/copy-acl.c (copy_acl): Add support for platforms with
6961         !MODE_INSIDE_ACL.
6962         * lib/file-has-acl.c (file_has_acl): Likewise.
6963         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
6964         FreeBSD, MacOS X, or IRIX, respectively.
6965
6966 2008-05-22  Bruno Haible  <bruno@clisp.org>
6967
6968         * lib/acl.h: Don't include <sys/acl.h>.
6969         (GETACLCNT): Move fallback to lib/acl-internal.h.
6970         * lib/acl-internal.h: Include <sys/acl.h> here.
6971         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
6972
6973 2008-05-22  Bruno Haible  <bruno@clisp.org>
6974
6975         Split off copy_acl function to separate file.
6976         * lib/copy-acl.c: New file, extracted from lib/acl.c.
6977         * lib/acl.c (copy_acl): Moved function to separate file.
6978         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
6979         * modules/acl (Files): Add lib/copy-acl.c.
6980         (Makefiles.am): Augment lib_SOURCES.
6981
6982 2008-05-22  Bruno Haible  <bruno@clisp.org>
6983
6984         * modules/copy-file-tests: New file.
6985         * tests/test-copy-file.sh: New file.
6986         * tests/test-copy-file.c: New file.
6987         * tests/test-copy-file-sameacls.c: New file.
6988
6989 2008-05-22  Eric Blake  <ebb9@byu.net>
6990
6991         Avoid gcc warning.
6992         * tests/test-memcmp.c (main): Pass NULL indirectly.
6993
6994 2008-05-21  Bruno Haible  <bruno@clisp.org>
6995
6996         Add reference doc about ACLs.
6997         * doc/acl-resources.txt: New file.
6998         * doc/acl-cygwin.txt: New file.
6999
7000 2008-05-21  Bruno Haible  <bruno@clisp.org>
7001
7002         Avoid one more warning from gcc.
7003         * lib/vasnprintf.c (IF_LINT): Update comments.
7004         (VASNPRINTF): Use it also for the 'prefix' array initializer.
7005
7006 2008-05-21  Jim Meyering  <meyering@redhat.com>
7007
7008         avoid a warning from gcc
7009         * lib/vasnprintf.c (IF_LINT): Define.
7010         (scale10_round_decimal_long_double):
7011         Use it to avoid a "may be used uninitialized" warning.
7012         (scale10_round_decimal_double): Likewise.
7013
7014 2008-05-21  Simon Josefsson  <simon@josefsson.org>
7015
7016         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
7017         declared.
7018
7019 2008-05-20  Bruno Haible  <bruno@clisp.org>
7020
7021         * tests/test-memcmp.c (main): Test also the sign of the result. Test
7022         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
7023
7024 2008-05-20  Simon Josefsson  <simon@josefsson.org>
7025
7026         * modules/memcmp-tests: New file.
7027         * tests/test-memcmp.c: New file.
7028
7029 2008-05-19  Bruno Haible  <bruno@clisp.org>
7030
7031         * modules/propername (Notice, configure.ac): Put quoted "..." into
7032         --keyword option.
7033         * lib/propername.h: Update comments accordingly.
7034         Reported by Eric Blake.
7035
7036 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
7037
7038         * modules/getpass-gnu (Depends-on): Add fseeko.
7039
7040 2008-05-19  Simon Josefsson  <simon@josefsson.org>
7041
7042         * modules/base64-tests: New file.
7043
7044 2008-05-19  Bo Borgerson <gigabo@gmail.com>
7045
7046         * lib/base64.c (base64_decode_ctx): If a decode context structure
7047         was passed in use it to ignore newlines.  If a context structure
7048         was _not_ passed in, continue to treat newlines as garbage (this
7049         is the historical behavior).  Formerly base64_decode.
7050         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
7051         takes a decode context structure.
7052         * lib/base64.h (base64_decode): Macro for four-argument calls.
7053         (base64_decode_alloc): Likewise.
7054         * lib/base64.c (base64_decode_ctx): If a decode context structure
7055         was passed in use it to ignore newlines.  If a context structure
7056         was _not_ passed in, continue to treat newlines as garbage (this
7057         is the historical behavior).  Formerly base64_decode.
7058         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
7059         takes a decode context structure.
7060         * lib/base64.h (base64_decode): Macro for four-argument calls.
7061         (base64_decode_alloc): Likewise.
7062
7063 2008-05-19  Jim Meyering  <meyering@redhat.com>
7064
7065         avoid a warning from gcc
7066         * lib/trim.c (IF_LINT): Define.
7067         (trim2): Use it to avoid a "may be used uninitialized" warning.
7068
7069         Fix doc typo.
7070         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
7071
7072 2008-05-19  Bruno Haible  <bruno@clisp.org>
7073
7074         * doc/glibc-functions/getpass.texi: Document limits of other
7075         implementations.
7076
7077 2008-05-19  Simon Josefsson  <simon@josefsson.org>
7078             Bruno Haible <bruno@clisp.org>
7079
7080         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
7081
7082 2008-05-18  Bruno Haible  <bruno@clisp.org>
7083
7084         * modules/propername: New file, from GNU gettext.
7085         * lib/propername.h: New file, from GNU gettext.
7086         * lib/propername.c: New file, from GNU gettext.
7087         * MODULES.html.sh (Internationalization functions): Add propername.
7088
7089 2008-05-16  Jim Meyering  <meyering@redhat.com>
7090             Bruno Haible  <bruno@clisp.org>
7091
7092         Avoid some warnings from "gcc -Wshadow".
7093         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
7094
7095 2008-05-15  Eric Blake  <ebb9@byu.net>
7096
7097         Extend previous patch to cygwin 1.7.0.
7098         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
7099         fast implementation in cygwin >= 1.7.0.
7100         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
7101         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
7102
7103 2008-05-15  Bruno Haible  <bruno@clisp.org>
7104
7105         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
7106         implementation in glibc >= 2.9.
7107         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
7108         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
7109
7110 2008-05-15  Bruno Haible  <bruno@clisp.org>
7111
7112         * MODULES.html.sh (Internationalization functions): Remove linebreak.
7113         (Unicode string functions): Add unilbrk/*.
7114         Reported by Karl Berry.
7115
7116 2008-05-15  Eric Blake  <ebb9@byu.net>
7117
7118         Fix violation of <stdbool.h> replacement in regex.
7119         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
7120         * lib/regexec.c (re_search_internal): Likewise.
7121         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
7122
7123 2008-05-15  Jim Meyering  <meyering@redhat.com>
7124
7125         avoid distracting test output when git or cvs is not found
7126         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
7127         * tests/test-vc-list-files-git.sh: Likewise.
7128
7129 2008-05-15  Eric Blake  <ebb9@byu.net>
7130
7131         Glibc finally accepted the memmem speedup code, bugzilla #5514.
7132         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
7133         glibc version.
7134         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
7135         * doc/posix-functions/strstr.texi (strstr): Likewise.
7136         * lib/str-two-way.h (MAX): Sychronize with glibc.
7137
7138 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
7139
7140         * lib/regcomp.c (optimize_utf8): Add a note on why we test
7141         opr.ctx_type.
7142         (calc_first): Initialize constraint field.
7143         (duplicate_node_closure): Use it instead of special casing ANCHORS.
7144         Fix grammar.
7145         (duplicate_node): Merge constraint field for all node types.
7146         (calc_eclosure_iter): Look at constraint field for all node types.
7147         * lib/regex_internal.c (create_cd_newstate): Don't look at
7148         opr.ctx_type.
7149
7150 2008-05-14  Bruno Haible  <bruno@clisp.org>
7151
7152         Help GCC to do better code generation.
7153         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
7154         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
7155         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
7156         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
7157         Declare with attribute 'malloc' if supported.
7158
7159 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
7160
7161         use "echo STR|wc -c" rather than unportable "expr length STR"
7162         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
7163         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
7164
7165 2008-05-14  Jim Meyering  <meyering@redhat.com>
7166
7167         use dd ibs=$n count=1 ... rather than less-portable head -c$n
7168         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
7169         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
7170         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
7171         via Collin Lasse.
7172
7173 2008-05-14  Eric Blake  <ebb9@byu.net>
7174
7175         Avoid quadratic growth in gl_LIBSOURCES.
7176         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
7177         Suggested by Bruno Haible.
7178
7179         Test xmemdup0.
7180         * modules/xmemdup0-tests: New file.
7181         * tests/test-xmemdup0.c: Likewise.
7182
7183 2008-05-13  Eric Blake  <ebb9@byu.net>
7184
7185         Split xmemdup0 into its own module.
7186         * modules/xmemdup0: New file.
7187         * lib/xmemdup0.h: Likewise.
7188         * lib/xmemdup0.c: Likewise.
7189         * MODULES.html.sh (Memory management functions): Add xmemdup0.
7190         * lib/xalloc.h (xmemdup0): Remove.
7191         * lib/xmalloc.c (xmemdup0): Likewise.
7192
7193 2008-05-13  Eric Blake  <ebb9@byu.net>
7194             Bruno Haible  <bruno@clisp.org>
7195
7196         Reduce number of forks required during autoconf.
7197         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
7198         and gl_LIBSOURCES_DIR.
7199         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
7200         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
7201         m4_syscmd per file.
7202         <m4_foreach_w>: Move...
7203         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
7204
7205 2008-05-13  Eric Blake  <ebb9@byu.net>
7206
7207         * gnulib-tool: Fix various comment typos.
7208
7209 2008-05-12  Bruno Haible  <bruno@clisp.org>
7210
7211         Tailor the linebreaking algorithm.
7212         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
7213
7214 2008-05-12  Bruno Haible  <bruno@clisp.org>
7215
7216         Update to Unicode 5.0.0.
7217         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
7218         LBP_JV, LBP_JT. Redistribute values.
7219         (unilbrk_table): Change size.
7220         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
7221         Unicode TR#14 rev. 22.
7222         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
7223         LBP_JV, LBP_JT. Redistribute values.
7224         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
7225         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
7226         Update.
7227         * lib/unilbrk/lbrkprop1.h: Regenerated.
7228         * lib/unilbrk/lbrkprop2.h: Regenerated.
7229         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
7230         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
7231         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
7232         Likewise.
7233         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
7234         Likewise.
7235         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
7236         result.
7237         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
7238         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
7239         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
7240         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
7241         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
7242         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
7243
7244 2008-05-11  Bruno Haible  <bruno@clisp.org>
7245
7246         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
7247
7248 2008-05-11  Bruno Haible  <bruno@clisp.org>
7249
7250         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
7251         * modules/unilbrk/gen-lbrk: New file.
7252
7253 2008-05-11  Bruno Haible  <bruno@clisp.org>
7254
7255         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
7256         * m4/sha512.m4 (gl_SHA512): Likewise.
7257
7258 2008-05-11  Jim Meyering  <meyering@redhat.com>
7259
7260         New modules: crypto/sha256, crypto/sha512 (from coreutils)
7261         * modules/crypto/sha256: New file.
7262         * modules/crypto/sha512: Likewise.
7263         * lib/sha256.c: Likewise.
7264         * lib/sha256.h: Likewise.
7265         * lib/sha512.c: Likewise.
7266         * lib/sha512.h: Likewise.
7267         * lib/u64.h: Likewise.
7268         * m4/sha256.m4: Likewise.
7269         * m4/sha512.m4: Likewise.
7270         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
7271
7272 2008-05-10  Bruno Haible  <bruno@clisp.org>
7273
7274         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
7275         (Input/Output <stdio.h>): Add xprintf.
7276         (Signal handling <signal.h>): Add strsignal.
7277         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
7278         (Core language properties): Add func.
7279         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
7280         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
7281         strings.
7282         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
7283         (Input/output): New section.
7284         (File system functions): Add openat-die, stat-macros.
7285         (Networking functions): Add sockets.
7286         (Unicode string functions): Add unictype/*.
7287         (Support for building libraries and executables): Add gperf.
7288         (Support for building documentation): Add agpl-3.0.
7289         (Misc): Add nocrash.
7290
7291 2008-05-10  Bruno Haible  <bruno@clisp.org>
7292
7293         * modules/unictype/gen-ctype: New file.
7294
7295 2008-05-10  Jim Meyering  <meyering@redhat.com>
7296
7297         Make chdir-safer.c more efficient on a system with no symlinks.
7298         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
7299         also if ELOOP is zero.  Suggested by Bruno Haible.
7300
7301         Make chdir-safer.c slightly safer.
7302         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
7303         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
7304
7305         Avoid compile failure on systems without ELOOP (like mingw).
7306         * lib/chdir-safer.c (ELOOP): Define if not already defined.
7307         Reported by Bruno Haible.
7308
7309 2008-05-10  Bruno Haible  <bruno@clisp.org>
7310
7311         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
7312         (is_utf8_encoding): Use a case-insensitive comparison.
7313         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
7314         streq.
7315
7316 2008-05-10  Bruno Haible  <bruno@clisp.org>
7317
7318         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
7319         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
7320         * lib/unilbrk/ulc-common.h (iconv_string_length,
7321         iconv_string_keeping_offsets): Remove declarations.
7322         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
7323         Don't include <iconv.h>, streq.h, xsize.h.
7324         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
7325         conversion.
7326         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
7327         <iconv.h>, streq.h, xsize.h.
7328         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
7329         conversion.
7330         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
7331         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
7332         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
7333         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
7334
7335 2008-05-10  Bruno Haible  <bruno@clisp.org>
7336
7337         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
7338         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
7339
7340         * modules/unilbrk/u32-width-linebreaks-tests: New file.
7341         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
7342
7343         * modules/unilbrk/u16-width-linebreaks-tests: New file.
7344         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
7345
7346         * modules/unilbrk/u8-width-linebreaks-tests: New file.
7347         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
7348
7349         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
7350         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
7351
7352         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
7353         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
7354
7355         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
7356         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
7357
7358         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
7359         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
7360
7361 2008-05-10  Bruno Haible  <bruno@clisp.org>
7362
7363         Split up 'linebreak' module.
7364         * lib/unilbrk.h: New file, based on lib/linebreak.h.
7365         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
7366         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
7367         modifications.
7368         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
7369         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
7370         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
7371         lib/linebreak.c.
7372         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
7373         lib/linebreak.c.
7374         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
7375         lib/linebreak.c.
7376         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
7377         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
7378         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
7379         lib/linebreak.c.
7380         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
7381         lib/linebreak.c.
7382         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
7383         lib/linebreak.c.
7384         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
7385         lib/linebreak.c.
7386         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
7387         lib/linebreak.c.
7388         * modules/unilbrk/base: New file.
7389         * modules/unilbrk/tables: New file.
7390         * modules/unilbrk/u8-possible-linebreaks: New file.
7391         * modules/unilbrk/u16-possible-linebreaks: New file.
7392         * modules/unilbrk/u32-possible-linebreaks: New file.
7393         * modules/unilbrk/ulc-common: New file.
7394         * modules/unilbrk/ulc-possible-linebreaks: New file.
7395         * modules/unilbrk/u8-width-linebreaks: New file.
7396         * modules/unilbrk/u16-width-linebreaks: New file.
7397         * modules/unilbrk/u32-width-linebreaks: New file.
7398         * modules/unilbrk/ulc-width-linebreaks: New file.
7399         * lib/linebreak.h: Remove file.
7400         * lib/linebreak.c: Remove file.
7401         * m4/linebreak.m4: Remove file.
7402         * modules/linebreak: Remove file.
7403         * NEWS: Mention the changes.
7404
7405 2008-05-09  Eric Blake  <ebb9@byu.net>
7406
7407         Add xmemdup0.
7408         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
7409         implementation.
7410         * lib/xmalloc.c (xmemdup0): New C implementation.
7411
7412 2008-05-08  Bruno Haible  <bruno@clisp.org>
7413
7414         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
7415
7416 2008-05-07  Eric Blake  <ebb9@byu.net>
7417
7418         Support cross-compilation of <wctype.h>.
7419         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
7420         AC_CACHE_CHECK.
7421
7422 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
7423
7424         * build-aux/vc-list-files: Add support for bzr.
7425
7426 2008-05-03  Jim Meyering  <meyering@redhat.com>
7427
7428         avoid failed assertion with tight malloc
7429         * tests/test-getndelim2.c: Correct an off-by-one assertion.
7430
7431 2008-05-03  Simon Josefsson  <simon@josefsson.org>
7432
7433         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
7434         are needed from arpa/inet.h.
7435         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
7436         Reported by Bruno Haible.
7437
7438 2008-05-02  Jim Meyering  <meyering@redhat.com>
7439
7440         avoid compilation error on FreeBSD 6
7441         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
7442
7443 2008-05-01  Jim Meyering  <meyering@redhat.com>
7444
7445         useless-if-before-free: correct --help's exit status description
7446         * build-aux/useless-if-before-free (usage): Like grep, exit 0
7447         for one or more matches, etc.  Reported by Bruno Haible.
7448
7449         vc-list-files: make the stand-alone gnulib test work
7450         * modules/vc-list-files-tests (configure.ac):
7451         Define and AC_SUBST abs_aux_dir.
7452         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
7453         $(abs_top_srcdir) to each script and having each of them
7454         duplicate the work of setting PATH, set PATH here, using
7455         the new variable, abs_aux_dir instead.
7456         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
7457         * tests/test-vc-list-files-git.sh: Likewise.
7458         Reported by Bruno Haible.
7459
7460 2008-05-01  Bruno Haible  <bruno@clisp.org>
7461
7462         * lib/getndelim2.c (getndelim2): Fix newsize computation during
7463         reallocation. Rename 'done' to 'found_delimiter'.
7464
7465 2008-05-01  Jim Meyering  <meyering@redhat.com>
7466
7467         vc-list-files: accommodate /bin/sh like the one from Solaris 10
7468         * build-aux/vc-list-files: Use `...`, not $(...).
7469
7470 2008-04-30  Jim Meyering  <meyering@redhat.com>
7471
7472         add tests for vc-list-files
7473         * modules/vc-list-files-tests: New module.
7474         * tests/test-vc-list-files-cvs.sh: New file.
7475         * tests/test-vc-list-files-git.sh: New file.
7476
7477         avoid a warning from gcc
7478         * lib/getndelim2.c (IF_LINT): Define.
7479         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
7480
7481         vc-list-files: work properly with build-aux/cvsu, too
7482         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
7483         to all cvs-based clauses.
7484
7485         vc-list-files: work properly in the CVS+awk case, too
7486         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
7487
7488         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
7489         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
7490         take more than one file argument, so .  Add quotes, just in case $dir
7491         ever contains a shell meta-character.  Prompted by Soren Hansen in
7492         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
7493
7494 2008-04-29  Eric Blake  <ebb9@byu.net>
7495
7496         Optimize getndelim2 to use block operations when possible.
7497         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
7498         freadseek, and memchr2.
7499         * lib/getndelim2.c (getndelim2): Use them for block reads.
7500
7501 2008-04-29  Bruno Haible  <bruno@clisp.org>
7502
7503         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
7504         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
7505         * modules/inet_ntop (Depends-on): Add extensions.
7506         * modules/inet_pton (Depends-on): Likewise.
7507         Reported by Simon Josefsson.
7508
7509 2008-04-29  Jim Meyering  <meyering@redhat.com>
7510
7511         When the is more than one match in a block, match all of them.
7512         * build-aux/useless-if-before-free: Iterate through each block
7513         until there are no more matches.
7514
7515         Fix broken useless-if-before-free script.
7516         * build-aux/useless-if-before-free: Fix typo: missing "?" after
7517         the expression to match cast of argument to free-like function.
7518
7519 2008-04-29  Eric Blake  <ebb9@byu.net>
7520
7521         Use new header.
7522         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
7523
7524 2008-04-29  Jim Meyering  <meyering@redhat.com>
7525
7526         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
7527         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
7528         by gnulib to exist and to declare e.g., inet_ntop.
7529         Don't include "inet_ntop.h", now removed.
7530
7531         * m4/arpa_inet_h.m4: Remove trailing blanks.
7532
7533 2008-04-29  Eric Blake  <ebb9@byu.net>
7534
7535         Silence valgrind on safe reads beyond potential array bounds.
7536         * lib/rawmemchr.valgrind: New file.
7537         * lib/strchrnul.valgrind: Likewise.
7538         * modules/rawmemchr (Files): Distribute new file.
7539         * modules/strchrnul (Files): Likewise.
7540         Suggested by Bruno Haible.
7541
7542 2008-04-29  Bruno Haible  <bruno@clisp.org>
7543
7544         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
7545         (inet_ntop, inet_pton): Change portability warning's wording.
7546         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
7547         Invoke gl_CHECK_NEXT_HEADERS.
7548         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
7549         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
7550         set ARPA_INET_H.
7551         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
7552         * modules/arpa_inet (Description): No longer only for systems that
7553         lack it.
7554         (Depends-on): Add include_next.
7555         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
7556         HAVE_ARPA_INET_H.
7557
7558 2008-04-29  Jim Meyering  <meyering@redhat.com>
7559
7560         * modules/mkdir (License): Re-license as LGPLv2+.
7561
7562 2008-04-29  Bruno Haible  <bruno@clisp.org>
7563
7564         * modules/rawmemchr (Maintainer): Set to Eric.
7565         * modules/strchrnul (Maintainer): Likewise.
7566
7567 2008-04-29  Simon Josefsson  <simon@josefsson.org>
7568
7569         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
7570         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
7571
7572         * modules/arpa_inet (arpa/inet.h): Use them.
7573
7574 2008-04-28  Eric Blake  <ebb9@byu.net>
7575
7576         Test getndelim2.
7577         * modules/getndelim2-tests: New file.
7578         * tests/test-getndelim2.c: Likewise.
7579         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
7580         stream.
7581         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
7582
7583         * MODULES.html.sh: Document new module.
7584
7585 2008-04-20  Bruno Haible  <bruno@clisp.org>
7586
7587         * lib/c-stack.c (die): Use raise.
7588         * modules/c-stack (Depends-on): Add raise.
7589
7590 2008-04-28  Bruno Haible  <bruno@clisp.org>
7591
7592         Expect rpmatch to be declared.
7593         * lib/yesno.c (rpmatch): Remove declaration.
7594
7595         Declare rpmatch.
7596         * lib/stdlib.in.h (rpmatch): New declaration.
7597         * lib/rpmatch.c: Include <stdlib.h> first.
7598         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
7599         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
7600         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
7601         HAVE_RPMATCH.
7602         * modules/rpmatch (Depends-on): Add stdlib, extensions.
7603         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7604         (Include): Set to <stdlib.h>.
7605         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
7606         HAVE_RPMATCH.
7607         * NEWS: Document the change.
7608
7609 2008-04-28  Bruno Haible  <bruno@clisp.org>
7610
7611         Change rpmatch to use nl_langinfo when appropriate.
7612         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
7613         (N_): New macro.
7614         (localized_pattern): New function/macro.
7615         (try): Remove match, nomatch arguments. Copy the pattern into safe
7616         memory before caching it.
7617         (rpmatch): Use localized_pattern. Add translator comments.
7618         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
7619         Suggested by Eric Blake.
7620         * modules/rpmatch (Depends-on): Add stdbool.
7621
7622 2008-04-28  Eric Blake  <ebb9@byu.net>
7623
7624         Add rawmemchr module, matching glibc.
7625         * modules/string (Makefile.am): New indicator.
7626         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
7627         * lib/string.in.h (rawmemchr): Declare when appropriate.
7628         * modules/rawmemchr: New file.
7629         * m4/rawmemchr.m4: Likewise.
7630         * lib/rawmemchr.c: Likewise.
7631         * modules/rawmemchr-tests: Likewise.
7632         * tests/test-rawmemchr.c: Likewise.
7633         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
7634         module.
7635         * modules/strchrnul (Depends-on): Add rawmemchr.
7636         * lib/strchrnul.c (strchrnul): Optimize a corner case.
7637
7638         Whitespace cleanup.
7639         * tests/test-strchrnul.c: Reindent.
7640         * lib/strchrnul.c: Likewise.
7641
7642         Optimize and test strchrnul.
7643         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
7644         * modules/strchrnul-tests: New file.
7645         * tests/test-strchrnul.c: Likewise.
7646
7647         Remove intprops dependency.
7648         * modules/memchr (Depends-on): Remove intprops.
7649         * modules/memrchr (Depends-on): Likewise.
7650         * modules/memchr2 (Depends-on): Likewise.
7651         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
7652         * lib/memrchr.c (__memrchr): Likewise.
7653         * lib/memrchr2.c (memchr2): Likewise.
7654         Reported by Simon Josefsson.
7655
7656 2008-04-28  Simon Josefsson  <simon@josefsson.org>
7657
7658         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
7659         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7660
7661 2008-04-28  Simon Josefsson  <simon@josefsson.org>
7662
7663         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
7664
7665         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
7666
7667         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
7668
7669         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
7670         declarations.
7671         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
7672
7673         * m4/inet_pton.m4: Don't check for header files.
7674
7675         * m4/inet_ntop.m4: Don't check for header files.
7676
7677 2008-04-28  Simon Josefsson  <simon@josefsson.org>
7678
7679         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
7680         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
7681         trigger for cygwin).
7682         Reported by Bruno Haible  <bruno@clisp.org>.
7683
7684 2008-04-28  Bruno Haible  <bruno@clisp.org>
7685
7686         * doc/posix-functions/strdup.texi: Mention mingw problem.
7687
7688 2008-04-27  Bruno Haible  <bruno@clisp.org>
7689
7690         * modules/stat-time-tests (Depends-on): Add sleep.
7691         * tests/test-stat-time.c (force_unlink): New function.
7692         (cleanup): Use it.
7693         (test_mtime): Remove the ctime related tests.
7694         (test_ctime): New function, containing the ctime related tests.
7695         (main): Call test_ctime, except on native Windows platforms.
7696
7697 2008-04-27  Bruno Haible  <bruno@clisp.org>
7698
7699         * lib/rpmatch.c (rpmatch): Add some comments.
7700         Reported by James Youngman <jay@gnu.org>.
7701
7702 2008-04-27  Bruno Haible  <bruno@clisp.org>
7703
7704         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
7705         quiet NaNs.
7706
7707 2008-04-27  Bruno Haible  <bruno@clisp.org>
7708
7709         Make test-yesno.sh work on mingw.
7710         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
7711         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
7712         (main): Set stdin to binary mode.
7713         * modules/yesno-tests (Depends-on): Add binary-io.
7714
7715 2008-04-27  Bruno Haible  <bruno@clisp.org>
7716
7717         Fix 'isfinite' on x86, x86_64, ia64 platforms.
7718         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
7719         argument that lie outside the IEEE 854 domain.
7720         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
7721         (gl_ISFINITE): Use it.
7722         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
7723
7724 2008-04-27  Bruno Haible  <bruno@clisp.org>
7725
7726         Allow local renaming in config.h.
7727         * lib/memrchr.c (memrchr): Don't undefine outside libc.
7728
7729 2008-04-27  Bruno Haible  <bruno@clisp.org>
7730
7731         * lib/memchr.c (__memchr): Change type of 'i'.
7732         * lib/memchr2.c (memchr2): Likewise.
7733
7734 2008-04-26  Eric Blake  <ebb9@byu.net>
7735         and Bruno Haible  <bruno@clisp.org>
7736
7737         Optimize and test memrchr.
7738         * modules/memrchr (Depends-on): Add intprops.
7739         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
7740         * modules/memrchr-tests: New file.
7741         * tests/test-memrchr.c: New file.
7742
7743 2008-04-26  Bruno Haible  <bruno@clisp.org>
7744
7745         Add tentative support for DragonFly BSD.
7746         * lib/stdio-impl.h: Add macros for DragonFly BSD.
7747         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
7748         fp.
7749         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
7750         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
7751         * lib/fpurge.c (fpurge): Likewise.
7752         * lib/freadable.c (freaadable): Likewise.
7753         * lib/freadahead.c (freadahead): Likewise.
7754         * lib/freading.c (freading): Likewise.
7755         * lib/freadptr.c (freadptr): Likewise.
7756         * lib/freadseek.c (freadptrinc): Likewise.
7757         * lib/fseeko.c (fseeko): Likewise.
7758         * lib/fseterr.c (fseterr): Likewise.
7759         * lib/fwritable.c (fwritable): Likewise.
7760         * lib/fwriting.c (fwriting): Likewise.
7761
7762 2008-04-26  Bruno Haible  <bruno@clisp.org>
7763
7764         * lib/stdio-impl.h: New file.
7765         * lib/fbufmode.c: Include stdio-impl.h.
7766         (fbufmode): Use fp_, remove redundant #defines.
7767         * lib/fflush.c: Include stdio-impl.h.
7768         (clear_ungetc_buffer): Remove redundant #defines.
7769         * lib/fpurge.c: Include stdio-impl.h.
7770         (fpurge): Remove redundant #defines.
7771         * lib/freadable.c: Include stdio-impl.h.
7772         (freadable): Remove redundant #defines.
7773         * lib/freadahead.c: Include stdio-impl.h.
7774         (freadahead): Remove redundant #defines.
7775         * lib/freading.c: Include stdio-impl.h.
7776         (freading): Remove redundant #defines.
7777         * lib/freadptr.c: Include stdio-impl.h.
7778         (freadptr): Remove redundant #defines.
7779         * lib/freadseek.c: Include stdio-impl.h.
7780         (freadptrinc): Remove redundant #defines.
7781         * lib/fseeko.c: Include stdio-impl.h.
7782         (rpl_fseeko): Remove redundant #defines.
7783         * lib/fseterr.c: Include stdio-impl.h.
7784         (fseterr): Remove redundant #defines.
7785         * lib/fwritable.c: Include stdio-impl.h.
7786         (fwritable: Remove redundant #defines.
7787         * lib/fwriting.c: Include stdio-impl.h.
7788         (fwriting): Remove redundant #defines.
7789         * modules/fbufmode (Files): Add lib/stdio-impl.h.
7790         * modules/fflush (Files): Likewise.
7791         * modules/fpurge (Files): Likewise.
7792         * modules/freadable (Files): Likewise.
7793         * modules/freadahead (Files): Likewise.
7794         * modules/freading (Files): Likewise.
7795         * modules/freadptr (Files): Likewise.
7796         * modules/freadseek (Files): Likewise.
7797         * modules/fseeko (Files): Likewise.
7798         * modules/fseterr (Files): Likewise.
7799         * modules/fwritable (Files): Likewise.
7800         * modules/fwriting (Files): Likewise.
7801
7802 2008-04-26  Bruno Haible  <bruno@clisp.org>
7803
7804         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
7805         restore_seek_optimization, update_fpos_cache): New functions, extracted
7806         from rpl_fflush.
7807         (rpl_fflush): Use them.
7808         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
7809         (gl_REPLACE_FFLUSH): Use it.
7810
7811 2008-04-26  Bruno Haible  <bruno@clisp.org>
7812
7813         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
7814         on Solaris.
7815         * tests/test-xstrtoimax.sh: Likewise.
7816         * tests/test-xstrtoumax.sh: Likewise.
7817         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7818
7819 2008-04-26  Bruno Haible  <bruno@clisp.org>
7820
7821         * modules/memchr-tests: New file.
7822         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
7823
7824 2008-04-26  Eric Blake  <ebb9@byu.net>
7825             Bruno Haible  <bruno@clisp.org>
7826
7827         * lib/memchr.c: Include intprops.h.
7828         (__memchr): Optimize parallel detection of matching bytes. Rename local
7829         variables. Add explanatory comments.
7830
7831 2008-04-26  Bruno Haible  <bruno@clisp.org>
7832
7833         Fix module 'memchr', broken since 2000-10-28.
7834         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
7835
7836 2008-04-26  Bruno Haible  <bruno@clisp.org>
7837
7838         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
7839         comments.
7840
7841 2008-04-25  Eric Blake  <ebb9@byu.net>
7842
7843         Use native fstatat on cygwin 1.7.0.
7844         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
7845         first.
7846
7847 2008-04-23  Eric Blake  <ebb9@byu.net>
7848
7849         Improve memchr2 performance.
7850         * lib/memchr2.c (memchr2): Further optimize parallel detection of
7851         NUL bytes.
7852         * modules/memchr2 (Depends-on): Use intprops.h.
7853
7854 2008-04-23  Simon Josefsson  <simon@josefsson.org>
7855
7856         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
7857         an inline function instead of a CPP macro.  Patch by Ben Pfaff
7858         <blp@cs.stanford.edu>.
7859
7860 2008-04-23  Simon Josefsson  <simon@josefsson.org>
7861
7862         * lib/arpa_inet.in.h: New file.
7863
7864         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
7865         (Makefile.am): Sed in substitute header file.
7866
7867         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
7868         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
7869
7870         * modules/inet_ntop (configure.ac): Use
7871         gl_ARPA_INET_MODULE_INDICATOR.
7872
7873         * modules/inet_pton (configure.ac): Use
7874         gl_ARPA_INET_MODULE_INDICATOR.
7875
7876 2008-04-22  Jim Meyering  <meyering@redhat.com>
7877
7878         * modules/verify (License): Re-license as LGPLv2+.
7879
7880 2008-04-22  Simon Josefsson  <simon@josefsson.org>
7881
7882         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
7883         parameter to void* as per POSIX standard (MinGW uses char*).
7884
7885 2008-04-21  Bruno Haible  <bruno@clisp.org>
7886
7887         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
7888         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
7889         Define to replacements if REPLACE_ISWCNTRL is 1.
7890         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
7891         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
7892         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
7893         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
7894         what it fixes.
7895         * doc/posix-functions/iswalpha.texi: Likewise.
7896         * doc/posix-functions/iswblank.texi: Likewise.
7897         * doc/posix-functions/iswcntrl.texi: Likewise.
7898         * doc/posix-functions/iswdigit.texi: Likewise.
7899         * doc/posix-functions/iswgraph.texi: Likewise.
7900         * doc/posix-functions/iswlower.texi: Likewise.
7901         * doc/posix-functions/iswprint.texi: Likewise.
7902         * doc/posix-functions/iswpunct.texi: Likewise.
7903         * doc/posix-functions/iswspace.texi: Likewise.
7904         * doc/posix-functions/iswupper.texi: Likewise.
7905         * doc/posix-functions/iswxdigit.texi: Likewise.
7906         Reported by Alain Guibert.
7907
7908 2008-04-21  Bruno Haible  <bruno@clisp.org>
7909
7910         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
7911         Patch by Alain Guibert.
7912
7913 2008-04-21  Bruno Haible  <bruno@clisp.org>
7914
7915         Fix test failures on mingw.
7916         * tests/test-xstrtol.c (print_no_progname): New function.
7917         (main): Install it in error_print_progname hook.
7918         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
7919         * tests/test-xstrtoimax.sh: Likewise.
7920         * tests/test-xstrtoumax.sh: Likewise.
7921
7922 2008-04-21  Bruno Haible  <bruno@clisp.org>
7923
7924         Fix test failure on mingw.
7925         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
7926
7927 2008-04-21  Bruno Haible  <bruno@clisp.org>
7928
7929         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
7930         Actually assign a value.
7931
7932 2008-04-20  Bruno Haible  <bruno@clisp.org>
7933
7934         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
7935         take 2.
7936         * lib/canonicalize.c (canonicalize_file_name): Elide if the
7937         'canonicalize-lgpl' module is also used.
7938         * lib/canonicalize-lgpl.c: Undo last change.
7939         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
7940
7941 2008-04-20  Bruno Haible  <bruno@clisp.org>
7942
7943         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
7944         config.h. Provide _mkdir based fallback for mingw.
7945         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
7946         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
7947         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
7948         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
7949         rather than defining mkdir in config.h.
7950         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
7951         (gl_SYS_STAT_H_DEFAULTS): New macro.
7952         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
7953         HAVE_IO_H any more.
7954         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
7955         HAVE_DECL_MKDIR and HAVE_IO_H.
7956
7957 2008-04-20  Bruno Haible  <bruno@clisp.org>
7958
7959         * lib/isapipe.c: Port to native Windows platforms.
7960
7961 2008-04-20  Bruno Haible  <bruno@clisp.org>
7962
7963         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
7964
7965 2008-04-21  Eric Blake  <ebb9@byu.net>
7966
7967         Work around preprocessors that don't handle UINTMAX_MAX.
7968         * lib/memchr2.c (memchr2): Avoid embedded #if.
7969         Reported by Alain Guibert, fix suggested by Bruno Haible.
7970
7971 2008-04-21  Simon Josefsson  <simon@josefsson.org>
7972
7973         * doc/posix-functions/strftime.texi (strftime): Explain better
7974         Windows incompatibility.  Suggested by Micah Cowan
7975         <micah@cowan.name>.
7976
7977 2008-04-20  Bruno Haible  <bruno@clisp.org>
7978
7979         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
7980         unistr/u8-mblen.
7981
7982 2008-04-20  Bruno Haible  <bruno@clisp.org>
7983
7984         Fix test failure on platforms with non-GNU iconv.
7985         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
7986         (U_TO_U8): Use it, rather than u16_to_u8.
7987         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
7988         units at the end of the input string.
7989         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
7990
7991 2008-04-20  Bruno Haible  <bruno@clisp.org>
7992
7993         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
7994         when the resulting length is 0.
7995         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
7996
7997 2008-04-20  Bruno Haible  <bruno@clisp.org>
7998
7999         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
8000         works.
8001         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
8002
8003 2008-04-20  Bruno Haible  <bruno@clisp.org>
8004
8005         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
8006         * modules/tsearch-tests (configure.ac): Test for initstate function.
8007
8008 2008-04-20  Bruno Haible  <bruno@clisp.org>
8009
8010         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
8011         for nlink_t if missing.
8012         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
8013
8014 2008-04-19  Bruno Haible  <bruno@clisp.org>
8015
8016         Work around snprintf bug on Linux libc5.
8017         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
8018         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
8019         gl_SNPRINTF_SIZE1.
8020         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8021         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
8022         that test failed.
8023         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
8024         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
8025         * modules/snprintf (Files): Add m4/printf.m4.
8026         * modules/vsnprintf (Files): Likewise.
8027         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
8028         * doc/posix-functions/vsnprintf.texi: Likewise.
8029
8030 2008-04-19  Bruno Haible  <bruno@clisp.org>
8031
8032         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
8033         from 0.0058 to less than 10^-7.
8034
8035 2008-04-19  Bruno Haible  <bruno@clisp.org>
8036
8037         Fix rounding when a precision is given.
8038         * lib/vasnprintf.c (is_borderline): New function.
8039         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
8040         9...9x.
8041         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
8042         %e, %g.
8043         * tests/test-vasprintf-posix.c (test_function): Likewise.
8044         * tests/test-snprintf-posix.h (test_function): Likewise.
8045         * tests/test-sprintf-posix.h (test_function): Likewise.
8046         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
8047         * tests/test-printf-posix.h (test_function): Likewise.
8048         * tests/test-printf-posix.output: Update.
8049         Reported by John Darrington <john@darrington.wattle.id.au> via
8050         Ben Pfaff <blp@cs.stanford.edu>.
8051
8052 2008-04-18  Simon Josefsson  <simon@josefsson.org>
8053
8054         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
8055         Suggested by Bruno Haible <bruno@clisp.org>.
8056
8057 2008-04-17  Bruno Haible  <bruno@clisp.org>
8058
8059         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
8060         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
8061         implementation.
8062         Patch by Bruce Merry <bmerry@gmail.com>.
8063
8064 2008-04-17  Simon Josefsson  <simon@josefsson.org>
8065
8066         * doc/posix-functions/strftime.texi (strftime): Mention that %e
8067         doesn't work under Windows.
8068
8069 2008-04-16  Bruno Haible  <bruno@clisp.org>
8070
8071         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
8072         New macros.
8073         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
8074         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
8075         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
8076         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
8077         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
8078         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
8079         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
8080         macros.
8081         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
8082         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
8083         Northern Sotho, Uighur.
8084
8085 2008-04-16  Bruno Haible  <bruno@clisp.org>
8086
8087         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
8088         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
8089         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
8090         Reported by Daniel Bergström <daniel@octocode.com>.
8091
8092 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
8093             Bruno Haible  <bruno@clisp.org>
8094
8095         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
8096         function.
8097         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
8098         New functions, mostly extracted from gl_locale_name_default.
8099         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
8100
8101 2008-04-16  Eric Blake  <ebb9@byu.net>
8102
8103         Adjust strtod detection to catch glibc 2.7 bug.
8104         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
8105         Reported by John Gatewood Ham.
8106
8107 2008-04-16  Bruno Haible  <bruno@clisp.org>
8108
8109         Add tentative support for Linux libc5.
8110         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
8111         * lib/fpurge.c (fpurge): Likewise.
8112         * lib/freadable.c (freadable): Likewise.
8113         * lib/freadahead.c (freadahead): Likewise.
8114         * lib/freading.c (freading): Likewise.
8115         * lib/freadptr.c (freadptr): Likewise.
8116         * lib/freadseek.c (freadptrinc): Likewise.
8117         * lib/fseeko.c (rpl_fseeko): Likewise.
8118         * lib/fseterr.c (fseterr): Likewise.
8119         * lib/fwritable.c (fwritable): Likewise.
8120         * lib/fwriting.c (fwriting): Likewise.
8121         Reported by Alain Guibert <alguibert+bts@free.fr>.
8122
8123 2008-04-15  Bruno Haible  <bruno@clisp.org>
8124
8125         * modules/mathl (configure.ac): Define module indicator.
8126
8127 2008-04-15  Bruno Haible  <bruno@clisp.org>
8128
8129         * lib/logl.c (logl): Remove unused variables.
8130
8131 2008-04-15  Bruno Haible  <bruno@clisp.org>
8132
8133         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
8134         fails.
8135
8136 2008-04-15  Bruno Haible  <bruno@clisp.org>
8137
8138         * lib/trim.c (trim2): Fix argument of isspace() macro.
8139
8140 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
8141
8142         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
8143         to 0.
8144         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
8145
8146 2008-04-14  Bruno Haible  <bruno@clisp.org>
8147
8148         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
8149         AC_LANG_PROGRAM argument.
8150         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
8151         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
8152         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
8153         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
8154         * m4/math_h.m4 (gl_MATH_H): Likewise.
8155         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
8156         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
8157         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
8158         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
8159         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8160         * m4/regex.m4 (gl_REGEX): Likewise.
8161         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
8162         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
8163         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
8164         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
8165         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
8166         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
8167         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8168         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
8169
8170 2008-04-14  Jim Meyering  <meyering@redhat.com>
8171
8172         test-strtod: fix typos: s/abs/fabs/
8173         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
8174
8175 2008-04-13  Bruno Haible  <bruno@clisp.org>
8176
8177         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
8178         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
8179         module is also used and while not building the reloc-wrapper.
8180
8181 2008-04-13  Bruno Haible  <bruno@clisp.org>
8182
8183         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
8184
8185 2008-04-13  Bruno Haible  <bruno@clisp.org>
8186
8187         Fix AIX compilation failure introduced on 2008-04-02.
8188         * tests/test-frexp.c (exp): Undefine before redefining.
8189         * tests/test-frexpl.c (exp): Likewise.
8190
8191 2008-04-13  Bruno Haible  <bruno@clisp.org>
8192
8193         Work around a HP-UX stdio bug.
8194         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
8195         * tests/test-ftello.c (main): Likewise.
8196         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
8197         * doc/posix-functions/ftello.texi: Likewise.
8198
8199 2008-04-13  Bruno Haible  <bruno@clisp.org>
8200
8201         Make test-signbit pass on HP-UX/hppa.
8202         * tests/test-signbit.c (minus_zerol): New variable.
8203         (test_signbitl): Use it.
8204
8205 2008-04-13  Bruno Haible  <bruno@clisp.org>
8206
8207         Make truncl work on OSF/1 4.0.
8208         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
8209         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
8210         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
8211         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
8212         HAVE_DECL_TRUNCL.
8213         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
8214         HAVE_DECL_TRUNCL.
8215         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
8216
8217 2008-04-13  Bruno Haible  <bruno@clisp.org>
8218
8219         * lib/unictype.h: Remove trailing comma from enumeration definitions.
8220
8221 2008-04-13  Bruno Haible  <bruno@clisp.org>
8222
8223         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
8224         expression, so as to avoid HP-UX 11 cc compiler bug.
8225
8226 2008-04-13  Bruno Haible  <bruno@clisp.org>
8227
8228         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
8229
8230 2008-04-13  Bruno Haible  <bruno@clisp.org>
8231
8232         * lib/git-merge-changelog.c: Remove empty declaration outside of
8233         functions.
8234
8235 2008-04-13  Bruno Haible  <bruno@clisp.org>
8236
8237         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
8238
8239 2008-04-13  Bruno Haible  <bruno@clisp.org>
8240
8241         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
8242         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
8243         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
8244         also if it exists but lacks definitions of the SHUT_* macros.
8245         * modules/sys_socket (Description): Update.
8246         Reported by Elbert Pol <e.pol@chello.nl>.
8247
8248 2008-04-13  Bruno Haible  <bruno@clisp.org>
8249
8250         * lib/localcharset.c (OS2): Don't redefine if already defined.
8251         Reported by Elbert Pol <e.pol@chello.nl>.
8252
8253 2008-04-13  Bruno Haible  <bruno@clisp.org>
8254
8255         * lib/binary-io.h [__EMX__]: Include <io.h>.
8256         Reported by Elbert Pol <e.pol@chello.nl>.
8257
8258 2008-04-12  Bruno Haible  <bruno@clisp.org>
8259
8260         * lib/fpucw.h: Enable the definitions also for x86_64.
8261         Needed for NetBSD/x86_64.
8262         Reported by Thomas Klausner <tk@giga.or.at>.
8263
8264 2008-04-12  Bruno Haible  <bruno@clisp.org>
8265
8266         * tests/test-strtod.c: Include isnand.h.
8267         (main): Use isnand instead of isnan.
8268         Reported by Jim Meyering.
8269
8270 2008-04-12  Bruno Haible  <bruno@clisp.org>
8271
8272         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
8273         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
8274
8275 2008-04-12  Jim Meyering  <meyering@redhat.com>
8276
8277         * m4/math_h.m4 (gl_MATH_H): Fix typos.
8278
8279 2008-04-12  Bruno Haible  <bruno@clisp.org>
8280
8281         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
8282         Reported by Elbert Pol <e.pol@chello.nl>.
8283
8284 2008-04-12  Eric Blake  <ebb9@byu.net>
8285
8286         Work around Solaris 10 math.h bug.
8287         * m4/math_h.m4 (gl_MATH_H): Check for bug.
8288         (gl_MATH_H_DEFAULTS): Set up default.
8289         * modules/math (Makefile.am): Replace new indicators.
8290         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
8291         * tests/test-math.c (main): Test this.
8292         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
8293         * doc/posix-headers/math.texi (math.h): Mention bug.
8294         Reported by Nelson H. F. Beebe and Jim Meyering.
8295
8296 2008-04-11  Bruno Haible  <bruno@clisp.org>
8297
8298         Adapt to future versions of Apple GCC.
8299         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
8300         Reported by Peter O'Gorman <peter@pogma.com>.
8301
8302 2008-04-11  Bruno Haible  <bruno@clisp.org>
8303
8304         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
8305
8306 2008-04-11  Bruno Haible  <bruno@clisp.org>
8307
8308         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
8309
8310         * modules/getaddrinfo-tests (Makefile.am): Define
8311         test_getaddrinfo_LDADD.
8312
8313 2008-04-11  Bruno Haible  <bruno@clisp.org>
8314
8315         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
8316         (init): Fix syntax error.
8317         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
8318         is declared.
8319
8320 2008-04-11  Bruno Haible  <bruno@clisp.org>
8321
8322         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
8323         * modules/glob (Depends-on): Add stdbool.
8324
8325 2008-04-11  Bruno Haible  <bruno@clisp.org>
8326
8327         * lib/trim.c: Include <string.h>.
8328
8329 2008-04-11  Eric Blake  <ebb9@byu.net>
8330
8331         Avoid compile failure on OS/2.
8332         * lib/regex_internal.h (internal_function): Disable optimization
8333         on OS/2 (__EMX__), where it caused compiler error.
8334         Reported by Elbert Pol.
8335
8336 2008-04-11  Bruno Haible  <bruno@clisp.org>
8337
8338         Flush the standard error stream before aborting. Needed on mingw.
8339         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
8340         * tests/test-array_list.c (ASSERT): Likewise.
8341         * tests/test-array_oset.c (ASSERT): Likewise.
8342         * tests/test-avltree_list.c (ASSERT): Likewise.
8343         * tests/test-avltree_oset.c (ASSERT): Likewise.
8344         * tests/test-avltreehash_list.c (ASSERT): Likewise.
8345         * tests/test-binary-io.c (ASSERT): Likewise.
8346         * tests/test-byteswap.c (ASSERT): Likewise.
8347         * tests/test-c-ctype.c (ASSERT): Likewise.
8348         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
8349         * tests/test-c-strcasestr.c (ASSERT): Likewise.
8350         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
8351         * tests/test-c-strstr.c (ASSERT): Likewise.
8352         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
8353         * tests/test-canonicalize.c (ASSERT): Likewise.
8354         * tests/test-carray_list.c (ASSERT): Likewise.
8355         * tests/test-ceilf1.c (ASSERT): Likewise.
8356         * tests/test-ceilf2.c (ASSERT): Likewise.
8357         * tests/test-ceill.c (ASSERT): Likewise.
8358         * tests/test-count-one-bits.c (ASSERT): Likewise.
8359         * tests/test-fbufmode.c (ASSERT): Likewise.
8360         * tests/test-fflush2.c (ASSERT): Likewise.
8361         * tests/test-floorf1.c (ASSERT): Likewise.
8362         * tests/test-floorf2.c (ASSERT): Likewise.
8363         * tests/test-floorl.c (ASSERT): Likewise.
8364         * tests/test-fopen.c (ASSERT): Likewise.
8365         * tests/test-fpending.c (ASSERT): Likewise.
8366         * tests/test-fprintf-posix.c (ASSERT): Likewise.
8367         * tests/test-fpurge.c (ASSERT): Likewise.
8368         * tests/test-freadable.c (ASSERT): Likewise.
8369         * tests/test-freadahead.c (ASSERT): Likewise.
8370         * tests/test-freading.c (ASSERT): Likewise.
8371         * tests/test-freadptr.c (ASSERT): Likewise.
8372         * tests/test-freadptr2.c (ASSERT): Likewise.
8373         * tests/test-freadseek.c (ASSERT): Likewise.
8374         * tests/test-freopen.c (ASSERT): Likewise.
8375         * tests/test-frexp.c (ASSERT): Likewise.
8376         * tests/test-frexpl.c (ASSERT): Likewise.
8377         * tests/test-fseek.c (ASSERT): Likewise.
8378         * tests/test-fseeko.c (ASSERT): Likewise.
8379         * tests/test-fstrcmp.c (ASSERT): Likewise.
8380         * tests/test-ftell.c (ASSERT): Likewise.
8381         * tests/test-ftello.c (ASSERT): Likewise.
8382         * tests/test-func.c (ASSERT): Likewise.
8383         * tests/test-fwritable.c (ASSERT): Likewise.
8384         * tests/test-fwriting.c (ASSERT): Likewise.
8385         * tests/test-getdelim.c (ASSERT): Likewise.
8386         * tests/test-getline.c (ASSERT): Likewise.
8387         * tests/test-i-ring.c (ASSERT): Likewise.
8388         * tests/test-iconv-utf.c (ASSERT): Likewise.
8389         * tests/test-iconv.c (ASSERT): Likewise.
8390         * tests/test-isfinite.c (ASSERT): Likewise.
8391         * tests/test-isnand.c (ASSERT): Likewise.
8392         * tests/test-isnanf.c (ASSERT): Likewise.
8393         * tests/test-isnanl.h (ASSERT): Likewise.
8394         * tests/test-ldexpl.c (ASSERT): Likewise.
8395         * tests/test-linked_list.c (ASSERT): Likewise.
8396         * tests/test-linkedhash_list.c (ASSERT): Likewise.
8397         * tests/test-localename.c (ASSERT): Likewise.
8398         * tests/test-lseek.c (ASSERT): Likewise.
8399         * tests/test-mbscasecmp.c (ASSERT): Likewise.
8400         * tests/test-mbscasestr1.c (ASSERT): Likewise.
8401         * tests/test-mbscasestr2.c (ASSERT): Likewise.
8402         * tests/test-mbscasestr3.c (ASSERT): Likewise.
8403         * tests/test-mbscasestr4.c (ASSERT): Likewise.
8404         * tests/test-mbschr.c (ASSERT): Likewise.
8405         * tests/test-mbscspn.c (ASSERT): Likewise.
8406         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
8407         * tests/test-mbspbrk.c (ASSERT): Likewise.
8408         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
8409         * tests/test-mbsrchr.c (ASSERT): Likewise.
8410         * tests/test-mbsspn.c (ASSERT): Likewise.
8411         * tests/test-mbsstr1.c (ASSERT): Likewise.
8412         * tests/test-mbsstr2.c (ASSERT): Likewise.
8413         * tests/test-mbsstr3.c (ASSERT): Likewise.
8414         * tests/test-memchr2.c (ASSERT): Likewise.
8415         * tests/test-memmem.c (ASSERT): Likewise.
8416         * tests/test-open.c (ASSERT): Likewise.
8417         * tests/test-printf-frexp.c (ASSERT): Likewise.
8418         * tests/test-printf-frexpl.c (ASSERT): Likewise.
8419         * tests/test-printf-posix.c (ASSERT): Likewise.
8420         * tests/test-quotearg.c (ASSERT): Likewise.
8421         * tests/test-rbtree_list.c (ASSERT): Likewise.
8422         * tests/test-rbtree_oset.c (ASSERT): Likewise.
8423         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
8424         * tests/test-round1.c (ASSERT): Likewise.
8425         * tests/test-roundf1.c (ASSERT): Likewise.
8426         * tests/test-roundl.c (ASSERT): Likewise.
8427         * tests/test-signbit.c (ASSERT): Likewise.
8428         * tests/test-sleep.c (ASSERT): Likewise.
8429         * tests/test-snprintf-posix.c (ASSERT): Likewise.
8430         * tests/test-snprintf.c (ASSERT): Likewise.
8431         * tests/test-sprintf-posix.c (ASSERT): Likewise.
8432         * tests/test-stat-time.c (ASSERT): Likewise.
8433         * tests/test-strcasestr.c (ASSERT): Likewise.
8434         * tests/test-strerror.c (ASSERT): Likewise.
8435         * tests/test-striconv.c (ASSERT): Likewise.
8436         * tests/test-striconveh.c (ASSERT): Likewise.
8437         * tests/test-striconveha.c (ASSERT): Likewise.
8438         * tests/test-strsignal.c (ASSERT): Likewise.
8439         * tests/test-strstr.c (ASSERT): Likewise.
8440         * tests/test-strtod.c (ASSERT): Likewise.
8441         * tests/test-trunc1.c (ASSERT): Likewise.
8442         * tests/test-trunc2.c (ASSERT): Likewise.
8443         * tests/test-truncf1.c (ASSERT): Likewise.
8444         * tests/test-truncf2.c (ASSERT): Likewise.
8445         * tests/test-truncl.c (ASSERT): Likewise.
8446         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
8447         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
8448         * tests/test-vasnprintf.c (ASSERT): Likewise.
8449         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
8450         * tests/test-vasprintf.c (ASSERT): Likewise.
8451         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
8452         * tests/test-vprintf-posix.c (ASSERT): Likewise.
8453         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
8454         * tests/test-vsnprintf.c (ASSERT): Likewise.
8455         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
8456         * tests/test-wcwidth.c (ASSERT): Likewise.
8457         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
8458         * tests/test-xprintf-posix.c (ASSERT): Likewise.
8459         * tests/test-xvasprintf.c (ASSERT): Likewise.
8460         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
8461         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
8462         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
8463         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
8464         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
8465         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
8466         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
8467         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
8468         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
8469         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
8470         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
8471         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
8472         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
8473         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
8474         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
8475         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
8476         * tests/unictype/test-block_list.c (ASSERT): Likewise.
8477         * tests/unictype/test-block_of.c (ASSERT): Likewise.
8478         * tests/unictype/test-block_test.c (ASSERT): Likewise.
8479         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
8480         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
8481         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
8482         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
8483         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
8484         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
8485         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
8486         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
8487         * tests/unictype/test-combining.c (ASSERT): Likewise.
8488         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
8489         * tests/unictype/test-digit.c (ASSERT): Likewise.
8490         * tests/unictype/test-mirror.c (ASSERT): Likewise.
8491         * tests/unictype/test-numeric.c (ASSERT): Likewise.
8492         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
8493         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
8494         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
8495         * tests/unictype/test-scripts.c (ASSERT): Likewise.
8496         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
8497         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
8498         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
8499         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
8500         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
8501         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
8502         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
8503         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
8504         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
8505         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
8506         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
8507         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
8508         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
8509         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
8510         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
8511         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
8512         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
8513         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
8514         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
8515         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
8516         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
8517         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
8518         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
8519         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
8520         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
8521         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
8522         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
8523         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
8524         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
8525         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
8526         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
8527         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
8528         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
8529         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
8530         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
8531         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
8532         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
8533         Reported by Eric Blake.
8534
8535 2008-04-11  Bruno Haible  <bruno@clisp.org>
8536
8537         * lib/wchar.in.h: Tweak comment.
8538
8539 2008-04-11  Bruno Haible  <bruno@clisp.org>
8540
8541         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
8542         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
8543         gl_COMMON.
8544         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
8545
8546 2008-04-11  Bruno Haible  <bruno@clisp.org>
8547
8548         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
8549
8550 2008-04-11  Simon Josefsson  <simon@josefsson.org>
8551
8552         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
8553         of attempting to use non-existing /dev/*random.  Based on patch
8554         from Adam Strzelecki <ono@java.pl> in
8555         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
8556
8557 2008-04-08  Bruno Haible  <bruno@clisp.org>
8558
8559         Add tentative support for emx+gcc.
8560         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
8561         * lib/fpurge.c (fpurge): Likewise.
8562         * lib/freadable.c (freadable): Likewise.
8563         * lib/freadahead.c (freadahead): Likewise.
8564         * lib/freading.c (freading): Likewise.
8565         * lib/freadptr.c (freadptr): Likewise.
8566         * lib/freadseek.c (freadptrinc): Likewise.
8567         * lib/fseeko.c (rpl_fseeko): Likewise.
8568         * lib/fseterr.c (fseterr): Likewise.
8569         * lib/fwritable.c (fwritable): Likewise.
8570         * lib/fwriting.c (fwriting): Likewise.
8571         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
8572
8573 2008-04-09  Eric Blake  <ebb9@byu.net>
8574
8575         Avoid some autoconf warnings.
8576         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
8577         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
8578         * m4/afs.m4 (gl_AFS): Likewise.
8579         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
8580         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
8581         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
8582         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
8583         (gl_INTEGER_TYPE_SUFFIX): Likewise.
8584         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
8585         (AC_CHECK_DECLS_ONCE): Likewise.
8586         Rename file...
8587         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
8588         gnulib-tool requires autoconf 2.59 or better.
8589         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
8590
8591 2008-04-08  Eric Blake  <ebb9@byu.net>
8592
8593         Use 'git describe --match' if present (added in git 1.5.5).
8594         * build-aux/git-version-gen: Limit result to tags that match 'v*'
8595         if possible.
8596
8597 2008-04-08  Bruno Haible  <bruno@clisp.org>
8598
8599         Add tentative support for OpenServer.
8600         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
8601         _ptr, _cnt.
8602         * lib/fpurge.c (fpurge): Likewise.
8603         * lib/freadable.c (freadable): Likewise.
8604         * lib/freadahead.c (freadahead): Likewise.
8605         * lib/freading.c (freading): Likewise.
8606         * lib/freadptr.c (freadptr): Likewise.
8607         * lib/freadseek.c (freadptrinc): Likewise.
8608         * lib/fseeko.c (rpl_fseeko): Likewise.
8609         * lib/fseterr.c (fseterr): Likewise.
8610         * lib/fwritable.c (fwritable): Likewise.
8611         * lib/fwriting.c (fwriting): Likewise.
8612         Reported by Roger Cornelius <rac@tenzing.org> and
8613         Brian K. White <brian@aljex.com>.
8614
8615 2008-04-06  Jim Meyering  <meyering@redhat.com>
8616
8617         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
8618
8619 2008-04-06  Bruno Haible  <bruno@clisp.org>
8620
8621         Avoid possible error with non-ASCII bytes in UTF-8 locales.
8622         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
8623         * tests/test-printf-posix.sh: Likewise.
8624         * tests/test-vfprintf-posix.sh: Likewise.
8625         * tests/test-vprintf-posix.sh: Likewise.
8626         * tests/test-xprintf-posix.sh: Likewise.
8627
8628 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8629
8630         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
8631         hide error from 'ls', needed on OS/2.
8632         Report by Elbert Pol <elbert.pol@gmail.com>.
8633
8634 2008-04-04  Eric Blake  <ebb9@byu.net>
8635
8636         Make test-fseeko.c failures meaningful.
8637         * tests/test-fseeko.c: Print line number on failure.
8638         * tests/test-fseek.c: Likewise.
8639         Reported by Nelson H. F. Beebe.
8640
8641         Improve strtod bug detection check.
8642         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
8643         required for Solaris 10.
8644         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
8645
8646 2008-04-04  Bruno Haible  <bruno@clisp.org>
8647
8648         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
8649         by m4/setenv.m4.
8650
8651 2008-04-03  Eric Blake  <ebb9@byu.net>
8652
8653         Ensure sane .version contents.
8654         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
8655         version string.
8656         * build-aux/git-version-gen: Improve documentation.
8657
8658         Make GNU make output nicer.
8659         * top/GNUmakefile [!_have-Makefile]: Add dependency on
8660         MAKECMDGOALS to enforce message for all command line targets.  Set
8661         srcdir for use in maint.mk.
8662
8663         Another maintainer tweak.
8664         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
8665         a target that regenerates version.
8666
8667 2008-04-03  Jim Meyering  <meyering@redhat.com>
8668
8669         vc-list-files: don't cause coreutils "make po-check" failure
8670         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
8671
8672 2008-04-03  Eric Blake  <ebb9@byu.net>
8673
8674         Allow VPATH usage of vc-list-files.
8675         * build-aux/vc-list-files (scriptversion): Add timestamp.
8676         (options): Add --help, --version, -C.
8677         (CVS): Support installed cvsu.
8678
8679 2008-04-02  Bruno Haible  <bruno@clisp.org>
8680
8681         Avoid some "statement with no effect" warnings from gcc.
8682         * tests/test-wctype.c (main): Explicitly ignore unused values.
8683         Reported by Jim Meyering.
8684
8685 2008-04-02  Jim Meyering  <meyering@redhat.com>
8686
8687         Avoid some warnings from "gcc -Wshadow".
8688         * tests/test-frexp.c (exp): Define to a different identifier.
8689         * tests/test-frexpl.c (exp): Likewise.
8690
8691 2008-04-03  Jim Meyering  <meyering@redhat.com>
8692
8693         bootstrap: remove dangling *.[ch] symlinks from lib
8694         * build-aux/bootstrap [dangling symlink removal]: Move find's
8695         -depth option to precede all others, to avoid a warning.
8696         Remove *.[ch] files too, and from "$source_base" (usually lib/).
8697
8698 2008-04-02  Bruno Haible  <bruno@clisp.org>
8699
8700         Avoid some warnings from "gcc -Wshadow".
8701         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
8702         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
8703         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
8704         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
8705         Reported by Jim Meyering.
8706
8707 2008-04-01  Bruno Haible  <bruno@clisp.org>
8708
8709         Fix test to work on IRIX 6.5 with cc.
8710         * tests/test-math.c (numeric_equal): New function.
8711         (main): Use it.
8712
8713 2008-04-01  Bruno Haible  <bruno@clisp.org>
8714
8715         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
8716
8717 2008-04-01  Bruno Haible  <bruno@clisp.org>
8718
8719         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
8720         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
8721         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
8722         (Depends-on): Remove math.
8723
8724         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
8725         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
8726         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
8727         (Depends-on): Remove math.
8728
8729         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
8730         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
8731         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
8732         (Depends-on): Remove math.
8733         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
8734         (Depends-on): Remove math.
8735
8736         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
8737         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
8738         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
8739         (Depends-on): Remove math.
8740         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
8741         (Depends-on): Remove math.
8742
8743         * tests/test-round1.c: Include nan.h.
8744         (main): Use NaNd instead of NAN.
8745         * modules/round-tests (Files): Add tests/nan.h.
8746
8747         * tests/test-trunc1.c: Include nan.h.
8748         (main): Use NaNd instead of NAN.
8749         * modules/trunc-tests (Files): Add tests/nan.h.
8750
8751         * tests/test-roundf1.c: Include nan.h.
8752         (main): Use NaNf instead of NAN.
8753         * modules/roundf-tests (Files): Add tests/nan.h.
8754
8755         * tests/test-truncf1.c: Include nan.h.
8756         (main): Use NaNf instead of NAN.
8757         * modules/truncf-tests (Files): Add tests/nan.h.
8758
8759         * tests/test-ceilf1.c: Include nan.h.
8760         (main): Use NaNf instead of NAN.
8761         * modules/ceilf-tests (Files): Add tests/nan.h.
8762
8763         * tests/test-floorf1.c: Include nan.h.
8764         (main): Use NaNf instead of NAN.
8765         * modules/floorf-tests (Files): Add tests/nan.h.
8766
8767         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
8768         (main): Use NaNf instead of NAN.
8769         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
8770
8771         * tests/test-isnand.c: Include nan.h instead of <math.h>.
8772         (main): Use NaNd instead of NAN.
8773         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
8774
8775         * tests/test-frexp.c: Include nan.h.
8776         (main): Use NaNd instead of NAN.
8777         * modules/frexp-tests (Files): Add tests/nan.h.
8778
8779         * lib/isnan.c: Don't include <math.h>.
8780         (FUNC): Don't use NAN macro.
8781         * modules/isnand-nolibm (Depends-on): Remove math.
8782         * modules/isnanf-nolibm (Depends-on): Remove math.
8783         * modules/isnanl (Depends-on): Remove math.
8784         * modules/isnanl-nolibm (Depends-on): Remove math.
8785
8786         * tests/nan.h: New file.
8787
8788 2008-04-01  Eric Blake  <ebb9@byu.net>
8789
8790         Fix typos.
8791         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
8792         values to be the right type.
8793
8794         For now, cater to gnulib strtod inaccuracies.
8795         * tests/test-strtod.c (main): Allow 1-ulp error on expected
8796         fractional results.  While not as nice from a QoI perspective, it
8797         is a quicker patch than correctly implementing decimal to binary
8798         rounding.
8799
8800 2008-03-31  Eric Blake  <ebb9@byu.net>
8801
8802         Guarantee a definition of NAN.
8803         * lib/math.in.h (NAN): Define if missing.
8804         * tests/test-math.c (main): Test it.
8805         * doc/posix-headers/math.texi (math.h): Document this.
8806         * lib/isnan.c (rpl_isnand): Use it.
8807         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
8808         * tests/test-floorf1.c (NaN): Likewise.
8809         * tests/test-frexp.c (NaN): Likewise.
8810         * tests/test-isnand.c (NaN): Likewise.
8811         * tests/test-isnanf.c (NaN): Likewise.
8812         * tests/test-round1.c (NaN): Likewise.
8813         * tests/test-roundf1.c (NaN): Likewise.
8814         * tests/test-snprintf-posix.h (NaN): Likewise.
8815         * tests/test-sprintf-posix.h (NaN): Likewise.
8816         * tests/test-trunc1.c (NaN): Likewise.
8817         * tests/test-truncf1.c (NaN): Likewise.
8818         * tests/test-vasnprintf-posix.c (NaN): Likewise.
8819         * tests/test-vasprintf-posix.c (NaN): Likewise.
8820         * modules/isnand-nolibm (Depends-on): Add math.
8821         * modules/isnanf-nolibm (Depends-on): Likewise.
8822         * modules/isnanl (Depends-on): Likewise.
8823         * modules/isnanl-nolibm (Depends-on): Likewise.
8824         * modules/snprintf-posix-tests (Depends-on): Likewise.
8825         * modules/sprintf-posix-tests (Depends-on): Likewise.
8826         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
8827         * modules/vsprintf-posix-tests (Depends-on): Likewise.
8828         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
8829         * modules/vasprintf-posix-tests (Depends-on): Likewise.
8830
8831 2008-03-31  Bruno Haible  <bruno@clisp.org>
8832
8833         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
8834         * doc/posix-functions/strtod.texi: Likewise.
8835
8836 2008-03-31  Bruno Haible  <bruno@clisp.org>
8837
8838         * tests/test-strtod.c (main): Don't use C99 syntax.
8839
8840 2008-03-31  Bruno Haible  <bruno@clisp.org>
8841
8842         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
8843         Reported by Eric Blake.
8844
8845 2008-03-31  Jim Meyering  <meyering@redhat.com>
8846
8847         Don't compare actual signbit return values.
8848         * tests/test-strtod.c (main): Rather, compare only their
8849         zero/non-zero nature.
8850
8851 2008-03-31  Eric Blake  <ebb9@byu.net>
8852
8853         More strtod documentation.
8854         * doc/posix-functions/strtod.texi (strtod): Interpret more test
8855         failures as distinct bugs.
8856
8857 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
8858
8859         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
8860         Problem reported by Erik Benada in
8861         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
8862
8863 2008-03-30  Bruno Haible  <bruno@clisp.org>
8864
8865         * tests/test-strtod.c: Add comments about which assertion fails on which
8866         platform.
8867         * doc/posix-functions/strtod.texi: Add info about many more platforms.
8868
8869 2008-03-30  Eric Blake  <ebb9@byu.net>
8870
8871         Test signbit behavior on zeros.
8872         * tests/test-signbit.c (test_signbitf): Add tests for zero.
8873         (test_signbitd, test_signbitl): Likewise.
8874
8875         More strtod touchups.
8876         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
8877         sign of negative underflow, for now.  Use .5, not .1.
8878         * doc/posix-functions/strtod.texi (strtod): Mention these
8879         limitations.
8880         Reported by Jim Meyering.
8881
8882 2008-03-30  Bruno Haible  <bruno@clisp.org>
8883
8884         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
8885         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
8886
8887 2008-03-30  Bruno Haible  <bruno@clisp.org>
8888
8889         Avoid failure when attempting to return empty iconv results on some
8890         platforms.
8891         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
8892         allocation, don't report ENOMEM when the resulting string is empty.
8893
8894 2008-03-30  Bruno Haible  <bruno@clisp.org>
8895
8896         Fix buffer overrun.
8897         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
8898         Don't consider the width for tmp_length. Check count against tmp_length
8899         before doing the padding. Ensure enough allocation during padding.
8900
8901 2008-03-30  Eric Blake  <ebb9@byu.net>
8902
8903         strtod touchups.
8904         * lib/strtod.c (strtod): Avoid compiler warnings.
8905         Reported by Jim Meyering.
8906
8907 2008-03-30  Bruno Haible  <bruno@clisp.org>
8908
8909         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
8910         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
8911         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
8912         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
8913         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
8914         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
8915         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
8916         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
8917
8918         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
8919         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
8920         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
8921         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
8922         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
8923         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
8924         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
8925         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
8926
8927         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
8928         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
8929         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
8930         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
8931         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
8932         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
8933         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
8934         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
8935
8936         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
8937         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
8938
8939         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
8940         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
8941
8942         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
8943         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
8944
8945         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
8946         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
8947         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
8948
8949         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
8950         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
8951         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
8952
8953         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
8954         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
8955         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
8956
8957         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
8958         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
8959         * modules/vasprintf (Depends-on): Add EOVERFLOW.
8960
8961         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
8962         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
8963         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
8964         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
8965         (Depends-on): Add EOVERFLOW.
8966         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
8967         (Depends-on): Add EOVERFLOW.
8968         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
8969         (Depends-on): Add EOVERFLOW.
8970         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
8971         (Depends-on): Add EOVERFLOW.
8972         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
8973         (Depends-on): Add EOVERFLOW.
8974         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
8975         (Depends-on): Add EOVERFLOW.
8976         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
8977         (Depends-on): Add EOVERFLOW.
8978         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
8979         (Depends-on): Add EOVERFLOW.
8980
8981         * lib/sprintf.c (EOVERFLOW): Remove fallback.
8982         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
8983         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
8984
8985         * lib/snprintf.c (EOVERFLOW): Remove fallback.
8986         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
8987         * modules/snprintf (Depends-on): Add EOVERFLOW.
8988
8989         * lib/poll.c (EOVERFLOW): Remove fallback.
8990         * modules/poll (Depends-on): Add EOVERFLOW.
8991
8992         * lib/getugroups.c (EOVERFLOW): Remove fallback.
8993         * modules/getugroups (Depends-on): Add EOVERFLOW.
8994
8995         * lib/getdelim.c (EOVERFLOW): Remove fallback.
8996         * modules/getdelim (Depends-on): Add EOVERFLOW.
8997
8998         * lib/ftell.c (EOVERFLOW): Remove fallback.
8999         * modules/ftell (Depends-on): Add EOVERFLOW.
9000
9001         * lib/fprintf.c (EOVERFLOW): Remove fallback.
9002         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
9003         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
9004
9005         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
9006
9007         * modules/EOVERFLOW-tests: New file.
9008         * tests/test-EOVERFLOW.c: New file.
9009
9010         * modules/EOVERFLOW: New file.
9011         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
9012
9013 2008-03-30  Bruno Haible  <bruno@clisp.org>
9014
9015         Fix bug introduced on 2007-06-10.
9016         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
9017         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
9018
9019 2008-03-30  Bruno Haible  <bruno@clisp.org>
9020
9021         Improve freadseek's efficiency after ungetc.
9022         * lib/freadseek.c: Include freadahead.h.
9023         (freadptrinc): New function, extracted from freadseek.
9024         (freadseek): Use it in a loop. Use freadahead to determine the number
9025         of loop iterations.
9026         * modules/freadseek (Depends-on): Add freadahead.
9027         (configure.ac): Require AC_C_INLINE.
9028
9029 2008-03-30  Bruno Haible  <bruno@clisp.org>
9030
9031         * lib/freadseek.c (freadseek): Don't ignore the return value of
9032         freadptr.
9033
9034 2008-03-29  Eric Blake  <ebb9@byu.net>
9035
9036         Add hex float support.
9037         * modules/strtod (Depends-on): Add c-ctype.
9038         (Link): Mention POW_LIB.
9039         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
9040         whitespace between 'e' and exponent.
9041         * tests/test-strtod.c (main): Enable hex float tests.
9042         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
9043         now provides.
9044
9045         Document various strtod bugs, with some fixes.
9046         * doc/posix-functions/strtod.texi (strtod): Document bugs with
9047         "-0x", "inf", "nan", and hex constants.
9048         * doc/posix-functions/atof.texi (atof): Likewise.
9049         * modules/stdlib (Makefile.am): Support strtod.
9050         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
9051         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
9052         detect additional strtod bugs.
9053         * lib/stdlib.in.h (rpl_strtod): Add declarations.
9054         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
9055         bool where appropriate.  Parse 'inf' and 'nan'.
9056         * tests/test-strtod.c: New file.
9057         * modules/strtod (Depends-on): Add stdbool, stdlib.
9058         (configure.ac): Turn on module indicator.
9059         * modules/strtod-tests: New module.
9060
9061 2008-03-29  Eric Blake  <ebb9@byu.net>
9062
9063         Fix ftell on mingw.
9064         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
9065         * modules/ftell-tests (Depends-on): Add binary-io.
9066         * modules/ftello-tests (Depends-on): Likewise.
9067         * tests/test-ftell.c (main): Enhance test to cover behavior after
9068         ungetc.  Enforce binary mode.
9069         * tests/test-ftello.c (main): Likewise.
9070
9071         Pass test-freadseek on cygwin.
9072         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
9073         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
9074         ungetc buffer.
9075
9076         * tests/test-fflush2.c (main): Fix typo.
9077
9078 2008-03-29  Bruno Haible  <bruno@clisp.org>
9079
9080         * tests/test-fflush2.c (main): Temporarily disable the contents of
9081         this test.
9082         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
9083         Reported by Eric Blake.
9084
9085 2008-03-28  Simon Josefsson  <simon@josefsson.org>
9086
9087         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
9088         (GC_SHA224_DIGEST_SIZE): Add.
9089
9090         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
9091         (gc_hash_digest_length): Likewise.
9092         (gc_hash_buffer): Likewise.
9093
9094 2008-03-25  Bruno Haible  <bruno@clisp.org>
9095
9096         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
9097         detail which gettext release to use.
9098         Reported by Simon Josefsson.
9099
9100 2008-03-26  Jim Meyering  <meyering@redhat.com>
9101
9102         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
9103         * modules/gnumakefile (clean-GNUmakefile): Also, use
9104         test ... && ... || : syntax rather than if-then ... fi.
9105
9106         gnumakefile: Don't double-quote-expand $(VPATH) value.
9107         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
9108
9109 2008-03-24  Eric Blake  <ebb9@byu.net>
9110
9111         Alter GNUmakefile to install into top directory.
9112         * modules/maintainer-makefile: Split, and add dependency...
9113         * modules/gnumakefile: to this new module.
9114         * build-aux/GNUmakefile: Move...
9115         * top/GNUmakefile: ...here.
9116         * build-aux/maint.mk: Move...
9117         * top/maint.mk: ...here.
9118         * MODULES.html.sh (Support for maintaining...): Document new
9119         module.
9120
9121 2008-03-23  Bruno Haible  <bruno@clisp.org>
9122
9123         * gnulib-tool: New options --vc-files, --no-vc-files.
9124         (func_usage): Document them.
9125         (vc_files): New variable.
9126         (func_import): Consider vc_files.
9127         (func_create_testdir): Set vc_files to empty.
9128         Suggested by Jim Meyering and Karl Berry.
9129
9130 2008-03-23  Bruno Haible  <bruno@clisp.org>
9131
9132         Fix regex compilation error on HP-UX 11.
9133         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
9134         * modules/regex (Files): Add m4/mbstate_t.m4.
9135         Reported by Ton Voon <ton.voon@altinity.com>.
9136
9137 2008-03-23  Bruno Haible  <bruno@clisp.org>
9138
9139         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
9140
9141 2008-03-23  Eric Blake  <ebb9@byu.net>
9142             Bruno Haible  <bruno@clisp.org>
9143
9144         Install files from top/ in the destination directory.
9145         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
9146         augmentation also for the files from top/.
9147         (func_import, func_create_testdir): Rewrite file names:
9148         top/filename -> filename.
9149
9150 2008-03-23  Bruno Haible  <bruno@clisp.org>
9151
9152         Tweak "gnulib --version" output.
9153         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
9154
9155 2008-03-23  Bruno Haible  <bruno@clisp.org>
9156
9157         Tweak "gnulib --version" output.
9158         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
9159         rather than contents of ChangeLog, when possible.
9160
9161 2008-03-21  Eric Blake  <ebb9@byu.net>
9162
9163         More --version tweaks.
9164         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
9165         date of last ChangeLog entry.
9166
9167 2008-03-21  Jim Meyering  <meyering@redhat.com>
9168
9169         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
9170
9171 2008-03-20  Eric Blake  <ebb9@byu.net>
9172
9173         VPATH fix.
9174         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
9175
9176 2008-03-20  Simon Josefsson  <simon@josefsson.org>
9177
9178         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
9179         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
9180
9181 2008-03-20  Eric Blake  <ebb9@byu.net>
9182
9183         Sync GNUmakefile with coreutils.
9184         * build-aux/GNUmakefile (have-Makefile): Rename...
9185         (_have-Makefile): ...to this, for namespace consideration.
9186         (GNUmakefile.cfg): Include, if present.
9187         (_autoreconf): Define a default.
9188         (_is-dist-target): New rule for rebuilds to pick up intra-release
9189         version.
9190         (maint-cfg.mk): Rename...
9191         (cfg.mk): ...to this.
9192
9193 2008-03-18  Jim Meyering  <meyering@redhat.com>
9194
9195         New script and module: mktempd
9196         * MODULES.html.sh (maint+release support): Add mktempd.
9197         * build-aux/mktempd: New file.
9198         * modules/mktempd: New file.
9199
9200 2008-03-15  Jim Meyering  <meyering@redhat.com>
9201
9202         Undo last change.
9203         * lib/sha1.c, lib/md5.c: 63 != ~63.
9204         Reported by Andreas Schwab.
9205
9206         sha1.c, md5.c: Hoist a redundant expression.
9207         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
9208         "ctx->buflen" only once, before calling *_process_block.
9209         * lib/md5.c (md5_process_bytes): Likewise.
9210
9211 2008-03-14  Eric Blake  <ebb9@byu.net>
9212
9213         Bump copyright year in files generated by gnulib-tool.
9214         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
9215         gnulib-tool, rather than hard-coding it.
9216
9217         Fix 'gnulib-tool --version' output to work with git.
9218         * gnulib-tool (func_gnulib_dir): New function, extracted from...
9219         (startup): ...here.
9220         (func_version): Use it to invoke git-version-gen, rather than
9221         relying on CVS keyword expansion.  Modernize wording.
9222         (cvsdatestamp, last_checkin_date, version): Kill unused
9223         variables.
9224
9225 2008-03-12  Jim Meyering  <meyering@redhat.com>
9226
9227         Recognize optional cast of the argument to free.
9228         * build-aux/useless-if-before-free: Update regexps.
9229
9230         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
9231
9232 2008-03-11  Bruno Haible  <bruno@clisp.org>
9233
9234         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
9235         by a single package.
9236         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
9237         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
9238         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
9239         Reported by Sam Steingold <sds@gnu.org>.
9240
9241 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9242
9243         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
9244         repositories.
9245
9246 2008-03-11  Bruno Haible  <bruno@clisp.org>
9247
9248         Avoid conflicts between local macro definitions.
9249         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
9250         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
9251
9252 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
9253             Bruno Haible  <bruno@clisp.org>
9254
9255         Make va_copy work with some version of xlc on AIX 5.1.
9256         * lib/stdarg.in.h: New file.
9257         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
9258         On AIX, use a <stdarg.h> file substitute.
9259         * modules/stdarg (Files): Add lib/stdarg.in.h.
9260         (Depends-on): Add include_next.
9261         (Makefile.am): Build a stdarg.h substitute if requested.
9262         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
9263
9264 2008-03-10  Bruno Haible  <bruno@clisp.org>
9265
9266         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
9267         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
9268         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
9269
9270 2008-03-10  Bruno Haible  <bruno@clisp.org>
9271
9272         * modules/stdlib (Depends-on): Add include_next, remove
9273         absolute-header.
9274
9275 2008-03-09  Bruno Haible  <bruno@clisp.org>
9276
9277         * lib/freadahead.h (freadahead): Document more precisely.
9278         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
9279         the sum of both buffer sizes.
9280         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
9281         * NEWS: Document the change.
9282
9283 2008-03-09  Bruno Haible  <bruno@clisp.org>
9284
9285         Extend freadptr to return also the buffer size.
9286         * lib/freadptr.h (freadptr): Add sizep argument.
9287         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
9288         (freadptr): Add sizep argument. Determine buffer size like freadahead
9289         does.
9290         * tests/test-freadptr.c: Don't include freadahead.h.
9291         (main): Adapt for new calling convention of freadptr.
9292         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
9293         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
9294         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
9295         tests/test-freadptr2.sh.
9296         (Depends): Remove freadahead.
9297         (TESTS): Add test-freadptr2.sh.
9298         (check_PROGRAMS): Add test-freadptr2.
9299
9300 2008-03-09  Bruno Haible  <bruno@clisp.org>
9301
9302         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
9303         Report and solution by Simon Josefsson.
9304
9305 2008-03-06  Bruno Haible  <bruno@clisp.org>
9306
9307         Make fflush after ungetc work on BSD platforms.
9308         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
9309         * tests/test-fflush2.c: New file.
9310         * tests/test-fflush2.sh: New file.
9311         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
9312         tests/test-fflush2.c.
9313         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
9314         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
9315
9316 2008-03-06  Eric Blake  <ebb9@byu.net>
9317
9318         Likewise for ftello.
9319         * modules/ftello (Dependencies): Add extensions.
9320         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
9321
9322 2008-03-06  Bruno Haible  <bruno@clisp.org>
9323
9324         * modules/fseeko (Dependencies): Add extensions.
9325         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
9326         Needed on glibc systems.
9327
9328 2008-03-06  Bruno Haible  <bruno@clisp.org>
9329
9330         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
9331         email address.
9332         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
9333
9334 2008-03-06  Bruno Haible  <bruno@clisp.org>
9335
9336         * users.txt: Add libgnupdf.
9337
9338 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
9339
9340         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
9341         (Header File Substitutes, Function Substitutes,
9342         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
9343         (Build robot for gnulib): Fix typo.
9344
9345 2008-03-06  Bruno Haible  <bruno@clisp.org>
9346
9347         * doc/gnulib-tool.texi (VCS Issues): Small updates.
9348         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
9349
9350 2008-03-06  Bruno Haible  <bruno@clisp.org>
9351
9352         * doc/func.texi: New file, extracted from doc/gnulib.texi.
9353         * doc/gnulib.texi: Include it.
9354
9355 2008-03-06  Simon Josefsson  <simon@josefsson.org>
9356
9357         * modules/func (License): Change license to unlimited; there was
9358         no LGPL parts in the module anyway.
9359
9360 2008-03-06  Simon Josefsson  <simon@josefsson.org>
9361
9362         * modules/__func__: Renamed to modules/func.
9363         * modules/__func__-tests: Renamed to modules/func-tests.
9364         * tests/test-__func__.c: Renamed to tests/test-func.c.
9365         * m4/__func__.m4: Renamed to m4/func.m4.
9366         * doc/gnulib.texi (__func__): Section renamed to func.
9367         Suggested by Eric Blake <ebb9@byu.net>.
9368
9369 2008-03-06  Simon Josefsson  <simon@josefsson.org>
9370
9371         * doc/gnulib.texi (__func__): Use C99 terminology when talking
9372         about __func__.  Make example self-contained.  Suggested by Eric
9373         Blake <ebb9@byu.net>.
9374
9375         * tests/test-__func__.c (main): Avoid extraneous () around __func.
9376         Suggested by Eric Blake <ebb9@byu.net>.
9377
9378 2008-03-06  Simon Josefsson  <simon@josefsson.org>
9379
9380         * modules/__func__: New file.
9381         * modules/__func__-tests: New file.
9382         * tests/test-__func__.c: New file.
9383         * m4/__func__.m4: New file.
9384         * doc/gnulib.texi (__func__): Document __func__ module.
9385
9386 2008-03-05  Simon Josefsson  <simon@josefsson.org>
9387
9388         * modules/byteswap (License): Re-license as LGPLv2+.
9389
9390 2008-03-05  Simon Josefsson  <simon@josefsson.org>
9391
9392         * doc/Makefile: Add pdf target.
9393
9394 2008-03-05  Simon Josefsson  <simon@josefsson.org>
9395
9396         * modules/inline (License): Use 'unlimited', since there are only
9397         *.m4 files in this module.
9398
9399 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
9400             Bruno Haible  <bruno@clisp.org>
9401
9402         Add support for HP C 7.1 on OpenVMS 8.3.
9403         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
9404
9405 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
9406
9407         Update VMS specifics.
9408         * lib/getopt.c [VMS]: Remove include of unixlib.h.
9409
9410 2008-03-02  Jim Meyering  <meyering@redhat.com>
9411
9412         Remove the last dependency on the "free" module.
9413         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
9414         Reported by Bob Proulx.
9415
9416         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
9417
9418         Remove useless "if" tests before free.  Deprecate "free" module.
9419         * doc/posix-functions/free.texi: Mention that this
9420         module is no longer useful.
9421         * modules/free (Notice): Say this module is obsolete.
9422         * modules/readutmp (Depends-on): Remove free.
9423         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
9424         * lib/putenv.c (putenv): Likewise.
9425         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
9426         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
9427         * tests/test-c-strcasestr.c (main): Likewise.
9428         * tests/test-c-strstr.c (main): Likewise.
9429         * tests/test-mbscasestr1.c (main): Likewise.
9430         * tests/test-mbscasestr2.c (main): Likewise.
9431         * tests/test-mbsstr1.c (main): Likewise.
9432         * tests/test-mbsstr2.c (main): Likewise.
9433         * tests/test-memmem.c (main): Likewise.
9434         * tests/test-strcasestr.c (main): Likewise.
9435         * tests/test-striconv.c (main): Likewise.
9436         * tests/test-striconveh.c (main): Likewise.
9437         * tests/test-striconveha.c (main): Likewise.
9438         * tests/test-strstr.c (main): Likewise.
9439
9440         * build-aux/git-version-gen: Adjust a comment and the Usage string.
9441
9442         bootstrap: sync from coreutils again
9443         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
9444
9445 2008-03-01  Jim Meyering  <meyering@redhat.com>
9446
9447         bootstrap: sync from coreutils
9448         * build-aux/bootstrap (update_po_files): Copy a .po file into place
9449         also when the target doesn't exist.
9450
9451 2008-03-01  Eric Blake  <ebb9@byu.net>
9452
9453         Fix bugs in last patch.
9454         * lib/memchr2.c (memchr2): Fix typo.
9455         * tests/test-memchr2.c: Test previous bug, and don't use GNU
9456         extension.
9457         Reported by Bruce Korb.
9458
9459         New module 'memchr2'.
9460         * modules/memchr2: New file.
9461         * modules/memchr2-tests: Likewise.
9462         * lib/memchr2.h: Likewise.
9463         * lib/memchr2.c: Likewise, based on memchr.c.
9464         * tests/test-memchr2.c: New test.
9465         * MODULES.html.sh (String handling): Add memchr2.
9466
9467 2008-02-29  Bruno Haible  <bruno@clisp.org>
9468
9469         * modules/freadseek-tests: New file.
9470         * tests/test-freadseek.sh: New file.
9471         * tests/test-freadseek.c: New file.
9472
9473         New module 'freadseek'.
9474         * modules/freadseek: New file.
9475         * lib/freadseek.h: New file.
9476         * lib/freadseek.c: New file.
9477         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
9478
9479 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
9480
9481         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
9482         wydawca.
9483
9484         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
9485         program_invocation_name and program_invocation_short_name are
9486         present.
9487
9488 2008-02-28  Bruno Haible  <bruno@clisp.org>
9489
9490         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
9491         * tests/test-freadptr.sh: Also test non-seekable stdin.
9492
9493 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
9494
9495         * build-aux/bootstrap (source_base, m4_base)
9496         (doc_base, tests_base): New variables.
9497         (gnulib_tool_options): Do not hardcode base directories, use
9498         the above variables instead.
9499
9500 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
9501
9502         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
9503
9504 2008-02-28  Bruno Haible  <bruno@clisp.org>
9505
9506         * modules/freadptr-tests: New file.
9507         * tests/test-freadptr.sh: New file.
9508         * tests/test-freadptr.c: New file.
9509
9510         New module 'freadptr'.
9511         * modules/freadptr: New file.
9512         * lib/freadptr.h: New file.
9513         * lib/freadptr.c: New file.
9514         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
9515
9516 2008-02-26  Karl Berry  <karl@freefriends.org>
9517
9518         Sync from Libtool:
9519         * libltdl/argz.c (argz_add, argz_count): New functions.
9520         * libltdl/argz.in.h: Declare them.
9521         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
9522
9523 2008-02-22  Bruno Haible  <bruno@clisp.org>
9524
9525         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
9526         is a pointer type.  Needed for HP-UX 10.
9527         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
9528         * doc/posix-functions/gmtime_r.texi: Likewise.
9529         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
9530
9531 2008-02-24  Bruno Haible  <bruno@clisp.org>
9532
9533         * modules/environ-tests: New file.
9534         * tests/test-environ.c: New file.
9535
9536         New module 'environ'.
9537         * modules/environ: New file.
9538         * lib/unistd.in.h (environ): New declaration.
9539         * m4/environ.m4: New file.
9540         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
9541         after use.
9542         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
9543         HAVE_DECL_ENVIRON.
9544         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
9545         HAVE_DECL_ENVIRON.
9546         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
9547         wrong claim that 'environ' is missing on some systems.
9548         * modules/execute (Depends-on): Add environ.
9549         * lib/execute.c (environ): Remove fallback declaration.
9550         * modules/pipe (Depends-on): Add environ.
9551         * lib/pipe.c (environ): Remove fallback declaration.
9552         * modules/setenv (Depends-on): Add environ.
9553         * lib/setenv.c (environ): Remove fallback declaration.
9554         * modules/unsetenv (Depends-on): Add environ.
9555         * lib/unsetenv.c (environ): Remove fallback declaration.
9556         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
9557         m4/environ.m4.
9558         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
9559         (gl_PREREQ_UNSETENV): Likewise.
9560
9561 2008-02-24  Bruno Haible  <bruno@clisp.org>
9562
9563         * doc/posix-functions/environ.texi: Document the MacOS X problem.
9564
9565 2008-02-20  Bob Proulx  <bob@proulx.com>
9566
9567         Enable use of older two part flavor 'git describe'.
9568         * build-aux/git-version-gen: If using the older two part flavor of
9569         git version then recreate the third part now present in the
9570         newer three part flavor of git describe.
9571
9572 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
9573
9574         * lib/fts.c (fts_build): Typo correction to comment.
9575
9576 2008-02-17  Bruno Haible  <bruno@clisp.org>
9577
9578         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
9579         generating no-op conflicts.
9580
9581 2008-02-17  Bruno Haible  <bruno@clisp.org>
9582
9583         Speed up by 10%.
9584         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
9585         result_entries, rather than an index-based loop.
9586
9587 2008-02-17  Bruno Haible  <bruno@clisp.org>
9588
9589         Speed up by 25%.
9590         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
9591         'hashcode_cached'.
9592         (entry_create): New function.
9593         (entry_hashcode): Use the cached hashcode if possible.
9594         (read_changelog_file, try_split_merged_entry): Use entry_create.
9595
9596 2008-02-17  Bruno Haible  <bruno@clisp.org>
9597
9598         Speed up from O(n^2) to O(n) for long ChangeLog files.
9599         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
9600         (read_changelog_file): Change implementation of entries_reversed list
9601         to rbtreehash.
9602         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
9603
9604 2008-02-17  Bruno Haible  <bruno@clisp.org>
9605
9606         New option --split-merged-entry.
9607         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
9608         (find_paragraph_end, try_split_merged_entry): New functions.
9609         (long_options): Add option --split-merged-entry.
9610         (usage): Document option --split-merged-entry.
9611         (main): Implement option --split-merged-entry.
9612         Reported by Eric Blake.
9613
9614 2008-02-17  Bruno Haible  <bruno@clisp.org>
9615
9616         * lib/git-merge-changelog.c: Include c-strstr.h.
9617         (main): Support the "git pull --rebase" situation.
9618         * modules/git-merge-changelog (Depends-on): Add c-strstr.
9619         Reported by Eric Blake.
9620
9621 2008-02-16  Eric Blake  <ebb9@byu.net>
9622
9623         Avoid doubling \ in common case of "c-maybe" quoting style.
9624         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
9625         eliding outer quotes.
9626         * lib/quotearg.h: Document this.
9627         * tests/test-quotearg.c (result_strings, inputs, results_g)
9628         (flag_results, locale_results): Test it by adding a new string to
9629         each test group.
9630         (compare_strings): Test new string.
9631
9632 2008-02-13  Eric Blake  <ebb9@byu.net>
9633
9634         Avoid trigraph quoting in default output.
9635         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
9636         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
9637         unless explicitly requested.
9638         * tests/test-quotearg.c (flag_results, main): Add additional tests.
9639
9640 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
9641
9642         Don't rely on signed integer overflowing to negative value.
9643         * lib/getugroups.c (getugroups): Include <limits.h>.
9644         Instead, compare against INT_MAX, and increment only if the test passes.
9645
9646 2008-02-13  Jim Meyering  <meyering@redhat.com>
9647         and Eric Blake  <ebb9@byu.net>
9648
9649         Avoid shadowing warning and compile errors on Linux.
9650         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
9651         forwarding macros on Linux.
9652         (dcgettext): Define a stub, for Linux.
9653         (results_g, main): Avoid warnings.
9654
9655 2008-02-12  Eric Blake  <ebb9@byu.net>
9656
9657         Silence warning in last patch.
9658         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
9659
9660         Quotearg part 4: add tests, fix c-maybe colon quoting.
9661         * lib/quotearg.h: Improve documentation.
9662         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
9663         escapes when adding outer quotes.  When quoting trigraphs, use
9664         valid C notation.  When quoting NUL, omit extra characters if next
9665         character is not digit.  Alter prototype.
9666         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
9667         callers.
9668         * modules/quotearg-tests: New module.
9669         * tests/test-quotearg.c: New test.
9670
9671 2008-02-07  Eric Blake  <ebb9@byu.net>
9672
9673         Quotearg part 3: add flag to control outer quote elision.
9674         * lib/quotearg.h (c_maybe_quoting_style): New style.
9675         (enum quoting_flags): Better documentation of flags.
9676         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
9677         c-maybe style.
9678         (quotearg_buffer_restyled): Handle new flag to elide outer
9679         quotes.
9680
9681         Quotearg part 2: add flag that can control NUL elision.
9682         * lib/quotearg.h (set_quoting_flags): New prototype.
9683         * lib/quotearg.c (struct quoting_options): Add flag field.
9684         (set_quoting_flags): New function.
9685         (quotearg_buffer_restyled): Add flags parameter.
9686         (quotearg_alloc_mem): Set the flag if length cannot be returned.
9687         (quotearg_n_options): Set the flag, since length cannot be
9688         returned.
9689         (quoting_options_from_style): Default flags correctly.
9690
9691         Quotearg part 1: more wrappers, restore quotearg_char state.
9692         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
9693         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
9694         (quotearg_colon_mem): New wrappers.
9695         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
9696         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
9697         functions.
9698         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
9699         (quotearg_colon_mem): New functions.
9700
9701 2008-02-11  Bruno Haible  <bruno@clisp.org>
9702
9703         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
9704         library in the current directory: it does not work with parallel make.
9705         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9706
9707 2008-02-11  Bruno Haible  <bruno@clisp.org>
9708
9709         * .gitattributes: New file.
9710
9711 2008-02-11  Jim Meyering  <meyering@redhat.com>
9712
9713         useless-if-before-free: Fix reversed exit values.
9714         * build-aux/useless-if-before-free: Use correct values
9715         for EXIT_MATCH and EXIT_NO_MATCH.
9716
9717         * build-aux/useless-if-before-free: Close stdout carefully.
9718
9719 2008-02-10  Bruno Haible  <bruno@clisp.org>
9720
9721         New module 'git-merge-changelog'.
9722         * modules/git-merge-changelog: New file.
9723         * lib/git-merge-changelog.c: New file.
9724
9725 2008-02-10  Jim Meyering  <meyering@redhat.com>
9726
9727         useless-if-before-free: New option: --list (-l).
9728
9729         useless-if-before-free: Don't exit immediately upon open failure.
9730         * build-aux/useless-if-before-free: Exit 2 for errors.
9731         Upon failure to open a file, don't exit immediately.
9732         Rather, just warn and continue with any remaining files.
9733
9734 2008-02-10  Bruno Haible  <bruno@clisp.org>
9735
9736         New abstract list operation 'node_set_value'.
9737         * lib/gl_list.h (gl_list_node_set_value): New function.
9738         (struct gl_list_implementation): New field node_set_value.
9739         * lib/gl_list.c (gl_list_node_set_value): New function.
9740         * lib/gl_array_list.c (gl_array_node_set_value): New function.
9741         (gl_array_list_implementation): Update.
9742         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
9743         (gl_carray_list_implementation): Update.
9744         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
9745         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
9746         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
9747         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
9748         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
9749         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
9750         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
9751         Update.
9752         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
9753         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
9754         (gl_sublist_list_implementation): Update.
9755
9756 2008-02-10  Bruno Haible  <bruno@clisp.org>
9757
9758         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
9759         Needed when ELEMENT is #defined to 'some_type *'.
9760
9761 2008-02-10  Jim Meyering  <meyering@redhat.com>
9762
9763         New script and module: useless-if-before-free
9764         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
9765         * build-aux/useless-if-before-free: New file.
9766         * modules/useless-if-before-free: New file.
9767
9768         * build-aux/gitlog-to-changelog: Use committer date, not author date.
9769
9770         xstrtol_error: Fix typo.
9771         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
9772         s/exit_failure/exit_status/.
9773
9774 2008-02-09  Jim Meyering  <meyering@redhat.com>
9775
9776         New script and module: gitlog-to-changelog
9777         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
9778         * modules/gitlog-to-changelog: New file.
9779         * build-aux/gitlog-to-changelog: New file.
9780
9781 2008-02-08  Jim Meyering  <meyering@redhat.com>
9782
9783         Avoid two "parameter unused" warnings.
9784         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
9785         Mark "st" as used.
9786
9787         Use "git COMMAND", not "git-COMMAND".
9788         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
9789         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
9790         * build-aux/git-version-gen: Use "git status", not "git-status".
9791
9792 2008-02-07  Bruno Haible  <bruno@clisp.org>
9793
9794         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
9795         Avoids a crash on Windows Vista.
9796         Reported by Adam Strzelecki <ono@java.pl> via
9797         Simon Josefsson <simon@josefsson.org>.
9798
9799 2008-02-06  Bruno Haible  <bruno@clisp.org>
9800
9801         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
9802         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
9803         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
9804         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
9805         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9806         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9807         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
9808         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
9809         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9810         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9811         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9812         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9813         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9814         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9815         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9816         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
9817         left-adjust flag.
9818         * tests/test-snprintf-posix.h (test_function): Likewise.
9819         * tests/test-sprintf-posix.h (test_function): Likewise.
9820         * tests/test-vasprintf-posix.c (test_function): Likewise.
9821         * doc/posix-functions/fprintf.texi: Update.
9822         * doc/posix-functions/printf.texi: Update.
9823         * doc/posix-functions/snprintf.texi: Update.
9824         * doc/posix-functions/sprintf.texi: Update.
9825         * doc/posix-functions/vfprintf.texi: Update.
9826         * doc/posix-functions/vprintf.texi: Update.
9827         * doc/posix-functions/vsnprintf.texi: Update.
9828         * doc/posix-functions/vsprintf.texi: Update.
9829         Reported by Peter Fales <psfales@alcatel-lucent.com>.
9830
9831 2008-02-06  Bruno Haible  <bruno@clisp.org>
9832
9833         Fix bug introduced on 2008-01-26.
9834         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
9835
9836 2008-02-06  Bruno Haible  <bruno@clisp.org>
9837
9838         Fix bug introduced on 2007-06-10.
9839         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
9840         !NEED_PRINTF_FLAG_ZERO.
9841
9842 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
9843
9844         getloadavg: use libperfstat on AIX5
9845         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
9846
9847 2008-02-03  Bruno Haible  <bruno@clisp.org>
9848
9849         * lib/diffseq.h: Add comments about required #includes.
9850         Reported by Michael Biggs <gnulib@doubleplum.net>.
9851
9852 2008-02-01  Bruno Haible  <bruno@clisp.org>
9853
9854         * users.txt: Add gnuit.
9855
9856 2008-01-31  Bruno Haible  <bruno@clisp.org>
9857
9858         * lib/md4.c (set_uint32): Mark as inline.
9859         * lib/md5.c (set_uint32): Likewise.
9860         * lib/sha1.c (set_uint32): Likewise.
9861         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
9862         * m4/md5.m4 (gl_MD5): Likewise.
9863         * m4/sha1.m4 (gl_SHA1): Likewise.
9864
9865 2008-01-31  Jim Meyering  <meyering@redhat.com>
9866
9867         Use "sizeof VAR", rather than a literal "4".
9868         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
9869         * lib/md4.c (md4_read_ctx): Likewise.
9870         * lib/sha1.c (sha1_read_ctx): Likewise.
9871
9872 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9873
9874         * tests/test-sha1.c: New file, based on test-md5.c.
9875
9876         * modules/crypto/sha1-tests: New file.
9877
9878 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9879
9880         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
9881
9882 2008-01-31  Jim Meyering  <meyering@redhat.com>
9883
9884         Prefer "sizeof v" over the equivalent "4".
9885         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
9886         * lib/md5.c (set_uint32): Likewise.
9887         * lib/sha1.c (set_uint32): Likewise.
9888
9889 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9890
9891         * lib/sha1.c (set_uint32): Mark function as static.
9892
9893 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9894
9895         md2: clarify comments to say that alignment is not required.
9896         * lib/md2.h: Remove warning about alignment in comment.
9897         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
9898         never been required.
9899
9900 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9901
9902         md4: adapt alignment constraint fix from sha1.
9903         * lib/md4.c (set_uint32): New function, from sha1.c
9904         (md4_read_ctx): Use it.
9905         (md4_finish_ctx): Doc fix.
9906         * lib/md4.h: Doc fix.
9907
9908 2008-01-31  Simon Josefsson  <simon@josefsson.org>
9909
9910         md5: adapt alignment constraint fix from sha1.
9911         * lib/md5.c (set_uint32): New function, from sha1.c
9912         (md5_read_ctx): Use it.
9913         (md5_finish_ctx): Doc fix.
9914         * lib/md5.h: Doc fix.
9915
9916 2008-01-30  Peter Palfrader  <weasel@debian.org>
9917
9918         sha1: remove the result buffer alignment constraint
9919         * lib/sha1.c (set_uint32): New function.
9920         (sha1_read_ctx): Rewrite to remove the result buffer alignment
9921         constraint.
9922         (sha1_finish_ctx): Remove comment warning about alignment constraint.
9923         * lib/sha1.h: Likewise.
9924
9925 2008-01-30  Andreas Schwab  <schwab@suse.de>
9926             Bruno Haible  <bruno@clisp.org>
9927
9928         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
9929         correct definition of LDBL_MIN_EXP.
9930
9931 2008-01-30  Karl Berry  <karl@gnu.org>
9932
9933         * config/srclist-update: try to preserve x bit on updates.
9934         * config/srclistvars.sh: update for karl.
9935
9936 2008-01-29  Jim Meyering  <meyering@redhat.com>
9937
9938         vasnprintf.c: Avoid warning about unused label
9939         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
9940         "overflow" label definition and associated code with the
9941         same cpp condition that guards the sole use of that label.
9942
9943 2008-01-26  Bruno Haible  <bruno@clisp.org>
9944
9945         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
9946         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
9947         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
9948         * lib/isnanl-nolibm.h (isnanl): Likewise.
9949         Reported by Paul Eggert <eggert@cs.ucla.edu>.
9950
9951 2008-01-26  Bruno Haible  <bruno@clisp.org>
9952
9953         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
9954         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
9955
9956 2008-01-26  Bruno Haible  <bruno@clisp.org>
9957
9958         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
9959         GCC >= 4.0 built-in.
9960         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
9961
9962 2008-01-26  Bruno Haible  <bruno@clisp.org>
9963
9964         Rename isnan, applicable to 'double' only, to isnand.
9965         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
9966         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
9967         (configure.ac): Update.
9968         (Include): Replace "isnan.h" with "isnand.h".
9969         * m4/isnand.m4: Renamed from m4/isnan.m4.
9970         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
9971         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
9972         instead of isnan.c.
9973         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
9974         instead of HAVE_ISNAN_IN_LIBC.
9975         (isnand): Renamed from isnan.
9976         * lib/isnand.c: New file.
9977         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
9978         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
9979         (Makefile.am): Update.
9980         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
9981         Include isnand.h instead of isnan.h.
9982         (main): Test isnand instead of isnan.
9983         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
9984         isnan-nolibm.
9985         * modules/frexp (Depends-on): Likewise.
9986         * modules/frexp-tests (Depends-on): Likewise.
9987         * modules/frexp-nolibm (Depends-on): Likewise.
9988         * modules/frexp-nolibm-tests (Depends-on): Likewise.
9989         * modules/isfinite (Depends-on): Likewise.
9990         * modules/round-tests (Depends-on): Likewise.
9991         * modules/signbit (Depends-on): Likewise.
9992         * modules/signbit-tests (Depends-on): Likewise.
9993         * modules/snprintf-posix (Depends-on): Likewise.
9994         * modules/sprintf-posix (Depends-on): Likewise.
9995         * modules/trunc-tests (Depends-on): Likewise.
9996         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
9997         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
9998         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
9999         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
10000         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
10001         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
10002         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
10003         * modules/vasnprintf-posix (Depends-on): Likewise.
10004         * modules/vasprintf-posix (Depends-on): Likewise.
10005         * modules/vfprintf-posix (Depends-on): Likewise.
10006         * modules/vsnprintf-posix (Depends-on): Likewise.
10007         * modules/vsprintf-posix (Depends-on): Likewise.
10008         * lib/frexp.c: Include isnand.h instead of isnan.h.
10009         (ISNAN): Set to isnand instead of isnan.
10010         * lib/isfinite.c: Include isnand.h instead of isnan.h.
10011         (gl_isfinited): Use isnand instead of isnan.
10012         * lib/signbitd.c: Include isnand.h instead of isnan.h.
10013         (gl_signbitd): Use isnand instead of isnan.
10014         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
10015         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
10016         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
10017         (main): Use isnand instead of isnan.
10018         * tests/test-round1.c: Include isnand.h.
10019         (main): Use isnand instead of isnan.
10020         * tests/test-round2.c: Include isnand.h instead of isnan.h.
10021         (ISNAN): Set to isnand instead of isnan.
10022         * tests/test-trunc1.c: Include isnand.h.
10023         (main): Use isnand instead of isnan.
10024         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
10025         (equal): Use isnand instead of isnan.
10026         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
10027         isnand-nolibm.
10028         * NEWS: Mention the change.
10029
10030 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
10031             Bruno Haible  <bruno@clisp.org>
10032
10033         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
10034         the GCC builtins for signbits are present and set
10035         REPLACE_SIGNBIT_USING_GCC if so.
10036         * lib/math.in.h (signbit): Define using GCC builtins if
10037         REPLACE_SIGNBIT_USING_GCC is set.
10038         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
10039         REPLACE_SIGNBIT_USING_GCC.
10040         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
10041
10042 2008-01-25  Jim Meyering  <meyering@redhat.com>
10043
10044         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
10045         * lib/poll.c: Include <config.h>, not "config.h".
10046         * tests/test-getaddrinfo.c: Likewise.
10047
10048 2008-01-25  Simon Josefsson  <simon@josefsson.org>
10049
10050         * modules/sockets-tests: New file.
10051
10052 2008-01-24  Simon Josefsson  <simon@josefsson.org>
10053
10054         * modules/sockets: New module, can be used to call WSA_Startup and
10055         WSA_Cleanup when needed.
10056
10057         * lib/sockets.h, lib/sockets.c: New files.
10058
10059         * m4/sockets.m4: New file.
10060
10061         * tests/test-sockets.c: New file.
10062
10063 2008-01-19  Bruno Haible  <bruno@clisp.org>
10064
10065         * doc/posix-headers: Renamed from doc/headers.
10066         * doc/posix-functions: Renamed from doc/functions.
10067         * doc/gnulib.texi: Update.
10068
10069 2008-01-19  Bruno Haible  <bruno@clisp.org>
10070
10071         * doc/glibc-functions/strcasestr.texi: Include contents of
10072         doc/functions/strcasestr.texi, fixing the list of platforms.
10073         * doc/functions/strcasestr.texi: Remove file.
10074
10075 2008-01-19  Bruno Haible  <bruno@clisp.org>
10076
10077         * doc/glibc-functions/memmem.texi: Include contents of
10078         doc/functions/memmem.texi.
10079         * doc/functions/memmem.texi: Remove file.
10080
10081 2008-01-18  Bruno Haible  <bruno@clisp.org>
10082
10083         * doc/glibc-functions/*.texi: New files.
10084         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
10085         to use the new files.
10086
10087 2008-01-17  Bruno Haible  <bruno@clisp.org>
10088
10089         * tests/test-gethostname.c (main): Fix printf statement.
10090
10091 2008-01-17  Simon Josefsson  <simon@josefsson.org>
10092
10093         * modules/gethostname-tests: New file.
10094
10095         * tests/test-gethostname.c: New file.
10096
10097 2008-01-17  Simon Josefsson  <simon@josefsson.org>
10098
10099         * lib/gethostname.c: Include string.h unconditionally, strncpy is
10100         used by the UNAME case.  Reported by Bruno Haible
10101         <bruno@clisp.org>.
10102
10103 2008-01-17  Eric Blake  <ebb9@byu.net>
10104
10105         Convert c-strcasestr to be more efficient.
10106         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
10107         (Depends-on): Add c-strcase, remove malloca, strnlen.
10108         * tests/test-c-strcasestr.c (main): Enhance test.
10109         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
10110
10111 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
10112
10113         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
10114         Use it in creating po/Makevars.
10115
10116 2008-01-15  Simon Josefsson  <simon@josefsson.org>
10117
10118         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
10119         Applications that requires it should initialize libgcrypt
10120         manually.
10121
10122 2008-01-16  Simon Josefsson  <simon@josefsson.org>
10123
10124         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
10125
10126 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
10127
10128         Fix problem with getdate on mingw32 reported by Simon Josefsson
10129         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
10130         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
10131         tzname", when deciding whether to declare tzname.
10132         * lib/strftime.c (tzname): Likewise.
10133
10134 2008-01-15  Bruno Haible  <bruno@clisp.org>
10135
10136         Work around a MacOS X 10.5 bug in frexpl().
10137         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
10138         * doc/functions/frexpl.texi: Document the bug.
10139         Reported by Elias Pipping <pipping@gentoo.org>.
10140
10141 2008-01-14  Eric Blake  <ebb9@byu.net>
10142
10143         Touch up previous patch.
10144         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
10145         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
10146
10147         Convert strcasestr module to use Two-Way algorithm.
10148         * modules/strcasestr-simple: New module, based on the old
10149         strcasestr, but with Two-Way rather than KMP.
10150         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
10151         * lib/string.in.h (rpl_strcasestr): Declare.
10152         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
10153         performance.
10154         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
10155         * modules/string (Makefile.am): Support strcasestr.
10156         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
10157         * modules/strcasestr-tests (Depends-on): Check for alarm.
10158         * tests/test-strcasestr.c: Augment test.
10159         * lib/str-two-way.h: Clean up stray macro.
10160         * NEWS: Document new module.
10161         * MODULES.html.sh (string handling): Likewise.
10162         * doc/functions/strcasestr.texi: New file.
10163         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
10164         here, since it is not a POSIX function.
10165
10166 2008-01-14  Colin Watson  <cjwatson@debian.org>
10167             Bruno Haible  <bruno@clisp.org>
10168
10169         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
10170         works fine; if not, set REPLACE_STRSIGNAL.
10171         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
10172         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10173         REPLACE_STRSIGNAL.
10174         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
10175         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
10176         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
10177
10178 2008-01-14  Bruno Haible  <bruno@clisp.org>
10179
10180         * modules/strsignal (Include): Change to <string.h>.
10181
10182 2008-01-14  Colin Watson  <cjwatson@debian.org>
10183
10184         * modules/argp (Notice): Add a notice recommending to change
10185         XGETTEXT_OPTIONS.
10186         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
10187
10188 2008-01-13  Colin Watson  <cjwatson@debian.org>
10189
10190         * modules/strsignal-tests: New file.
10191         * tests/test-strsignal.c: New file.
10192
10193         * lib/strsignal.c: New file, from glibc with modifications.
10194         * lib/siglist.h: New file, from glibc with modifications.
10195         * lib/string.in.h (strsignal): New declaration.
10196         * m4/strsignal.m4: New file.
10197         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10198         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
10199         * modules/strsignal: New file.
10200         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
10201         HAVE_DECL_STRSIGNAL.
10202
10203 2008-01-13  Bruno Haible  <bruno@clisp.org>
10204
10205         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
10206         locale encoding is not ASCII. Needed for OpenBSD 4.0.
10207         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
10208         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
10209
10210 2008-01-13  Bruno Haible  <bruno@clisp.org>
10211
10212         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
10213         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
10214         * lib/argp.h (__attribute__): Likewise.
10215         * lib/c-stack.c (__attribute__): Likewise.
10216         * lib/error.h (__attribute__): Likewise.
10217         * lib/fts.c (__attribute__): Likewise.
10218         * lib/openat.h (__attribute__): Likewise.
10219         * lib/stdio.in.h (__attribute__): Likewise.
10220         * lib/string.in.h (__attribute__): Likewise.
10221         * lib/utimens.c (__attribute__): Likewise.
10222         * lib/vasnprintf.h (__attribute__): Likewise.
10223         * lib/xalloc.h (__attribute__): Likewise.
10224         * lib/xprintf.h (__attribute__): Likewise.
10225         * lib/xstrtol.h (__attribute__): Likewise.
10226         * lib/xvasprintf.h (__attribute__): Likewise.
10227
10228 2008-01-12  Bruno Haible  <bruno@clisp.org>
10229
10230         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
10231         * doc/glibc-headers/a.out.texi: New file.
10232         * doc/glibc-headers/aliases.texi: New file.
10233         * doc/glibc-headers/alloca.texi: New file.
10234         * doc/glibc-headers/ar.texi: New file.
10235         * doc/glibc-headers/argp.texi: New file.
10236         * doc/glibc-headers/argz.texi: New file.
10237         * doc/glibc-headers/byteswap.texi: New file.
10238         * doc/glibc-headers/crypt.texi: New file.
10239         * doc/glibc-headers/endian.texi: New file.
10240         * doc/glibc-headers/envz.texi: New file.
10241         * doc/glibc-headers/err.texi: New file.
10242         * doc/glibc-headers/error.texi: New file.
10243         * doc/glibc-headers/execinfo.texi: New file.
10244         * doc/glibc-headers/fpu_control.texi: New file.
10245         * doc/glibc-headers/fstab.texi: New file.
10246         * doc/glibc-headers/fts.texi: New file.
10247         * doc/glibc-headers/getopt.texi: New file.
10248         * doc/glibc-headers/ieee754.texi: New file.
10249         * doc/glibc-headers/ifaddrs.texi: New file.
10250         * doc/glibc-headers/libintl.texi: New file.
10251         * doc/glibc-headers/mcheck.texi: New file.
10252         * doc/glibc-headers/mntent.texi: New file.
10253         * doc/glibc-headers/obstack.texi: New file.
10254         * doc/glibc-headers/paths.texi: New file.
10255         * doc/glibc-headers/printf.texi: New file.
10256         * doc/glibc-headers/pty.texi: New file.
10257         * doc/glibc-headers/resolv.texi: New file.
10258         * doc/glibc-headers/shadow.texi: New file.
10259         * doc/glibc-headers/sysexits.texi: New file.
10260         * doc/glibc-headers/ttyent.texi: New file.
10261
10262 2008-01-12  Jim Meyering  <meyering@redhat.com>
10263
10264         announce-gen: emit Gnulib's git-based version string.
10265         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
10266         New option --gnulib-version=V, where V is expected to be
10267         the output of running git describe in the gnulib directory.
10268         (get_tool_versions): Request feedback on xdelta.  I suspect it's
10269         not useful, and plan to stop publishing an xdelta file with each
10270         coreutils release.
10271
10272         * build-aux/announce-gen: Also check for lzma-compressed files.
10273
10274 2008-01-11  Bruno Haible  <bruno@clisp.org>
10275
10276         * tests/test-memmem.c (main): Increase maximum allowed time.
10277         * tests/test-strstr.c (main): Likewise.
10278
10279 2008-01-11  Bruno Haible  <bruno@clisp.org>
10280
10281         * doc/functions/memmem.texi: Add more precisions about platforms.
10282         * doc/functions/strstr.texi: Likewise.
10283
10284 2008-01-10  Eric Blake  <ebb9@byu.net>
10285
10286         * m4/strstr.m4: Delete cruft from copy-n-paste.
10287         Reported by Bruno Haible.
10288
10289 2008-01-10  Bruno Haible  <bruno@clisp.org>
10290
10291         Make c-strstr rely on strstr.
10292         * lib/c-strstr.c: Don't include str-kmp.h.
10293         (c_strstr): Define in terms of strstr.
10294         * modules/c-strstr (Files): Remove lib/str-kmp.h.
10295         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
10296
10297 2008-01-10  Bruno Haible  <bruno@clisp.org>
10298
10299         * doc/gnulib.texi (String Functions in C Locale): New section.
10300         * doc/c-ctype.texi: New file.
10301         * doc/c-strcase.texi: New file.
10302         * doc/c-strcaseeq.texi: New file.
10303         * doc/c-strcasestr.texi: New file.
10304         * doc/c-strstr.texi: New file.
10305         * doc/c-strtod.texi: New file.
10306         * doc/c-strtold.texi: New file.
10307
10308 2008-01-10  Eric Blake  <ebb9@byu.net>
10309
10310         * lib/relocatable.h: Fix a comment.
10311
10312 2008-01-10  Eric Blake  <ebb9@byu.net>
10313
10314         Share two-way algorithm.
10315         * lib/str-two-way.h: New file, merged from...
10316         * lib/memmem.c: ...here...
10317         * lib/strstr.c: ...and here.
10318         * modules/memmem (Files): Use it.
10319         * modules/strstr (Files): Likewise.
10320
10321         Avoid quadratic strstr implementations.
10322         * lib/strstr.c: New file.
10323         * m4/strstr.m4: Likewise.
10324         * modules/strstr: Likewise.
10325         * modules/strstr-tests: Likewise.
10326         * tests/test-strstr.c: Likewise.
10327         * lib/string.in.h (rpl_strstr): Declare.
10328         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
10329         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
10330         * modules/string (Makefile.am): Likewise.
10331         * MODULES.html.sh (string handling): Mention new module.
10332         * doc/functions/strstr.texi (strstr): Document the bug.
10333
10334 2008-01-10  Bruno Haible  <bruno@clisp.org>
10335
10336         * lib/relocatable.h (relocate): State whether result is freshly
10337         allocated or not.
10338         * lib/relocatable.c (relocate): Return a freshly allocated string
10339         instead of a pointer to a privately held string.
10340         Reported by Sylvain Beucler <beuc@gnu.org>.
10341
10342 2008-01-10  Colin Watson  <cjwatson@debian.org>
10343
10344         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
10345         s/S_ISNLK/S_ISLNK/.
10346
10347 2008-01-09  Bruno Haible  <bruno@clisp.org>
10348
10349         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
10350         and other files.
10351         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
10352         if it's only a guess.
10353         * modules/memmem: Simplify by depending on memmem-simple.
10354
10355 2008-01-09  Bruno Haible  <bruno@clisp.org>
10356
10357         Work around OpenBSD 4.0 tdelete() bug.
10358         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
10359         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
10360         macros and don't redefine the enum values.
10361         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
10362         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
10363         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
10364
10365 2008-01-09  Bruno Haible  <bruno@clisp.org>
10366
10367         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
10368         (main): Don't perform the tests if setlocale did not install a UTF-8
10369         locale. Needed on OpenBSD 4.0.
10370         * modules/wcwidth-tests (Depends-on): Add localcharset.
10371
10372 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10373
10374         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
10375         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
10376         * NEWS: announce this.
10377         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
10378
10379 2008-01-09  Simon Josefsson  <simon@josefsson.org>
10380         and Eric Blake  <ebb9@byu.net>
10381
10382         Add memmem-simple module.
10383         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
10384         (gl_FUNC_MEMMEM): Separate performance from presence checks.
10385         * modules/memmem-simple: New file.
10386         * modules/memmem (Description): Tweak.
10387         * MODULES.html.sh (string handling): Mention new module.
10388         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
10389         addressed by memmem-simple.
10390         * NEWS: Document the difference.
10391
10392 2008-01-09  Eric Blake  <ebb9@byu.net>
10393
10394         Give gcc some memmem optimization hints.
10395         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
10396         (strcasestr): Declare as pure.
10397         * modules/memmem (Maintainer): Claim my implementation.
10398
10399 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10400
10401         Support AIX 6.1 and higher.
10402         * build-aux/config.libpath: Likewise.
10403         * build-aux/config.rpath: Likewise.
10404
10405 2008-01-08  Jim Meyering  <meyering@redhat.com>
10406             Bruno Haible  <bruno@clisp.org>
10407
10408         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
10409         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
10410         Reported by Peter Fales in
10411         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
10412
10413 2008-01-08  Bruno Haible  <bruno@clisp.org>
10414
10415         * modules/unictype/category-of (Depends-on): Add
10416         unictype/category-none.
10417         * modules/unictype/category-and-tests (Depends-on): Add
10418         unictype/category-{L,N,Lu,Nd}.
10419         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
10420         * modules/unictype/category-or-tests (Depends-on): Add
10421         unictype/category-{L,N}.
10422         * modules/unictype/category-name-tests (Depends-on): Add
10423         unictype/category-{Z,Nl}.
10424         Reported by Simon Josefsson.
10425
10426 2008-01-08  Bruno Haible  <bruno@clisp.org>
10427
10428         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
10429         convention better.
10430         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
10431         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
10432         Reported by Peter Miller <millerp@canb.auug.org.au>.
10433
10434 2008-01-08  Eric Blake  <ebb9@byu.net>
10435
10436         Rewrite memmem to guarantee linear complexity without malloc.
10437         * lib/memmem.c (memmem): Use Two-Way rather than
10438         Knuth-Morris-Pratt, to allow O(1) space usage.
10439         (critical_factorization, two_way_short_needle)
10440         (two_way_long_needle): New functions.
10441         (knuth_morris_pratt): Delete.
10442         * modules/memmem (Depends-on): No longer need malloca or stdbool.
10443         Add stdint.
10444         * tests/test-memmem.c (main): Add tests for periodic needle and
10445         sublinear performance.
10446         * doc/functions/memmem.texi (memmem): Document other deficiencies
10447         in cygwin and older glibc.
10448
10449 2008-01-08  Bruno Haible  <bruno@clisp.org>
10450
10451         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
10452         augmentation.
10453
10454 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
10455
10456         Add a configure time option: --disable-acl.
10457         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
10458         AC_ARG_ENABLE(acl).
10459
10460 2008-01-06  Simon Josefsson  <simon@josefsson.org>
10461
10462         * tests/test-localename.c: Don't include obsolete "setenv.h".
10463
10464         * modules/localename-tests (Depends-on): Need unsetenv.
10465
10466 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10467
10468         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
10469
10470 2008-01-06  Colin Watson  <cjwatson@debian.org>
10471
10472         * users.txt: Add man-db.
10473
10474 2008-01-07  Bruno Haible  <bruno@clisp.org>
10475
10476         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
10477         previous section name.
10478
10479 2008-01-07  Bruno Haible  <bruno@clisp.org>
10480
10481         * lib/progname.c (set_program_name): Don't strip off a leading
10482         "lt-" prefix outside a .libs directory.
10483         Suggested by Paul Eggert.
10484
10485 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
10486             Bruno Haible  <bruno@clisp.org>
10487
10488         Improve memory cleanup in 'relocatable' module.
10489         * lib/relocatable.h (compute_curr_prefix): Change return type to
10490         'char *'.
10491         * lib/relocatable.c (compute_curr_prefix): Change return type to
10492         'char *'. Free curr_installdir after use.
10493         (relocate): Free curr_prefix_better after use.
10494         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
10495
10496 2008-01-01  Bruno Haible  <bruno@clisp.org>
10497
10498         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
10499         failure on older glibc systems.
10500         Reported by Peter Fales <psfales@alcatel-lucent.com>.
10501
10502 2008-01-05  Eric Blake  <ebb9@byu.net>
10503
10504         Avoid quadratic system memmem.
10505         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
10506         Reported by Ralf Wildenhues.
10507
10508         Fix memmem test for mingw.
10509         * modules/memmem-tests (configure.ac): Check for alarm.
10510         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
10511         it.
10512         * doc/functions/memmem.texi: New file.
10513         * doc/gnulib.texi (Function Substitutes): Add memmem.
10514         Reported by Bruno Haible.
10515
10516 2008-01-04  Bruno Haible  <bruno@clisp.org>
10517
10518         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
10519         Require gl_HEADER_STRINGS_H_DEFAULTS, not
10520         gl_HEADER_STRING_H_DEFAULTS.
10521
10522 2008-01-04  Eric Blake  <ebb9@byu.net>
10523
10524         Shorten duration of memmem test.
10525         * tests/test-memmem.c (main): Use alarm to declare failure if test
10526         is taking too long.
10527         Reported by Ralf Wildenhues.
10528
10529 2007-12-21  Simon Josefsson  <simon@josefsson.org>
10530
10531         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
10532         string, needed by strerror.
10533
10534 2008-01-03  Colin Watson  <cjwatson@debian.org>
10535             Bruno Haible  <bruno@clisp.org>
10536
10537         * doc/gnulib-tool.texi (Localization): New section.
10538
10539 2008-01-02  Bruno Haible  <bruno@clisp.org>
10540
10541         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
10542         variables to 'unsigned char *' type.
10543         Reported by Paul Eggert.
10544
10545 2008-01-02  Jim Meyering  <jim@meyering.net>
10546
10547         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
10548
10549 2007-12-31  Jim Meyering  <jim@meyering.net>
10550
10551         Avoid use of private FTS type name.
10552         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
10553
10554 2007-12-30  Karl Berry  <karl@gnu.org>
10555
10556         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
10557         work around defect in Texinfo and/or the standalone Info browser.
10558
10559 2007-12-30  Bruno Haible  <bruno@clisp.org>
10560
10561         Unify 5 copies of the KMP code.
10562         * lib/str-kmp.h: New file.
10563         * lib/c-strcasestr.c: Include str-kmp.h.
10564         (knuth_morris_pratt): Remove function.
10565         (c_strcasestr): Update.
10566         * lib/c-strstr.c: Include str-kmp.h.
10567         (knuth_morris_pratt): Remove function.
10568         (c_strcasestr): Update.
10569         * lib/mbscasestr.c: Include str-kmp.h.
10570         (knuth_morris_pratt_unibyte): Remove function.
10571         * lib/mbsstr.c: Include str-kmp.h.
10572         (knuth_morris_pratt_unibyte): Remove function.
10573         * lib/strcasestr.c: Include str-kmp.h.
10574         (knuth_morris_pratt): Remove function.
10575         (strcasestr): Update.
10576         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
10577         * modules/c-strstr (Files): Likewise.
10578         * modules/mbscasestr (Files): Likewise.
10579         * modules/mbsstr (Files): Likewise.
10580         * modules/strcasestr (Files): Likewise.
10581         Suggested by Paul Eggert.
10582
10583 2007-12-30  Bruno Haible  <bruno@clisp.org>
10584
10585         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
10586         defined.
10587
10588 2007-12-30  Bruno Haible  <bruno@clisp.org>
10589
10590         * lib/xmalloca.h: Include xalloc.h.
10591         (xnmalloca): New macro.
10592
10593 2007-12-30  Bruno Haible  <bruno@clisp.org>
10594
10595         * lib/malloca.h (nmalloca): New macro.
10596         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
10597         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
10598         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
10599         knuth_morris_pratt_multibyte): Likewise.
10600         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
10601         knuth_morris_pratt_multibyte): Likewise.
10602         * lib/memmem.c (knuth_morris_pratt): Likewise.
10603         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
10604
10605 2007-12-25  Bruno Haible  <bruno@clisp.org>
10606
10607         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
10608         * lib/glob.c: Don't include openat.h.
10609         (link_exists2_p): Add back the code that deals with the
10610         !GLOB_ALTDIRFUNC case.
10611         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
10612         let it do the filename concatenation.
10613         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
10614         * modules/glob (Depends-on): Remove openat.
10615
10616 2007-12-31  Bruno Haible  <bruno@clisp.org>
10617
10618         * modules/dirfd (License): Change to LGPLv2+.
10619         Approved by Jim Meyering.
10620
10621 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
10622
10623         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
10624         when multiplying M by sizeof (size_t).
10625
10626 2007-12-10  Martin Lambers  <marlam@marlam.de>
10627
10628         Override getpagesize on mingw.
10629         * lib/getpagesize.c: New file.
10630         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
10631         * modules/getpagesize (Files): Add lib/getpagesize.c.
10632         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
10633         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
10634         REPLACE_GETPAGESIZE.
10635         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
10636
10637 2007-12-25  Bruno Haible  <bruno@clisp.org>
10638
10639         * modules/localcharset (Notice): New field.
10640         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
10641         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
10642
10643 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
10644             Bruno Haible  <bruno@clisp.org>
10645
10646         Avoid using the syntax symbol() in formatted documentation.
10647         * MODULES.html.sh (func_module): When replacing symbol() with a
10648         hyperlink, remove the parentheses. Show an error if some remain.
10649         Recognize and render the '...' syntax.
10650         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
10651         Rework. Add paragraph about GCC's inlining.
10652         * doc/alloca.texi: Likewise.
10653         * doc/error.texi: Remove parentheses from symbol reference.
10654         * doc/gnulib-intro.texi: Likewise.
10655         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
10656         * modules/fnmatch (Description): Reword to say "the ... function".
10657         * modules/full-read (Description): Likewise.
10658         * modules/full-write (Description): Likewise.
10659         * modules/safe-read (Description): Likewise.
10660         * modules/safe-write (Description): Likewise.
10661         * modules/strchrnul (Description): Likewise.
10662         * modules/trim (Description): Likewise.
10663         * modules/error (Description): Remove parentheses from symbol
10664         references.
10665         * modules/verror (Description): Likewise.
10666         Reported by Karl Berry.
10667
10668 2007-12-25  Bruno Haible  <bruno@clisp.org>
10669
10670         Fixup after 2007-10-16 commit.
10671         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
10672
10673 2007-12-24  Bruno Haible  <bruno@clisp.org>
10674
10675         Make --enable-relocatable work with DESTDIR.
10676         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
10677         to compute installdir from destprog.
10678         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
10679         also set the RELOC_DESTDIR variable.
10680         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
10681
10682 2007-12-24  Bruno Haible  <bruno@clisp.org>
10683
10684         Fix link error due to xalloc_die().
10685         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
10686         of xreadlink.
10687         * lib/relocwrapper.c: Update comments.
10688         * build-aux/install-reloc: Remove xreadlink.c from file list.
10689         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
10690         xreadlink.c.
10691         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
10692
10693 2007-12-24  Bruno Haible  <bruno@clisp.org>
10694
10695         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
10696         * lib/setenv.h: Remove file.
10697         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
10698         lib/setenv.h.
10699         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
10700         (Depends-on): Add stdlib.
10701         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
10702         gl_FUNC_UNSETENV.
10703         (Include): Replace setenv.h with <stdlib.h>.
10704         * modules/unsetenv: New file.
10705         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
10706         * lib/unsetenv.c: Include <stdlib.h> first.
10707         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
10708         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
10709         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
10710         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
10711         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
10712         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
10713         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
10714         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
10715         * doc/functions/unsetenv.texi: Update.
10716         * modules/xsetenv (Depends-on): Add unsetenv.
10717         * modules/getdate (Depends-on): Likewise.
10718         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
10719         * lib/xsetenv.c: Don't include setenv.h.
10720         * lib/getdate.y: Likewise.
10721         * lib/relocwrapper.c: Likewise.
10722         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
10723         (Depends-on): Add stdlib.
10724         * NEWS: Mention the changes.
10725         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
10726
10727 2007-12-23  Bruno Haible  <bruno@clisp.org>
10728
10729         * lib/memmem.c (memmem): Use lowercase variable names. Tab
10730         indentation.
10731
10732 2007-12-23  Bruno Haible  <bruno@clisp.org>
10733
10734         * lib/c-strcasestr.c: Add more comments.
10735         * lib/c-strstr.c: Likewise.
10736         * lib/mbscasestr.c: Likewise.
10737         * lib/mbsstr.c: Likewise.
10738         * lib/strcasestr.c: Likewise.
10739         * lib/memmem.c: Likewise.
10740
10741 2007-12-23  Bruno Haible  <bruno@clisp.org>
10742
10743         * tests/test-memmem.c: Include <string.h> first.
10744
10745 2007-12-22  Bruno Haible  <bruno@clisp.org>
10746
10747         * gnulib-tool (func_create_testdir): Change $auxdir while generating
10748         the contents of $testsbase.
10749         Reported by Ralf Wildenhues.
10750
10751 2007-12-22  Bruno Haible  <bruno@clisp.org>
10752
10753         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
10754         two variables local_ldadd_before, local_ldadd_last.
10755
10756 2007-12-20  Eric Blake  <ebb9@byu.net>
10757
10758         Work around circular library issue when cross-compiling.
10759         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
10760         that progname.o does not need to pull in rpl_memcmp.
10761
10762 2007-12-19  Eric Blake  <ebb9@byu.net>
10763
10764         Fix memmem to avoid O(n^2) worst-case complexity.
10765         * lib/memmem.c (knuth_morris_pratt): New function.
10766         (memmem): Use it if first few naive iterations fail.
10767         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
10768         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
10769         * modules/memchr (License): Likewise.
10770         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
10771         malloca.
10772         * tests/test-memmem.c: Rewrite, borrowing ideas from
10773         test-mbsstr1.c; the old version wouldn't even compile!
10774         * modules/memmem-tests: New file.
10775         * lib/string.in.h (rpl_memmem): Add declaration.
10776         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
10777         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
10778         REPLACE_MEMMEM.
10779
10780 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
10781
10782         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
10783         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
10784         before any system include files, and undef after them all.  This
10785         should fix a problem on VMS reported by John E. Malmberg in
10786         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
10787
10788 2007-12-17  Eric Blake  <ebb9@byu.net>
10789
10790         Revert addition of verify, for BSD/OS.
10791         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
10792         can't handle large files, for the sake of obsolete platforms.
10793         * modules/fseeko (Depends-on): Remove verify.
10794         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
10795         * doc/functions/ftello.texi (ftello): Likewise.
10796         * doc/functions/fgetpos.texi (fgetpos): Likewise.
10797         Reported by Larry Jones.
10798
10799 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
10800
10801         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
10802         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
10803
10804 2007-12-17  Jim Meyering  <meyering@redhat.com>
10805
10806         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
10807         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
10808         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
10809         * modules/getcwd (Depends-on): Add openat.
10810         Reported by Petr Salinger.
10811
10812 2007-12-17  Bruno Haible  <bruno@clisp.org>
10813
10814         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
10815         avoid a segmentation fault of the configure test on x86_64 systems.
10816
10817 2007-12-15  Jim Meyering  <meyering@redhat.com>
10818
10819         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
10820
10821 2007-12-13  Eric Blake  <ebb9@byu.net>
10822
10823         Another fseek test.
10824         * tests/test-fseek.c (main): Also test ungetc handling.
10825         * tests/test-fseeko.c (main): Likewise.
10826         * modules/fseeko (Depends-on): Add verify.
10827         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
10828         large.
10829         Reported by Larry Jones.
10830
10831         Fix fseeko on mingw.
10832         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
10833         seek.
10834
10835         Beef up fseek tests.
10836         * tests/test-fseek.c (main): Also test eof handling.
10837         * tests/test-fseeko.c (main): Likewise.
10838         Reported by Larry Jones.
10839
10840 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
10841
10842         Fix fseeko on BSD-based platforms.
10843         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
10844         successful seek.
10845
10846 2007-12-12  Eric Blake  <ebb9@byu.net>
10847
10848         Allow circular dependency of separate libtests.a
10849         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
10850         when use_libtests.
10851
10852 2007-12-11  Eric Blake  <ebb9@byu.net>
10853
10854         Fix bug with -0.0L in previous patch.
10855         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
10856         * tests/test-isnan.c (main): Also test on zeroes.
10857         * tests/test-isnanf.c (main): Likewise.
10858         * tests/test-isnanl.h (main): Likewise.
10859
10860         Detect pseudo-denormals on x86 even when cross-compiling.
10861         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
10862         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
10863         invalid bit patterns that happen to satisfy ==.
10864
10865         Avoid link failures with separate libtests.a.
10866         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
10867         last, to satisfy circular dependencies.
10868
10869 2007-12-11  Eric Blake  <ebb9@byu.net>
10870         and Bruno Haible  <bruno@clisp.org>
10871
10872         Fix OpenBSD 4.0 <float.h> handling of long double.
10873         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
10874         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
10875         * doc/headers/float.texi (float.h): Document OpenBSD bug.
10876
10877 2007-12-11  Jim Meyering  <meyering@redhat.com>
10878
10879         * users.txt: Add libvirt.
10880
10881         Support versions of autoconf prior to 2.59c.
10882         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
10883         if it is not already defined.
10884
10885 2007-12-09  Bruno Haible  <bruno@clisp.org>
10886
10887         Let 'gnulib-tool --import' collect sources needed for the tests in
10888         tests/ rather than in lib/.
10889         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
10890         argument. If true, add rules to generate libtests.a, and put libtests.a
10891         into $(LDADD). Consider source files in subdirectories and set
10892         uses_subdirs.
10893         (func_emit_initmacro_start, func_emit_initmacro_end,
10894         func_emit_initmacro_done): Pass all arguments explicitly.
10895         (func_import): Determine two module lists main_modules,
10896         testsrelated_modules. Determine use_libtests. Determine two variables
10897         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
10898         instead of just sed_transform_lib_file. Determine two variables
10899         main_files and testsrelated_files. Compute 'files' as the union of
10900         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
10901         func_add_or_update. In the generated gnulib-comp.m4, collect the
10902         object files for tests/ in different variables than those for lib/.
10903         Substitute LIBTESTS_LIBDEPS.
10904         (func_create_testdir): Combine the uses_subdirs results from
10905         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
10906
10907 2007-12-09  Bruno Haible  <bruno@clisp.org>
10908
10909         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
10910         the build-aux directory.
10911
10912 2007-12-09  Bruno Haible  <bruno@clisp.org>
10913
10914         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
10915         introduced on 2006-09-09.
10916
10917 2007-12-07  Jim Meyering  <meyering@redhat.com>
10918
10919         Let these macros work also with autoconf-2.59.
10920         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
10921         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
10922         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
10923
10924 2007-12-06  Jim Meyering  <meyering@redhat.com>
10925
10926         Avoid a configure-time syntax error in gl_FUNC_ACL.
10927         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
10928         function in each branch, before testing the cache variable.
10929
10930 2007-12-04  Eric Blake  <ebb9@byu.net>
10931
10932         Make scripts executable.
10933         * build-aux/config.guess: Add execute permissions.
10934         * build-aux/config.sub: Likewise.
10935         * build-aux/gendocs.sh: Likewise.
10936
10937         Fix frexp on mingw.
10938         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
10939         cross-compiling.
10940         * doc/functions/frexp.texi (frexp): Document the bug.
10941
10942         Make cygwin fseeko check more reliable.
10943         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
10944         version numbers, rather than unrelated feature check.
10945         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
10946         * doc/functions/ftello.texi (ftello): Likewise.
10947         Reported by Bruno Haible.
10948
10949         * m4/strerror.m4: Bump version number.
10950
10951 2007-12-03  Bruno Haible  <bruno@clisp.org>
10952
10953         * doc/functions/mprotect.texi: Mention the mingw problem.
10954
10955 2007-12-03  Eric Blake  <ebb9@byu.net>
10956
10957         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
10958         REPLACE_STRERROR is initialized before this macro.
10959
10960 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
10961
10962         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
10963         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
10964         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
10965         put -lsec in even for programs other than 'ls'.  This fixes a problem
10966         for gettext reported by Bruno Haible in
10967         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
10968         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
10969         Add support for Solaris 10.  This isn't efficient, but should get the
10970         job done for now.
10971
10972 2007-12-03  James Youngman  <jay@gnu.org>
10973
10974         * doc/regexprops-generic.texi: change "an close-group" to "a
10975         close-group" and "illegal" to "not allowed".
10976
10977 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10978
10979         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
10980         pr_byname.h. Needed for the rare case when the maintainer has done
10981         "make maintainer-clean" in the source directory and then attempts a
10982         build outside the source directory.
10983         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
10984         scripts_byname.h.
10985
10986 2007-12-02  Martin Lambers <marlam@marlam.de>
10987             Bruno Haible  <bruno@clisp.org>
10988
10989         * lib/getpagesize.h: Remove file.
10990         * lib/unistd.in.h: Include declaration of getpagesize here.
10991         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
10992         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
10993         HAVE_SYS_PARAM_H.
10994         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
10995         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
10996         * modules/getpagesize (Files): Remove lib/getpagesize.h.
10997         (Depends-on): Add unistd.
10998         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10999         (Include): Use <unistd.h> instead of getpagesize.h.
11000         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
11001         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
11002         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
11003         gl_GETPAGESIZE invocation, already handled by module dependency.
11004         * lib/pagealign_alloc.c: Don't include getpagesize.h.
11005
11006 2007-12-02  Bruno Haible  <bruno@clisp.org>
11007
11008         * modules/strings-tests: New file.
11009         * tests/test-strings.c: New file.
11010
11011         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
11012         * lib/strings.in.h: New file.
11013         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
11014         * m4/strings_h.m4: New file.
11015         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
11016         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
11017         * modules/strings: New file.
11018         * modules/string (Makefile.am): Update.
11019         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
11020         Reported by Karl Berry.
11021
11022 2007-12-01  Eric Blake  <ebb9@byu.net>
11023
11024         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
11025         accomodate fix in cygwin 1.5.25.
11026
11027 2007-12-01  Jim Meyering  <meyering@redhat.com>
11028
11029         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
11030         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
11031         that would inhibit utf8-optimization of a regexp containing line-
11032         or buffer-anchors, e.g., `^', `$'.
11033
11034 2007-11-30  Bruno Haible  <bruno@clisp.org>
11035
11036         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
11037         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
11038         glthread_recursive_lock_init.
11039         * lib/lock.c (glthread_recursive_lock_init)
11040         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
11041         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11042
11043 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
11044
11045         New function qset_acl, like set_acl but with syscall semantics.
11046         * lib/acl.h (qset_acl): New decl.
11047         * lib/acl.c (qset_acl): New function.
11048         (set_acl): Use new function.  Use more-consistent diagnostics.
11049
11050 2007-11-28  Jim Meyering  <meyering@redhat.com>
11051
11052         * modules/physmem (License): Change from GPL to LGPLv2+.
11053
11054 2007-11-26  Bruno Haible  <bruno@clisp.org>
11055
11056         * lib/vasnprintf.c (decode_long_double): Don't abort if the
11057         'long double' type has excess precision.
11058         Reported by Jim Meyering in
11059         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
11060
11061 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11062
11063         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
11064         Sync from <http://gnu.org/licenses>.
11065         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
11066         with license text from same location.
11067         * doc/maintain.texi, doc/standards.texi:  Sync from
11068         <http://savannah.gnu.org/projects/gnustandards>.
11069
11070 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
11071         and Jim Meyering  <meyering@redhat.com>
11072
11073         Adjust getdate' grammar to accept a slightly more regular language.
11074         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
11075         Before, the former was rejected.
11076         * lib/getdate.y (digits_to_date_time): New function, factored
11077         out of ...
11078         (number): ...here.  Just call digits_to_date_time.
11079         (hybrid): New non-terminal to handle an <unsigned number,
11080         signed relative offset> sequence consistently.
11081
11082 2007-11-18  Jim Meyering  <meyering@redhat.com>
11083
11084         Pull my changes from coreutils:
11085         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
11086         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
11087         use of $gnulib_tool_option_extras, so that it's separated from the
11088         preceding argument.
11089
11090         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
11091         * build-aux/bootstrap (cp_mark_as_generated): Create any required
11092         parent destination directories before copying a file into place.
11093
11094 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
11095
11096         bootstrap: work also with 4-argument variant of AC_INIT
11097         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
11098
11099 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
11100
11101         Port test-getaddrinfo to Solaris.
11102         Problem reported by Bruno Haible in
11103         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
11104         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
11105         explanation of setting 'hints'.
11106         Don't reject an implementation merely because it returns EAI_SERVICE.
11107         (EAI_SERVICE): Define to 0 if not defined.
11108
11109 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
11110
11111         The license of gnu-make and posix-shell is now "GPLed build tool".
11112         * modules/gnu-make (License): Likewise.
11113         * modules/posix-shell (License): Likewise.
11114
11115         New module posix-shell, for determining a POSIX shell
11116         or perhaps something that is close enough to a POSIX shell.
11117         * m4/posix-shell.m4: New file.
11118         * modules/posix-shell: New file.
11119
11120         * MODULES.html.sh: Mention new module.
11121
11122         New module gnu-make, for determining whether we're using GNU Make.
11123         * m4/gnu-make.m4: New file.
11124         * modules/gnu-make: New file.
11125         * MODULES.html.sh: Mention new module.
11126
11127 2007-11-14  Jim Meyering  <meyering@redhat.com>
11128
11129         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
11130         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
11131         use this macro to create a function _definition_.
11132         Remove useless "#undef ARGMATCH_DIE".
11133
11134 2007-11-14  Bruno Haible  <bruno@clisp.org>
11135
11136         * lib/config.charset: Update for OpenBSD 4.1.
11137         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
11138
11139 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
11140
11141         Document 64-bit #if problems in stdint.texi.
11142         * doc/headers/stdint.texi (stdint.h): Mention problems with
11143         64-bit-#if, and how to work around them.
11144
11145         Don't insist on 'long long int' support in the preprocessor.  It
11146         breaks too many things.  For example, PRIdMAX still uses a 'long
11147         long int' format with the latest Sun compiler, even though
11148         HAVE_LONG_LONG_INT isn't defined due to that compiler's
11149         preprocessor problem.  This causes the latest coreutils to dump
11150         core on Solaris 10 sparc with the Sun C compiler.
11151         Instead, fix the 2007-10-16 problem in a different way, by evaluating
11152         the troublesome expressions at configure-time, not at #if-time.
11153         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
11154         preprocessor.
11155         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
11156         compile-time C checks, done at 'configure'-time.
11157         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
11158         * modules/inttypes (Makefile): Substitute the new symbols that
11159         gl_INTTYPES_H now generates.
11160         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
11161
11162 2007-11-12  Bruno Haible  <bruno@clisp.org>
11163
11164         Tests for Unicode character classification functions.
11165
11166         * modules/unictype/bidicategory-byname-tests: New file.
11167         * modules/unictype/bidicategory-name-tests: New file.
11168         * modules/unictype/bidicategory-of-tests: New file.
11169         * modules/unictype/bidicategory-test-tests: New file.
11170         * modules/unictype/block-list-tests: New file.
11171         * modules/unictype/block-of-tests: New file.
11172         * modules/unictype/block-test-tests: New file.
11173         * modules/unictype/category-C-tests: New file.
11174         * modules/unictype/category-Cc-tests: New file.
11175         * modules/unictype/category-Cf-tests: New file.
11176         * modules/unictype/category-Cn-tests: New file.
11177         * modules/unictype/category-Co-tests: New file.
11178         * modules/unictype/category-Cs-tests: New file.
11179         * modules/unictype/category-L-tests: New file.
11180         * modules/unictype/category-Ll-tests: New file.
11181         * modules/unictype/category-Lm-tests: New file.
11182         * modules/unictype/category-Lo-tests: New file.
11183         * modules/unictype/category-Lt-tests: New file.
11184         * modules/unictype/category-Lu-tests: New file.
11185         * modules/unictype/category-M-tests: New file.
11186         * modules/unictype/category-Mc-tests: New file.
11187         * modules/unictype/category-Me-tests: New file.
11188         * modules/unictype/category-Mn-tests: New file.
11189         * modules/unictype/category-N-tests: New file.
11190         * modules/unictype/category-Nd-tests: New file.
11191         * modules/unictype/category-Nl-tests: New file.
11192         * modules/unictype/category-No-tests: New file.
11193         * modules/unictype/category-P-tests: New file.
11194         * modules/unictype/category-Pc-tests: New file.
11195         * modules/unictype/category-Pd-tests: New file.
11196         * modules/unictype/category-Pe-tests: New file.
11197         * modules/unictype/category-Pf-tests: New file.
11198         * modules/unictype/category-Pi-tests: New file.
11199         * modules/unictype/category-Po-tests: New file.
11200         * modules/unictype/category-Ps-tests: New file.
11201         * modules/unictype/category-S-tests: New file.
11202         * modules/unictype/category-Sc-tests: New file.
11203         * modules/unictype/category-Sk-tests: New file.
11204         * modules/unictype/category-Sm-tests: New file.
11205         * modules/unictype/category-So-tests: New file.
11206         * modules/unictype/category-Z-tests: New file.
11207         * modules/unictype/category-Zl-tests: New file.
11208         * modules/unictype/category-Zp-tests: New file.
11209         * modules/unictype/category-Zs-tests: New file.
11210         * modules/unictype/category-and-not-tests: New file.
11211         * modules/unictype/category-and-tests: New file.
11212         * modules/unictype/category-byname-tests: New file.
11213         * modules/unictype/category-name-tests: New file.
11214         * modules/unictype/category-none-tests: New file.
11215         * modules/unictype/category-of-tests: New file.
11216         * modules/unictype/category-or-tests: New file.
11217         * modules/unictype/category-test-withtable-tests: New file.
11218         * modules/unictype/combining-class-tests: New file.
11219         * modules/unictype/ctype-alnum-tests: New file.
11220         * modules/unictype/ctype-alpha-tests: New file.
11221         * modules/unictype/ctype-blank-tests: New file.
11222         * modules/unictype/ctype-cntrl-tests: New file.
11223         * modules/unictype/ctype-digit-tests: New file.
11224         * modules/unictype/ctype-graph-tests: New file.
11225         * modules/unictype/ctype-lower-tests: New file.
11226         * modules/unictype/ctype-print-tests: New file.
11227         * modules/unictype/ctype-punct-tests: New file.
11228         * modules/unictype/ctype-space-tests: New file.
11229         * modules/unictype/ctype-upper-tests: New file.
11230         * modules/unictype/ctype-xdigit-tests: New file.
11231         * modules/unictype/decimal-digit-tests: New file.
11232         * modules/unictype/digit-tests: New file.
11233         * modules/unictype/mirror-tests: New file.
11234         * modules/unictype/numeric-tests: New file.
11235         * modules/unictype/property-alphabetic-tests: New file.
11236         * modules/unictype/property-ascii-hex-digit-tests: New file.
11237         * modules/unictype/property-bidi-arabic-digit-tests: New file.
11238         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
11239         * modules/unictype/property-bidi-block-separator-tests: New file.
11240         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
11241         * modules/unictype/property-bidi-common-separator-tests: New file.
11242         * modules/unictype/property-bidi-control-tests: New file.
11243         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
11244         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
11245         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
11246         * modules/unictype/property-bidi-european-digit-tests: New file.
11247         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
11248         * modules/unictype/property-bidi-left-to-right-tests: New file.
11249         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
11250         * modules/unictype/property-bidi-other-neutral-tests: New file.
11251         * modules/unictype/property-bidi-pdf-tests: New file.
11252         * modules/unictype/property-bidi-segment-separator-tests: New file.
11253         * modules/unictype/property-bidi-whitespace-tests: New file.
11254         * modules/unictype/property-byname-tests: New file.
11255         * modules/unictype/property-combining-tests: New file.
11256         * modules/unictype/property-composite-tests: New file.
11257         * modules/unictype/property-currency-symbol-tests: New file.
11258         * modules/unictype/property-dash-tests: New file.
11259         * modules/unictype/property-decimal-digit-tests: New file.
11260         * modules/unictype/property-default-ignorable-code-point-tests: New file.
11261         * modules/unictype/property-deprecated-tests: New file.
11262         * modules/unictype/property-diacritic-tests: New file.
11263         * modules/unictype/property-extender-tests: New file.
11264         * modules/unictype/property-format-control-tests: New file.
11265         * modules/unictype/property-grapheme-base-tests: New file.
11266         * modules/unictype/property-grapheme-extend-tests: New file.
11267         * modules/unictype/property-grapheme-link-tests: New file.
11268         * modules/unictype/property-hex-digit-tests: New file.
11269         * modules/unictype/property-hyphen-tests: New file.
11270         * modules/unictype/property-id-continue-tests: New file.
11271         * modules/unictype/property-id-start-tests: New file.
11272         * modules/unictype/property-ideographic-tests: New file.
11273         * modules/unictype/property-ids-binary-operator-tests: New file.
11274         * modules/unictype/property-ids-trinary-operator-tests: New file.
11275         * modules/unictype/property-ignorable-control-tests: New file.
11276         * modules/unictype/property-iso-control-tests: New file.
11277         * modules/unictype/property-join-control-tests: New file.
11278         * modules/unictype/property-left-of-pair-tests: New file.
11279         * modules/unictype/property-line-separator-tests: New file.
11280         * modules/unictype/property-logical-order-exception-tests: New file.
11281         * modules/unictype/property-lowercase-tests: New file.
11282         * modules/unictype/property-math-tests: New file.
11283         * modules/unictype/property-non-break-tests: New file.
11284         * modules/unictype/property-not-a-character-tests: New file.
11285         * modules/unictype/property-numeric-tests: New file.
11286         * modules/unictype/property-other-alphabetic-tests: New file.
11287         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
11288         * modules/unictype/property-other-grapheme-extend-tests: New file.
11289         * modules/unictype/property-other-id-continue-tests: New file.
11290         * modules/unictype/property-other-id-start-tests: New file.
11291         * modules/unictype/property-other-lowercase-tests: New file.
11292         * modules/unictype/property-other-math-tests: New file.
11293         * modules/unictype/property-other-uppercase-tests: New file.
11294         * modules/unictype/property-paired-punctuation-tests: New file.
11295         * modules/unictype/property-paragraph-separator-tests: New file.
11296         * modules/unictype/property-pattern-syntax-tests: New file.
11297         * modules/unictype/property-pattern-white-space-tests: New file.
11298         * modules/unictype/property-private-use-tests: New file.
11299         * modules/unictype/property-punctuation-tests: New file.
11300         * modules/unictype/property-quotation-mark-tests: New file.
11301         * modules/unictype/property-radical-tests: New file.
11302         * modules/unictype/property-sentence-terminal-tests: New file.
11303         * modules/unictype/property-soft-dotted-tests: New file.
11304         * modules/unictype/property-space-tests: New file.
11305         * modules/unictype/property-terminal-punctuation-tests: New file.
11306         * modules/unictype/property-test-tests: New file.
11307         * modules/unictype/property-titlecase-tests: New file.
11308         * modules/unictype/property-unassigned-code-value-tests: New file.
11309         * modules/unictype/property-unified-ideograph-tests: New file.
11310         * modules/unictype/property-uppercase-tests: New file.
11311         * modules/unictype/property-variation-selector-tests: New file.
11312         * modules/unictype/property-white-space-tests: New file.
11313         * modules/unictype/property-xid-continue-tests: New file.
11314         * modules/unictype/property-xid-start-tests: New file.
11315         * modules/unictype/property-zero-width-tests: New file.
11316         * modules/unictype/scripts-tests: New file.
11317         * modules/unictype/syntax-c-ident-tests: New file.
11318         * modules/unictype/syntax-c-whitespace-tests: New file.
11319         * modules/unictype/syntax-java-ident-tests: New file.
11320         * modules/unictype/syntax-java-whitespace-tests: New file.
11321         * tests/unictype/test-bidi_byname.c: New file.
11322         * tests/unictype/test-bidi_name.c: New file.
11323         * tests/unictype/test-bidi_of.c: New file.
11324         * tests/unictype/test-bidi_test.c: New file.
11325         * tests/unictype/test-block_list.c: New file.
11326         * tests/unictype/test-block_of.c: New file.
11327         * tests/unictype/test-block_test.c: New file.
11328         * tests/unictype/test-categ_and.c: New file.
11329         * tests/unictype/test-categ_and_not.c: New file.
11330         * tests/unictype/test-categ_byname.c: New file.
11331         * tests/unictype/test-categ_name.c: New file.
11332         * tests/unictype/test-categ_none.c: New file.
11333         * tests/unictype/test-categ_of.c: New file.
11334         * tests/unictype/test-categ_or.c: New file.
11335         * tests/unictype/test-categ_test_withtable.c: New file.
11336         * tests/unictype/test-combining.c: New file.
11337         * tests/unictype/test-decdigit.c: New file.
11338         * tests/unictype/test-digit.c: New file.
11339         * tests/unictype/test-mirror.c: New file.
11340         * tests/unictype/test-numeric.c: New file.
11341         * tests/unictype/test-pr_byname.c: New file.
11342         * tests/unictype/test-pr_test.c: New file.
11343         * tests/unictype/test-predicate-part1.h: New file.
11344         * tests/unictype/test-predicate-part2.h: New file.
11345         * tests/unictype/test-scripts.c: New file.
11346         * tests/unictype/test-sy_c_ident.c: New file.
11347         * tests/unictype/test-sy_java_ident.c: New file.
11348
11349         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
11350         for Unicode 5.0.0.
11351         * tests/unictype/test-categ_Cc.c: Likewise.
11352         * tests/unictype/test-categ_Cf.c: Likewise.
11353         * tests/unictype/test-categ_Cn.c: Likewise.
11354         * tests/unictype/test-categ_Co.c: Likewise.
11355         * tests/unictype/test-categ_Cs.c: Likewise.
11356         * tests/unictype/test-categ_L.c: Likewise.
11357         * tests/unictype/test-categ_Ll.c: Likewise.
11358         * tests/unictype/test-categ_Lm.c: Likewise.
11359         * tests/unictype/test-categ_Lo.c: Likewise.
11360         * tests/unictype/test-categ_Lt.c: Likewise.
11361         * tests/unictype/test-categ_Lu.c: Likewise.
11362         * tests/unictype/test-categ_M.c: Likewise.
11363         * tests/unictype/test-categ_Mc.c: Likewise.
11364         * tests/unictype/test-categ_Me.c: Likewise.
11365         * tests/unictype/test-categ_Mn.c: Likewise.
11366         * tests/unictype/test-categ_N.c: Likewise.
11367         * tests/unictype/test-categ_Nd.c: Likewise.
11368         * tests/unictype/test-categ_Nl.c: Likewise.
11369         * tests/unictype/test-categ_No.c: Likewise.
11370         * tests/unictype/test-categ_P.c: Likewise.
11371         * tests/unictype/test-categ_Pc.c: Likewise.
11372         * tests/unictype/test-categ_Pd.c: Likewise.
11373         * tests/unictype/test-categ_Pe.c: Likewise.
11374         * tests/unictype/test-categ_Pf.c: Likewise.
11375         * tests/unictype/test-categ_Pi.c: Likewise.
11376         * tests/unictype/test-categ_Po.c: Likewise.
11377         * tests/unictype/test-categ_Ps.c: Likewise.
11378         * tests/unictype/test-categ_S.c: Likewise.
11379         * tests/unictype/test-categ_Sc.c: Likewise.
11380         * tests/unictype/test-categ_Sk.c: Likewise.
11381         * tests/unictype/test-categ_Sm.c: Likewise.
11382         * tests/unictype/test-categ_So.c: Likewise.
11383         * tests/unictype/test-categ_Z.c: Likewise.
11384         * tests/unictype/test-categ_Zl.c: Likewise.
11385         * tests/unictype/test-categ_Zp.c: Likewise.
11386         * tests/unictype/test-categ_Zs.c: Likewise.
11387         * tests/unictype/test-ctype_alnum.c: Likewise.
11388         * tests/unictype/test-ctype_alpha.c: Likewise.
11389         * tests/unictype/test-ctype_blank.c: Likewise.
11390         * tests/unictype/test-ctype_cntrl.c: Likewise.
11391         * tests/unictype/test-ctype_digit.c: Likewise.
11392         * tests/unictype/test-ctype_graph.c: Likewise.
11393         * tests/unictype/test-ctype_lower.c: Likewise.
11394         * tests/unictype/test-ctype_print.c: Likewise.
11395         * tests/unictype/test-ctype_punct.c: Likewise.
11396         * tests/unictype/test-ctype_space.c: Likewise.
11397         * tests/unictype/test-ctype_upper.c: Likewise.
11398         * tests/unictype/test-ctype_xdigit.c: Likewise.
11399         * tests/unictype/test-decdigit.h: Likewise.
11400         * tests/unictype/test-digit.h: Likewise.
11401         * tests/unictype/test-numeric.h: Likewise.
11402         * tests/unictype/test-pr_alphabetic.c: Likewise.
11403         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
11404         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
11405         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
11406         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
11407         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
11408         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
11409         * tests/unictype/test-pr_bidi_control.c: Likewise.
11410         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
11411         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
11412         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
11413         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
11414         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
11415         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
11416         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
11417         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
11418         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
11419         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
11420         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
11421         * tests/unictype/test-pr_combining.c: Likewise.
11422         * tests/unictype/test-pr_composite.c: Likewise.
11423         * tests/unictype/test-pr_currency_symbol.c: Likewise.
11424         * tests/unictype/test-pr_dash.c: Likewise.
11425         * tests/unictype/test-pr_decimal_digit.c: Likewise.
11426         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
11427         * tests/unictype/test-pr_deprecated.c: Likewise.
11428         * tests/unictype/test-pr_diacritic.c: Likewise.
11429         * tests/unictype/test-pr_extender.c: Likewise.
11430         * tests/unictype/test-pr_format_control.c: Likewise.
11431         * tests/unictype/test-pr_grapheme_base.c: Likewise.
11432         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
11433         * tests/unictype/test-pr_grapheme_link.c: Likewise.
11434         * tests/unictype/test-pr_hex_digit.c: Likewise.
11435         * tests/unictype/test-pr_hyphen.c: Likewise.
11436         * tests/unictype/test-pr_id_continue.c: Likewise.
11437         * tests/unictype/test-pr_id_start.c: Likewise.
11438         * tests/unictype/test-pr_ideographic.c: Likewise.
11439         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
11440         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
11441         * tests/unictype/test-pr_ignorable_control.c: Likewise.
11442         * tests/unictype/test-pr_iso_control.c: Likewise.
11443         * tests/unictype/test-pr_join_control.c: Likewise.
11444         * tests/unictype/test-pr_left_of_pair.c: Likewise.
11445         * tests/unictype/test-pr_line_separator.c: Likewise.
11446         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
11447         * tests/unictype/test-pr_lowercase.c: Likewise.
11448         * tests/unictype/test-pr_math.c: Likewise.
11449         * tests/unictype/test-pr_non_break.c: Likewise.
11450         * tests/unictype/test-pr_not_a_character.c: Likewise.
11451         * tests/unictype/test-pr_numeric.c: Likewise.
11452         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
11453         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
11454         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
11455         * tests/unictype/test-pr_other_id_continue.c: Likewise.
11456         * tests/unictype/test-pr_other_id_start.c: Likewise.
11457         * tests/unictype/test-pr_other_lowercase.c: Likewise.
11458         * tests/unictype/test-pr_other_math.c: Likewise.
11459         * tests/unictype/test-pr_other_uppercase.c: Likewise.
11460         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
11461         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
11462         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
11463         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
11464         * tests/unictype/test-pr_private_use.c: Likewise.
11465         * tests/unictype/test-pr_punctuation.c: Likewise.
11466         * tests/unictype/test-pr_quotation_mark.c: Likewise.
11467         * tests/unictype/test-pr_radical.c: Likewise.
11468         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
11469         * tests/unictype/test-pr_soft_dotted.c: Likewise.
11470         * tests/unictype/test-pr_space.c: Likewise.
11471         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
11472         * tests/unictype/test-pr_titlecase.c: Likewise.
11473         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
11474         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
11475         * tests/unictype/test-pr_uppercase.c: Likewise.
11476         * tests/unictype/test-pr_variation_selector.c: Likewise.
11477         * tests/unictype/test-pr_white_space.c: Likewise.
11478         * tests/unictype/test-pr_xid_continue.c: Likewise.
11479         * tests/unictype/test-pr_xid_start.c: Likewise.
11480         * tests/unictype/test-pr_zero_width.c: Likewise.
11481         * tests/unictype/test-sy_c_whitespace.c: Likewise.
11482         * tests/unictype/test-sy_java_whitespace.c: Likewise.
11483
11484 2007-11-12  Bruno Haible  <bruno@clisp.org>
11485
11486         Unicode character classification functions.
11487         * lib/unictype.h: New file.
11488         * modules/unictype/base: New file.
11489         * modules/unictype/category-L: New file.
11490         * modules/unictype/category-Lu: New file.
11491         * modules/unictype/category-Ll: New file.
11492         * modules/unictype/category-Lt: New file.
11493         * modules/unictype/category-Lm: New file.
11494         * modules/unictype/category-Lo: New file.
11495         * modules/unictype/category-M: New file.
11496         * modules/unictype/category-Mn: New file.
11497         * modules/unictype/category-Mc: New file.
11498         * modules/unictype/category-Me: New file.
11499         * modules/unictype/category-N: New file.
11500         * modules/unictype/category-Nd: New file.
11501         * modules/unictype/category-Nl: New file.
11502         * modules/unictype/category-No: New file.
11503         * modules/unictype/category-P: New file.
11504         * modules/unictype/category-Pc: New file.
11505         * modules/unictype/category-Pd: New file.
11506         * modules/unictype/category-Ps: New file.
11507         * modules/unictype/category-Pe: New file.
11508         * modules/unictype/category-Pi: New file.
11509         * modules/unictype/category-Pf: New file.
11510         * modules/unictype/category-Po: New file.
11511         * modules/unictype/category-S: New file.
11512         * modules/unictype/category-Sm: New file.
11513         * modules/unictype/category-Sc: New file.
11514         * modules/unictype/category-Sk: New file.
11515         * modules/unictype/category-So: New file.
11516         * modules/unictype/category-Z: New file.
11517         * modules/unictype/category-Zs: New file.
11518         * modules/unictype/category-Zl: New file.
11519         * modules/unictype/category-Zp: New file.
11520         * modules/unictype/category-C: New file.
11521         * modules/unictype/category-Cc: New file.
11522         * modules/unictype/category-Cf: New file.
11523         * modules/unictype/category-Cs: New file.
11524         * modules/unictype/category-Co: New file.
11525         * modules/unictype/category-Cn: New file.
11526         * modules/unictype/category-or: New file.
11527         * modules/unictype/category-of: New file.
11528         * modules/unictype/category-test: New file.
11529         * modules/unictype/category-test-withtable: New file.
11530         * modules/unictype/category-byname: New file.
11531         * modules/unictype/category-none: New file.
11532         * modules/unictype/category-and: New file.
11533         * modules/unictype/category-and-not: New file.
11534         * modules/unictype/category-name: New file.
11535         * modules/unictype/combining-class: New file.
11536         * modules/unictype/category-all: New file.
11537         * modules/unictype/bidicategory-all: New file.
11538         * modules/unictype/bidicategory-byname: New file.
11539         * modules/unictype/bidicategory-name: New file.
11540         * modules/unictype/bidicategory-of: New file.
11541         * modules/unictype/bidicategory-test: New file.
11542         * modules/unictype/decimal-digit: New file.
11543         * modules/unictype/digit: New file.
11544         * modules/unictype/numeric: New file.
11545         * modules/unictype/mirror: New file.
11546         * modules/unictype/property-white-space: New file.
11547         * modules/unictype/property-alphabetic: New file.
11548         * modules/unictype/property-other-alphabetic: New file.
11549         * modules/unictype/property-not-a-character: New file.
11550         * modules/unictype/property-default-ignorable-code-point: New file.
11551         * modules/unictype/property-other-default-ignorable-code-point: New
11552         file.
11553         * modules/unictype/property-deprecated: New file.
11554         * modules/unictype/property-logical-order-exception: New file.
11555         * modules/unictype/property-variation-selector: New file.
11556         * modules/unictype/property-private-use: New file.
11557         * modules/unictype/property-unassigned-code-value: New file.
11558         * modules/unictype/property-uppercase: New file.
11559         * modules/unictype/property-other-uppercase: New file.
11560         * modules/unictype/property-lowercase: New file.
11561         * modules/unictype/property-other-lowercase: New file.
11562         * modules/unictype/property-titlecase: New file.
11563         * modules/unictype/property-soft-dotted: New file.
11564         * modules/unictype/property-id-start: New file.
11565         * modules/unictype/property-other-id-start: New file.
11566         * modules/unictype/property-id-continue: New file.
11567         * modules/unictype/property-other-id-continue: New file.
11568         * modules/unictype/property-xid-start: New file.
11569         * modules/unictype/property-xid-continue: New file.
11570         * modules/unictype/property-pattern-white-space: New file.
11571         * modules/unictype/property-pattern-syntax: New file.
11572         * modules/unictype/property-join-control: New file.
11573         * modules/unictype/property-grapheme-base: New file.
11574         * modules/unictype/property-grapheme-extend: New file.
11575         * modules/unictype/property-other-grapheme-extend: New file.
11576         * modules/unictype/property-grapheme-link: New file.
11577         * modules/unictype/property-bidi-control: New file.
11578         * modules/unictype/property-bidi-left-to-right: New file.
11579         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
11580         * modules/unictype/property-bidi-arabic-right-to-left: New file.
11581         * modules/unictype/property-bidi-european-digit: New file.
11582         * modules/unictype/property-bidi-eur-num-separator: New file.
11583         * modules/unictype/property-bidi-eur-num-terminator: New file.
11584         * modules/unictype/property-bidi-arabic-digit: New file.
11585         * modules/unictype/property-bidi-common-separator: New file.
11586         * modules/unictype/property-bidi-block-separator: New file.
11587         * modules/unictype/property-bidi-segment-separator: New file.
11588         * modules/unictype/property-bidi-whitespace: New file.
11589         * modules/unictype/property-bidi-non-spacing-mark: New file.
11590         * modules/unictype/property-bidi-boundary-neutral: New file.
11591         * modules/unictype/property-bidi-pdf: New file.
11592         * modules/unictype/property-bidi-embedding-or-override: New file.
11593         * modules/unictype/property-bidi-other-neutral: New file.
11594         * modules/unictype/property-hex-digit: New file.
11595         * modules/unictype/property-ascii-hex-digit: New file.
11596         * modules/unictype/property-ideographic: New file.
11597         * modules/unictype/property-unified-ideograph: New file.
11598         * modules/unictype/property-radical: New file.
11599         * modules/unictype/property-ids-binary-operator: New file.
11600         * modules/unictype/property-ids-trinary-operator: New file.
11601         * modules/unictype/property-zero-width: New file.
11602         * modules/unictype/property-space: New file.
11603         * modules/unictype/property-non-break: New file.
11604         * modules/unictype/property-iso-control: New file.
11605         * modules/unictype/property-format-control: New file.
11606         * modules/unictype/property-dash: New file.
11607         * modules/unictype/property-hyphen: New file.
11608         * modules/unictype/property-punctuation: New file.
11609         * modules/unictype/property-line-separator: New file.
11610         * modules/unictype/property-paragraph-separator: New file.
11611         * modules/unictype/property-quotation-mark: New file.
11612         * modules/unictype/property-sentence-terminal: New file.
11613         * modules/unictype/property-terminal-punctuation: New file.
11614         * modules/unictype/property-currency-symbol: New file.
11615         * modules/unictype/property-math: New file.
11616         * modules/unictype/property-other-math: New file.
11617         * modules/unictype/property-paired-punctuation: New file.
11618         * modules/unictype/property-left-of-pair: New file.
11619         * modules/unictype/property-combining: New file.
11620         * modules/unictype/property-composite: New file.
11621         * modules/unictype/property-decimal-digit: New file.
11622         * modules/unictype/property-numeric: New file.
11623         * modules/unictype/property-diacritic: New file.
11624         * modules/unictype/property-extender: New file.
11625         * modules/unictype/property-ignorable-control: New file.
11626         * modules/unictype/property-test: New file.
11627         * modules/unictype/property-byname: New file.
11628         * modules/unictype/property-all: New file.
11629         * modules/unictype/scripts: New file.
11630         * modules/unictype/scripts-all: New file.
11631         * modules/unictype/block-of: New file.
11632         * modules/unictype/block-test: New file.
11633         * modules/unictype/block-list: New file.
11634         * modules/unictype/block-all: New file.
11635         * modules/unictype/syntax-c-whitespace: New file.
11636         * modules/unictype/syntax-java-whitespace: New file.
11637         * modules/unictype/syntax-c-ident: New file.
11638         * modules/unictype/syntax-java-ident: New file.
11639         * modules/unictype/ctype-alnum: New file.
11640         * modules/unictype/ctype-alpha: New file.
11641         * modules/unictype/ctype-cntrl: New file.
11642         * modules/unictype/ctype-digit: New file.
11643         * modules/unictype/ctype-graph: New file.
11644         * modules/unictype/ctype-lower: New file.
11645         * modules/unictype/ctype-print: New file.
11646         * modules/unictype/ctype-punct: New file.
11647         * modules/unictype/ctype-space: New file.
11648         * modules/unictype/ctype-upper: New file.
11649         * modules/unictype/ctype-xdigit: New file.
11650         * modules/unictype/ctype-blank: New file.
11651         * lib/unictype/bidi_byname.c: New file.
11652         * lib/unictype/bidi_name.c: New file.
11653         * lib/unictype/bidi_of.c: New file.
11654         * lib/unictype/bidi_test.c: New file.
11655         * lib/unictype/bitmap.h: New file.
11656         * lib/unictype/block_test.c: New file.
11657         * lib/unictype/blocks.c: New file.
11658         * lib/unictype/categ_C.c: New file.
11659         * lib/unictype/categ_Cc.c: New file.
11660         * lib/unictype/categ_Cf.c: New file.
11661         * lib/unictype/categ_Cn.c: New file.
11662         * lib/unictype/categ_Co.c: New file.
11663         * lib/unictype/categ_Cs.c: New file.
11664         * lib/unictype/categ_L.c: New file.
11665         * lib/unictype/categ_Ll.c: New file.
11666         * lib/unictype/categ_Lm.c: New file.
11667         * lib/unictype/categ_Lo.c: New file.
11668         * lib/unictype/categ_Lt.c: New file.
11669         * lib/unictype/categ_Lu.c: New file.
11670         * lib/unictype/categ_M.c: New file.
11671         * lib/unictype/categ_Mc.c: New file.
11672         * lib/unictype/categ_Me.c: New file.
11673         * lib/unictype/categ_Mn.c: New file.
11674         * lib/unictype/categ_N.c: New file.
11675         * lib/unictype/categ_Nd.c: New file.
11676         * lib/unictype/categ_Nl.c: New file.
11677         * lib/unictype/categ_No.c: New file.
11678         * lib/unictype/categ_P.c: New file.
11679         * lib/unictype/categ_Pc.c: New file.
11680         * lib/unictype/categ_Pd.c: New file.
11681         * lib/unictype/categ_Pe.c: New file.
11682         * lib/unictype/categ_Pf.c: New file.
11683         * lib/unictype/categ_Pi.c: New file.
11684         * lib/unictype/categ_Po.c: New file.
11685         * lib/unictype/categ_Ps.c: New file.
11686         * lib/unictype/categ_S.c: New file.
11687         * lib/unictype/categ_Sc.c: New file.
11688         * lib/unictype/categ_Sk.c: New file.
11689         * lib/unictype/categ_Sm.c: New file.
11690         * lib/unictype/categ_So.c: New file.
11691         * lib/unictype/categ_Z.c: New file.
11692         * lib/unictype/categ_Zl.c: New file.
11693         * lib/unictype/categ_Zp.c: New file.
11694         * lib/unictype/categ_Zs.c: New file.
11695         * lib/unictype/categ_and.c: New file.
11696         * lib/unictype/categ_and_not.c: New file.
11697         * lib/unictype/categ_byname.c: New file.
11698         * lib/unictype/categ_name.c: New file.
11699         * lib/unictype/categ_none.c: New file.
11700         * lib/unictype/categ_of.c: New file.
11701         * lib/unictype/categ_or.c: New file.
11702         * lib/unictype/categ_test.c: New file.
11703         * lib/unictype/combining.c: New file.
11704         * lib/unictype/ctype_alnum.c: New file.
11705         * lib/unictype/ctype_alpha.c: New file.
11706         * lib/unictype/ctype_blank.c: New file.
11707         * lib/unictype/ctype_cntrl.c: New file.
11708         * lib/unictype/ctype_digit.c: New file.
11709         * lib/unictype/ctype_graph.c: New file.
11710         * lib/unictype/ctype_lower.c: New file.
11711         * lib/unictype/ctype_print.c: New file.
11712         * lib/unictype/ctype_punct.c: New file.
11713         * lib/unictype/ctype_space.c: New file.
11714         * lib/unictype/ctype_upper.c: New file.
11715         * lib/unictype/ctype_xdigit.c: New file.
11716         * lib/unictype/decdigit.c: New file.
11717         * lib/unictype/digit.c: New file.
11718         * lib/unictype/identsyntaxmap.h: New file.
11719         * lib/unictype/mirror.c: New file.
11720         * lib/unictype/numeric.c: New file.
11721         * lib/unictype/pr_alphabetic.c: New file.
11722         * lib/unictype/pr_ascii_hex_digit.c: New file.
11723         * lib/unictype/pr_bidi_arabic_digit.c: New file.
11724         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
11725         * lib/unictype/pr_bidi_block_separator.c: New file.
11726         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
11727         * lib/unictype/pr_bidi_common_separator.c: New file.
11728         * lib/unictype/pr_bidi_control.c: New file.
11729         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
11730         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
11731         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
11732         * lib/unictype/pr_bidi_european_digit.c: New file.
11733         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
11734         * lib/unictype/pr_bidi_left_to_right.c: New file.
11735         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
11736         * lib/unictype/pr_bidi_other_neutral.c: New file.
11737         * lib/unictype/pr_bidi_pdf.c: New file.
11738         * lib/unictype/pr_bidi_segment_separator.c: New file.
11739         * lib/unictype/pr_bidi_whitespace.c: New file.
11740         * lib/unictype/pr_byname.c: New file.
11741         * lib/unictype/pr_byname.gperf: New file.
11742         * lib/unictype/pr_combining.c: New file.
11743         * lib/unictype/pr_composite.c: New file.
11744         * lib/unictype/pr_currency_symbol.c: New file.
11745         * lib/unictype/pr_dash.c: New file.
11746         * lib/unictype/pr_decimal_digit.c: New file.
11747         * lib/unictype/pr_default_ignorable_code_point.c: New file.
11748         * lib/unictype/pr_deprecated.c: New file.
11749         * lib/unictype/pr_diacritic.c: New file.
11750         * lib/unictype/pr_extender.c: New file.
11751         * lib/unictype/pr_format_control.c: New file.
11752         * lib/unictype/pr_grapheme_base.c: New file.
11753         * lib/unictype/pr_grapheme_extend.c: New file.
11754         * lib/unictype/pr_grapheme_link.c: New file.
11755         * lib/unictype/pr_hex_digit.c: New file.
11756         * lib/unictype/pr_hyphen.c: New file.
11757         * lib/unictype/pr_id_continue.c: New file.
11758         * lib/unictype/pr_id_start.c: New file.
11759         * lib/unictype/pr_ideographic.c: New file.
11760         * lib/unictype/pr_ids_binary_operator.c: New file.
11761         * lib/unictype/pr_ids_trinary_operator.c: New file.
11762         * lib/unictype/pr_ignorable_control.c: New file.
11763         * lib/unictype/pr_iso_control.c: New file.
11764         * lib/unictype/pr_join_control.c: New file.
11765         * lib/unictype/pr_left_of_pair.c: New file.
11766         * lib/unictype/pr_line_separator.c: New file.
11767         * lib/unictype/pr_logical_order_exception.c: New file.
11768         * lib/unictype/pr_lowercase.c: New file.
11769         * lib/unictype/pr_math.c: New file.
11770         * lib/unictype/pr_non_break.c: New file.
11771         * lib/unictype/pr_not_a_character.c: New file.
11772         * lib/unictype/pr_numeric.c: New file.
11773         * lib/unictype/pr_other_alphabetic.c: New file.
11774         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
11775         * lib/unictype/pr_other_grapheme_extend.c: New file.
11776         * lib/unictype/pr_other_id_continue.c: New file.
11777         * lib/unictype/pr_other_id_start.c: New file.
11778         * lib/unictype/pr_other_lowercase.c: New file.
11779         * lib/unictype/pr_other_math.c: New file.
11780         * lib/unictype/pr_other_uppercase.c: New file.
11781         * lib/unictype/pr_paired_punctuation.c: New file.
11782         * lib/unictype/pr_paragraph_separator.c: New file.
11783         * lib/unictype/pr_pattern_syntax.c: New file.
11784         * lib/unictype/pr_pattern_white_space.c: New file.
11785         * lib/unictype/pr_private_use.c: New file.
11786         * lib/unictype/pr_punctuation.c: New file.
11787         * lib/unictype/pr_quotation_mark.c: New file.
11788         * lib/unictype/pr_radical.c: New file.
11789         * lib/unictype/pr_sentence_terminal.c: New file.
11790         * lib/unictype/pr_soft_dotted.c: New file.
11791         * lib/unictype/pr_space.c: New file.
11792         * lib/unictype/pr_terminal_punctuation.c: New file.
11793         * lib/unictype/pr_test.c: New file.
11794         * lib/unictype/pr_titlecase.c: New file.
11795         * lib/unictype/pr_unassigned_code_value.c: New file.
11796         * lib/unictype/pr_unified_ideograph.c: New file.
11797         * lib/unictype/pr_uppercase.c: New file.
11798         * lib/unictype/pr_variation_selector.c: New file.
11799         * lib/unictype/pr_white_space.c: New file.
11800         * lib/unictype/pr_xid_continue.c: New file.
11801         * lib/unictype/pr_xid_start.c: New file.
11802         * lib/unictype/pr_zero_width.c: New file.
11803         * lib/unictype/scripts.c: New file.
11804         * lib/unictype/sy_c_ident.c: New file.
11805         * lib/unictype/sy_c_whitespace.c: New file.
11806         * lib/unictype/sy_java_ident.c: New file.
11807         * lib/unictype/sy_java_whitespace.c: New file.
11808
11809         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
11810         Unicode 5.0.0.
11811         * lib/unictype/blocks.h: Likewise.
11812         * lib/unictype/categ_C.h: Likewise.
11813         * lib/unictype/categ_Cc.h: Likewise.
11814         * lib/unictype/categ_Cf.h: Likewise.
11815         * lib/unictype/categ_Cn.h: Likewise.
11816         * lib/unictype/categ_Co.h: Likewise.
11817         * lib/unictype/categ_Cs.h: Likewise.
11818         * lib/unictype/categ_L.h: Likewise.
11819         * lib/unictype/categ_Ll.h: Likewise.
11820         * lib/unictype/categ_Lm.h: Likewise.
11821         * lib/unictype/categ_Lo.h: Likewise.
11822         * lib/unictype/categ_Lt.h: Likewise.
11823         * lib/unictype/categ_Lu.h: Likewise.
11824         * lib/unictype/categ_M.h: Likewise.
11825         * lib/unictype/categ_Mc.h: Likewise.
11826         * lib/unictype/categ_Me.h: Likewise.
11827         * lib/unictype/categ_Mn.h: Likewise.
11828         * lib/unictype/categ_N.h: Likewise.
11829         * lib/unictype/categ_Nd.h: Likewise.
11830         * lib/unictype/categ_Nl.h: Likewise.
11831         * lib/unictype/categ_No.h: Likewise.
11832         * lib/unictype/categ_P.h: Likewise.
11833         * lib/unictype/categ_Pc.h: Likewise.
11834         * lib/unictype/categ_Pd.h: Likewise.
11835         * lib/unictype/categ_Pe.h: Likewise.
11836         * lib/unictype/categ_Pf.h: Likewise.
11837         * lib/unictype/categ_Pi.h: Likewise.
11838         * lib/unictype/categ_Po.h: Likewise.
11839         * lib/unictype/categ_Ps.h: Likewise.
11840         * lib/unictype/categ_S.h: Likewise.
11841         * lib/unictype/categ_Sc.h: Likewise.
11842         * lib/unictype/categ_Sk.h: Likewise.
11843         * lib/unictype/categ_Sm.h: Likewise.
11844         * lib/unictype/categ_So.h: Likewise.
11845         * lib/unictype/categ_Z.h: Likewise.
11846         * lib/unictype/categ_Zl.h: Likewise.
11847         * lib/unictype/categ_Zp.h: Likewise.
11848         * lib/unictype/categ_Zs.h: Likewise.
11849         * lib/unictype/categ_of.h: Likewise.
11850         * lib/unictype/combining.h: Likewise.
11851         * lib/unictype/ctype_alnum.h: Likewise.
11852         * lib/unictype/ctype_alpha.h: Likewise.
11853         * lib/unictype/ctype_blank.h: Likewise.
11854         * lib/unictype/ctype_cntrl.h: Likewise.
11855         * lib/unictype/ctype_digit.h: Likewise.
11856         * lib/unictype/ctype_graph.h: Likewise.
11857         * lib/unictype/ctype_lower.h: Likewise.
11858         * lib/unictype/ctype_print.h: Likewise.
11859         * lib/unictype/ctype_punct.h: Likewise.
11860         * lib/unictype/ctype_space.h: Likewise.
11861         * lib/unictype/ctype_upper.h: Likewise.
11862         * lib/unictype/ctype_xdigit.h: Likewise.
11863         * lib/unictype/decdigit.h: Likewise.
11864         * lib/unictype/digit.h: Likewise.
11865         * lib/unictype/mirror.h: Likewise.
11866         * lib/unictype/numeric.h: Likewise.
11867         * lib/unictype/pr_alphabetic.h: Likewise.
11868         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
11869         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
11870         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
11871         * lib/unictype/pr_bidi_block_separator.h: Likewise.
11872         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
11873         * lib/unictype/pr_bidi_common_separator.h: Likewise.
11874         * lib/unictype/pr_bidi_control.h: Likewise.
11875         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
11876         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
11877         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
11878         * lib/unictype/pr_bidi_european_digit.h: Likewise.
11879         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
11880         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
11881         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
11882         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
11883         * lib/unictype/pr_bidi_pdf.h: Likewise.
11884         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
11885         * lib/unictype/pr_bidi_whitespace.h: Likewise.
11886         * lib/unictype/pr_combining.h: Likewise.
11887         * lib/unictype/pr_composite.h: Likewise.
11888         * lib/unictype/pr_currency_symbol.h: Likewise.
11889         * lib/unictype/pr_dash.h: Likewise.
11890         * lib/unictype/pr_decimal_digit.h: Likewise.
11891         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
11892         * lib/unictype/pr_deprecated.h: Likewise.
11893         * lib/unictype/pr_diacritic.h: Likewise.
11894         * lib/unictype/pr_extender.h: Likewise.
11895         * lib/unictype/pr_format_control.h: Likewise.
11896         * lib/unictype/pr_grapheme_base.h: Likewise.
11897         * lib/unictype/pr_grapheme_extend.h: Likewise.
11898         * lib/unictype/pr_grapheme_link.h: Likewise.
11899         * lib/unictype/pr_hex_digit.h: Likewise.
11900         * lib/unictype/pr_hyphen.h: Likewise.
11901         * lib/unictype/pr_id_continue.h: Likewise.
11902         * lib/unictype/pr_id_start.h: Likewise.
11903         * lib/unictype/pr_ideographic.h: Likewise.
11904         * lib/unictype/pr_ids_binary_operator.h: Likewise.
11905         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
11906         * lib/unictype/pr_ignorable_control.h: Likewise.
11907         * lib/unictype/pr_iso_control.h: Likewise.
11908         * lib/unictype/pr_join_control.h: Likewise.
11909         * lib/unictype/pr_left_of_pair.h: Likewise.
11910         * lib/unictype/pr_line_separator.h: Likewise.
11911         * lib/unictype/pr_logical_order_exception.h: Likewise.
11912         * lib/unictype/pr_lowercase.h: Likewise.
11913         * lib/unictype/pr_math.h: Likewise.
11914         * lib/unictype/pr_non_break.h: Likewise.
11915         * lib/unictype/pr_not_a_character.h: Likewise.
11916         * lib/unictype/pr_numeric.h: Likewise.
11917         * lib/unictype/pr_other_alphabetic.h: Likewise.
11918         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
11919         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
11920         * lib/unictype/pr_other_id_continue.h: Likewise.
11921         * lib/unictype/pr_other_id_start.h: Likewise.
11922         * lib/unictype/pr_other_lowercase.h: Likewise.
11923         * lib/unictype/pr_other_math.h: Likewise.
11924         * lib/unictype/pr_other_uppercase.h: Likewise.
11925         * lib/unictype/pr_paired_punctuation.h: Likewise.
11926         * lib/unictype/pr_paragraph_separator.h: Likewise.
11927         * lib/unictype/pr_pattern_syntax.h: Likewise.
11928         * lib/unictype/pr_pattern_white_space.h: Likewise.
11929         * lib/unictype/pr_private_use.h: Likewise.
11930         * lib/unictype/pr_punctuation.h: Likewise.
11931         * lib/unictype/pr_quotation_mark.h: Likewise.
11932         * lib/unictype/pr_radical.h: Likewise.
11933         * lib/unictype/pr_sentence_terminal.h: Likewise.
11934         * lib/unictype/pr_soft_dotted.h: Likewise.
11935         * lib/unictype/pr_space.h: Likewise.
11936         * lib/unictype/pr_terminal_punctuation.h: Likewise.
11937         * lib/unictype/pr_titlecase.h: Likewise.
11938         * lib/unictype/pr_unassigned_code_value.h: Likewise.
11939         * lib/unictype/pr_unified_ideograph.h: Likewise.
11940         * lib/unictype/pr_uppercase.h: Likewise.
11941         * lib/unictype/pr_variation_selector.h: Likewise.
11942         * lib/unictype/pr_white_space.h: Likewise.
11943         * lib/unictype/pr_xid_continue.h: Likewise.
11944         * lib/unictype/pr_xid_start.h: Likewise.
11945         * lib/unictype/pr_zero_width.h: Likewise.
11946         * lib/unictype/scripts.h: Likewise.
11947         * lib/unictype/scripts_byname.gperf: Likewise.
11948         * lib/unictype/sy_c_ident.h: Likewise.
11949         * lib/unictype/sy_c_whitespace.h: Likewise.
11950         * lib/unictype/sy_java_ident.h: Likewise.
11951         * lib/unictype/sy_java_whitespace.h: Likewise.
11952
11953         * lib/unictype/Makefile: New file.
11954         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
11955         glibc.
11956         * lib/unictype/3level.h: New file, copied from glibc.
11957         * lib/unictype/3levelbit.h: New file.
11958
11959 2007-11-11  Bruno Haible  <bruno@clisp.org>
11960
11961         * modules/gperf: New file.
11962         * modules/iconv_open (Depends-on): Add it.
11963         (Makefile.am): Remove the GPERF definition.
11964
11965 2007-11-11  Bruno Haible  <bruno@clisp.org>
11966
11967         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
11968         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
11969
11970 2007-11-11  Bruno Haible  <bruno@clisp.org>
11971
11972         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
11973         (usage): Remove function.
11974
11975 2007-11-11  Bruno Haible  <bruno@clisp.org>
11976
11977         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
11978         gl_FUNC_CEILF_LIBS.
11979         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
11980         gl_FUNC_CEIL_LIBS.
11981         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
11982         gl_FUNC_CEILL_LIBS.
11983         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
11984         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
11985         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
11986
11987 2007-11-11  Bruno Haible  <bruno@clisp.org>
11988
11989         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
11990         roundf were declared but do not exist on functions.
11991         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
11992         roundl were declared but do not exist on functions.
11993         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
11994         HAVE_FLOORL_AND_CEILL, respectively.
11995         Needed for Sun C on Solaris 10.
11996
11997 2007-11-11  Bruno Haible  <bruno@clisp.org>
11998
11999         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
12000         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
12001         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
12002         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
12003         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
12004         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
12005         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
12006         HAVE_DECL_ROUNDF.
12007         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
12008         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
12009         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
12010         of HAVE_DECL_ROUND*.
12011         * modules/math (Makefile.am): Update.
12012
12013 2007-11-10  Bruno Haible  <bruno@clisp.org>
12014
12015         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
12016         ptrdiff_t as m4/intl.m4.
12017
12018 2007-11-10  Jim Meyering  <meyering@redhat.com>
12019
12020         Avoid link failure for the argmatch test.
12021         * tests/test-argmatch.c (usage): Define function to avoid a link
12022         failure: argmatch_die requires a usage function.
12023
12024 2007-11-09  Bruno Haible  <bruno@clisp.org>
12025
12026         * doc/functions/snprintf.texi: Mention BeOS deficiency.
12027         * doc/functions/vsnprintf.texi: Likewise.
12028         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
12029         with a size argument < 2.
12030
12031 2007-11-09  Bruno Haible  <bruno@clisp.org>
12032
12033         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
12034         buffer. Fixes an inefficiency introduced on 2007-11-03.
12035
12036 2007-11-09  Bruno Haible  <bruno@clisp.org>
12037
12038         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
12039         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
12040
12041 2007-11-08  Jim Meyering  <meyering@redhat.com>
12042
12043         Change cache variable name prefix "jm_" to "gl_" everywhere.
12044         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
12045         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
12046         * m4/uptime.m4: s/gl_/jm_/
12047
12048 2007-11-07  Bruno Haible  <bruno@clisp.org>
12049
12050         Update to GNU gettext 0.17.
12051         * m4/intl.m4: Update to GNU gettext 0.17.
12052         * m4/po.m4: Likewise.
12053         * modules/gettext (Files): Remove m4/ulonglong.m4.
12054         (configure.ac): Require gettext infrastructure from version 0.17.
12055
12056 2007-11-06  Bruno Haible  <bruno@clisp.org>
12057
12058         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
12059         symbolic values are not defined in a public header.
12060         * lib/freadable.c (freadable) [QNX]: Likewise.
12061         * lib/freadahead.c (freadahead) [QNX]: Likewise.
12062         * lib/freading.c (freading) [QNX]: Likewise.
12063         * lib/fseterr.c (fseterr) [QNX]: Likewise.
12064         * lib/fwritable.c (fwritable) [QNX]: Likewise.
12065         * lib/fwriting.c (fwriting) [QNX]: Likewise.
12066         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
12067         Reported by Alain Magloire.
12068
12069         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
12070
12071 2007-11-05  Bruno Haible  <bruno@clisp.org>
12072
12073         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
12074         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
12075         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
12076         Reported by Eric Blake.
12077
12078 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12079             Bruno Haible  <bruno@clisp.org>
12080
12081         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
12082         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
12083         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
12084         (malloc): Undefine also before including <stdlib.h>.
12085         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
12086         Needed on OSF/1 4.0.
12087
12088 2007-11-05  Jim Meyering  <meyering@redhat.com>
12089
12090         git-version-gen: sync from coreutils.
12091         * build-aux/git-version-gen: Add comments.
12092         Change the first '-' to '.' in the snapshot version string,
12093         e.g., 6.9-377-08144 -> 6.9.377-08144
12094         Remove first parameter.
12095         Don't declare a version "-dirty" merely because a time
12096         stamp has changed.
12097
12098 2007-11-04  Bruno Haible  <bruno@clisp.org>
12099
12100         * lib/lock.h: Protect all macro definitions containing an 'if'
12101         statement through a "do { ... } while (0)".
12102         * lib/tls.h: Likewise.
12103
12104 2007-11-04  Bruno Haible  <bruno@clisp.org>
12105
12106         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
12107
12108 2007-11-04  Bruno Haible  <bruno@clisp.org>
12109
12110         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
12111         * modules/fprintf-posix (Depends-on): Add nocrash.
12112         * modules/snprintf-posix (Depends-on): Likewise.
12113         * modules/sprintf-posix (Depends-on): Likewise.
12114         * modules/vasnprintf-posix (Depends-on): Likewise.
12115         * modules/vasprintf-posix (Depends-on): Likewise.
12116         * modules/vfprintf-posix (Depends-on): Likewise.
12117         * modules/vsnprintf-posix (Depends-on): Likewise.
12118         * modules/vsprintf-posix (Depends-on): Likewise.
12119         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
12120         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
12121         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
12122         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
12123         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
12124         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
12125         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
12126
12127 2007-11-04  Bruno Haible  <bruno@clisp.org>
12128
12129         * modules/nocrash: New file.
12130         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
12131         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
12132
12133 2007-11-04  Bruno Haible  <bruno@clisp.org>
12134
12135         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
12136         precision handling.
12137         * tests/test-vasprintf-posix.c (test_function): Likewise.
12138         * tests/test-snprintf-posix.h (test_function): Likewise.
12139         * tests/test-sprintf-posix.h (test_function): Likewise.
12140
12141         Fix *printf behaviour for large precisions on mingw and BeOS.
12142         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
12143         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
12144         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
12145         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
12146         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
12147         gl_PRINTF_PRECISION and test its result. Invoke
12148         gl_PREREQ_VASNPRINTF_PRECISION.
12149         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
12150         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
12151         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
12152         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
12153         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
12154         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12155         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12156         * doc/functions/fprintf.texi: Update.
12157         * doc/functions/printf.texi: Update.
12158         * doc/functions/snprintf.texi: Update.
12159         * doc/functions/sprintf.texi: Update.
12160         * doc/functions/vfprintf.texi: Update.
12161         * doc/functions/vprintf.texi: Update.
12162         * doc/functions/vsnprintf.texi: Update.
12163         * doc/functions/vsprintf.texi: Update.
12164
12165 2007-11-04  Bruno Haible  <bruno@clisp.org>
12166
12167         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
12168
12169 2007-11-04  Bruno Haible  <bruno@clisp.org>
12170
12171         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
12172         Reported by Sylvain Beucler <beuc@gnu.org>.
12173
12174 2007-11-03  Bruno Haible  <bruno@clisp.org>
12175
12176         * tests/test-fprintf-posix2.sh: New file.
12177         * tests/test-fprintf-posix2.c: New file.
12178         * modules/fprintf-posix-tests (Files): Add them.
12179         (TESTS): Add test-fprintf-posix2.sh.
12180         (configure.ac): Check for getrlimit and setrlimit.
12181         (check_PROGRAMS): Add test-fprintf-posix2.
12182
12183         * tests/test-printf-posix2.sh: New file.
12184         * tests/test-printf-posix2.c: New file.
12185         * modules/printf-posix-tests (Files): Add them.
12186         (TESTS): Add test-printf-posix2.sh.
12187         (configure.ac): Check for getrlimit and setrlimit.
12188         (check_PROGRAMS): Add test-printf-posix2.
12189
12190         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
12191         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
12192         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
12193         (decode_double): New function, copied from decode_long_double.
12194         (scale10_round_decimal_decoded): New function, extracted from
12195         scale10_round_decimal_long_double.
12196         (scale10_round_decimal_long_double): Use it.
12197         (scale10_round_decimal_double): New function.
12198         (floorlog10): New function.
12199         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
12200         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
12201         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
12202         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
12203         gl_PRINTF_ENOMEM and test its result. Invoke
12204         gl_PREREQ_VASNPRINTF_ENOMEM.
12205         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
12206         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
12207         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
12208         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
12209         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
12210         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12211         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12212         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
12213         * modules/snprintf-posix (Depends-on): Likewise.
12214         * modules/sprintf-posix (Depends-on): Likewise.
12215         * modules/vasnprintf-posix (Depends-on): Likewise.
12216         * modules/vasprintf-posix (Depends-on): Likewise.
12217         * modules/vfprintf-posix (Depends-on): Likewise.
12218         * modules/vsnprintf-posix (Depends-on): Likewise.
12219         * modules/vsprintf-posix (Depends-on): Likewise.
12220         * doc/functions/fprintf.texi: Update.
12221         * doc/functions/printf.texi: Update.
12222         * doc/functions/snprintf.texi: Update.
12223         * doc/functions/sprintf.texi: Update.
12224         * doc/functions/vfprintf.texi: Update.
12225         * doc/functions/vprintf.texi: Update.
12226         * doc/functions/vsnprintf.texi: Update.
12227         * doc/functions/vsprintf.texi: Update.
12228
12229 2007-11-03  Bruno Haible  <bruno@clisp.org>
12230
12231         * modules/frexp-nolibm-tests: New file.
12232
12233         * modules/frexp-nolibm: New file.
12234         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
12235
12236 2007-11-03  Bruno Haible  <bruno@clisp.org>
12237
12238         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
12239         value is C99 compliant.
12240         Needed for OSF/1 5.1.
12241
12242 2007-11-03  Bruno Haible  <bruno@clisp.org>
12243
12244         Fix out-of-memory handling of vasnprintf.
12245         * lib/printf-parse.c: Include <errno.h>.
12246         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
12247         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
12248         is already set.
12249
12250 2007-11-02  Eric Blake  <ebb9@byu.net>
12251
12252         Fix tests on cygwin.
12253         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
12254
12255 2007-11-01  Bruno Haible  <bruno@clisp.org>
12256
12257         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
12258         warning.
12259         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
12260         needed for POSIX compatibility.
12261
12262 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
12263
12264         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
12265         for compatibility with GNU.
12266
12267 2007-11-01  Bruno Haible  <bruno@clisp.org>
12268
12269         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
12270         (putenv): Renamed from rpl_putenv. Change argument type from
12271         'const char *' to 'char *'.
12272         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
12273         of defining putenv in config.h, just set REPLACE_PUTENV.
12274         * modules/putenv (Depends-on): Add stdlib.
12275         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12276         (Include): Use <stdlib.h>.
12277         * lib/stdlib.in.h (putenv): New declaration.
12278         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
12279         REPLACE_PUTENV.
12280         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
12281         REPLACE_PUTENV.
12282         Needed for MacOS X 10.5.0.
12283         Reported by Peter O'Gorman <peter@pogma.com>.
12284
12285 2007-11-01  Jim Meyering  <meyering@redhat.com>
12286
12287         Treat an empty date string exactly like "0".
12288         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
12289         if the remaining date string (to be parsed) is empty, use "0".
12290         Reported by Mischa Molhoek and discussed in this thread:
12291         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
12292
12293 2007-10-31  Bruno Haible  <bruno@clisp.org>
12294
12295         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
12296         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
12297         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
12298         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
12299         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
12300         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
12301
12302 2007-10-31  Bruno Haible  <bruno@clisp.org>
12303
12304         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
12305         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
12306         (AC_TYPE_LONG_LONG_INT): Use it.
12307         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
12308         it as well.
12309         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
12310         to m4/longlong.m4.
12311         * modules/stdint (Files): Remove m4/ulonglong.m4.
12312         * modules/strtoull (Files): Use m4/longlong.m4 instead of
12313         m4/ulonglong.m4.
12314         * modules/strtoumax (Files): Likewise.
12315
12316 2007-10-30  Bruno Haible  <bruno@clisp.org>
12317
12318         * modules/xvasprintf-posix: New file.
12319         Suggested by Eric Blake.
12320
12321 2007-10-30  Bruno Haible  <bruno@clisp.org>
12322
12323         * modules/xprintf-posix-tests: New file.
12324         * tests/test-xprintf-posix.sh: New file.
12325         * tests/test-xprintf-posix.c: New file.
12326         * tests/test-xfprintf-posix.c: New file.
12327
12328         * modules/xprintf-posix: New file.
12329
12330 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12331
12332         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
12333         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
12334         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
12335
12336 2007-10-29  Bruno Haible  <bruno@clisp.org>
12337
12338         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
12339         contain the special marker '_cv_'.
12340         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
12341         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
12342         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
12343         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
12344         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
12345         Reported by Ralf Wildenhues.
12346
12347 2007-10-29  Bruno Haible  <bruno@clisp.org>
12348
12349         * gnulib-tool (func_import): When --lgpl is not specified, set
12350         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
12351         GPLv3.
12352         Reported by Simon Josefsson.
12353
12354 2007-10-28  Bruno Haible  <bruno@clisp.org>
12355
12356         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
12357         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
12358         HAVE_DECL_ISFINITE.
12359         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
12360         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
12361         HAVE_DECL_ISFINITE.
12362
12363 2007-10-28  Bruno Haible  <bruno@clisp.org>
12364
12365         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
12366         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
12367
12368 2007-10-28  Bruno Haible  <bruno@clisp.org>
12369
12370         Fix link errors with Sun C 5.0 on Solaris 10.
12371         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
12372         function is declared but not present in the compiler's libm.
12373         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
12374         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
12375         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
12376         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
12377         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
12378         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
12379         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
12380         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
12381         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
12382         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
12383         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
12384         HAVE_DECL_FLOORL.
12385
12386 2007-10-28  Bruno Haible  <bruno@clisp.org>
12387
12388         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
12389         gl_FUNC_FLOORL. Cache the result.
12390         (gl_FUNC_FLOORL): Use it.
12391         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
12392         gl_FUNC_CEILL. Cache the result.
12393         (gl_FUNC_CEILL): Use it.
12394
12395         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
12396         gl_FUNC_FLOOR. Cache the result.
12397         (gl_FUNC_FLOOR): Use it.
12398         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
12399         gl_FUNC_CEIL. Cache the result.
12400         (gl_FUNC_CEIL): Use it.
12401
12402         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
12403         gl_FUNC_FLOORF. Cache the result.
12404         (gl_FUNC_FLOORF): Use it.
12405         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
12406         gl_FUNC_CEILF. Cache the result.
12407         (gl_FUNC_CEILF): Use it.
12408
12409 2007-10-28  Bruno Haible  <bruno@clisp.org>
12410
12411         * gnulib-tool: Allow specifying the LGPL version number through
12412         --lgpl=2 or --lgpl=3.
12413         (func_usage): Document --lgpl with argument.
12414         Handle --lgpl=... arguments.
12415         (func_import): Recognize also gl_LGPL calls with an argument. When
12416         --lgpl=2 is used and the module's license is just LGPL, report an
12417         error. Set sed_transform_lib_file according to the lgpl variable. In
12418         the generated files, use --lgpl or gl_LGPL invocations with argument,
12419         if necessary.
12420         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
12421         an LGPv2+ license.
12422         * doc/gnulib-tool.texi (Modified imports): Update explanation of
12423         gl_LGPL macro.
12424
12425 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12426             Bruno Haible  <bruno@clisp.org>
12427
12428         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
12429         (u16_uctomb_aux): Likewise.
12430         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
12431         !HAVE_INLINE.
12432         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
12433
12434 2007-10-28  Bruno Haible  <bruno@clisp.org>
12435
12436         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
12437         Invoke AM_GETTEXT_OPTION if it exists.
12438         * modules/vasprintf: Likewise.
12439         * modules/verror: Likewise.
12440         * modules/xprintf: Likewise.
12441         * modules/xvasprintf: Likewise.
12442
12443 2007-10-27  Ben Pfaff  <blp@gnu.org>
12444
12445         * lib/math.in.h: Define isfinite macro and prototypes for
12446         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
12447         implementations.
12448         * m4/math_h.m4: New substitutions for isfinite module.
12449         * lib/isfinite.c: New file.
12450         * m4/isfinite.m4: New file.
12451         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
12452         * modules/isfinite: New file.
12453         * modules/isfinite-tests: New file.
12454         * tests/tests-isfinite.c: New file.
12455         * doc/functions/isfinite.texi: Mention isfinite module.
12456         * MODULES.html.sh: Mention new module.
12457
12458 2007-10-27  Ben Pfaff  <blp@gnu.org>
12459
12460         Ralf Wildenhues reported that Tru64 4.0D declares the round
12461         functions but does not have definitions.
12462         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
12463         cannot be found in any library, set the output variable to
12464         "missing" instead of "".
12465         * m4/round.m4: Also use our substitute if we cannot find round in
12466         any library, even if it is declared.
12467         * m4/roundf.m4: Likewise for roundf.
12468         * m4/roundl.m4: Likewise for roundl.
12469         * lib/math.in.h: Undefine roundf, round, roundl before defining
12470         their replacements, to allow for hypothetical systems where these
12471         may be defined as macros but not available in libraries.
12472
12473 2007-10-27  Bruno Haible  <bruno@clisp.org>
12474
12475         * doc/gnulib.texi: Invoke @firstparagraphindent.
12476         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
12477         changes in gnulib.
12478         (Source changes): New section.
12479
12480 2007-10-26  Bruno Haible  <bruno@clisp.org>
12481
12482         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
12483         borrowed from autoconf.
12484
12485 2007-10-26  Bruno Haible  <bruno@clisp.org>
12486
12487         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
12488         strerror returned the empty string. Needed on HP-UX 11.00.
12489
12490 2007-10-24  Micah Cowan  <micah@cowan.name>
12491
12492         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
12493         * build-aux/bootstrap: Remove support for now-unnecessary option,
12494         --cvs-user, and envvars CVS_USER, CVS_RSH.
12495
12496 2007-10-24  Jim Meyering  <meyering@redhat.com>
12497
12498         Avoid diagnostics from sha1sum when there is no cached checksum.
12499         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
12500         if the po.s1 file hasn't been created yet.
12501
12502         * build-aux/bootstrap: Sync from coreutils:
12503         2007-10-24  Jim Meyering  <meyering@redhat.com>
12504         Get gnulib from the git repository, not from an obsolete cvs one.
12505         * build-aux/bootstrap: Suggestion from Micah Cowan.
12506         2007-10-04  Jim Meyering  <jim@meyering.net>
12507         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
12508         (update_po_files): Work also when there are no .po files in po/.
12509
12510 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
12511
12512         * README: Append ".git" to git and cg examples.
12513         Problem reported by Benoit Sigoure.
12514
12515 2007-10-23  Micah Cowan  <micah@cowan.name>
12516
12517         * users.txt: Add wget.
12518
12519 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12520
12521         Fix linking of some unistdio tests on FreeBSD.
12522         * modules/unistdio/u16-vsnprintf-tests
12523         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
12524         * modules/unistdio/u16-vsprintf-tests
12525         (test_u16_vsnprintf1_LDADD): Likewise.
12526         * modules/unistdio/u32-vsnprintf-tests
12527         (test_u32_vsnprintf1_LDADD): Likewise.
12528         * modules/unistdio/u32-vsprintf-tests
12529         (test_u32_vsprintf1_LDADD): Likewise.
12530         * modules/unistdio/u8-vsnprintf-tests
12531         (test_u8_vsnprintf1_LDADD): Likewise.
12532         * modules/unistdio/u8-vsprintf-tests
12533         (test_u8_vsprintf1_LDADD): Likewise.
12534         * modules/unistdio/ulc-vsnprintf-tests
12535         (test_ulc_vsnprintf1_LDADD): Likewise.
12536         * modules/unistdio/ulc-vsprintf-tests
12537         (test_ulc_vsprintf1_LDADD): Likewise.
12538
12539         Fix linking of some uniconv tests on FreeBSD.
12540         * modules/uniconv/u16-conv-from-enc-tests
12541         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
12542         * modules/uniconv/u16-conv-to-enc-tests
12543         (test_u16_conv_to_enc_LDADD): Likewise.
12544         * modules/uniconv/u16-strconv-from-enc-tests
12545         (test_u16_strconv_from_enc_LDADD): Likewise.
12546         * modules/uniconv/u16-strconv-to-enc-tests
12547         (test_u16_strconv_to_enc_LDADD): Likewise.
12548         * modules/uniconv/u32-conv-from-enc-tests
12549         (test_u32_conv_from_enc_LDADD): Likewise.
12550         * modules/uniconv/u32-conv-to-enc-tests
12551         (test_u32_conv_to_enc_LDADD): Likewise.
12552         * modules/uniconv/u32-strconv-from-enc-tests
12553         (test_u32_strconv_from_enc_LDADD): Likewise.
12554         * modules/uniconv/u32-strconv-to-enc-tests
12555         (test_u32_strconv_to_enc_LDADD): Likewise.
12556         * modules/uniconv/u8-conv-from-enc-tests
12557         (test_u8_conv_from_enc_LDADD): Likewise.
12558         * modules/uniconv/u8-conv-to-enc-tests
12559         (test_u8_conv_to_enc_LDADD): Likewise.
12560         * modules/uniconv/u8-strconv-from-enc-tests
12561         (test_u8_strconv_from_enc_LDADD): Likewise.
12562         * modules/uniconv/u8-strconv-to-enc-tests
12563         (test_u8_strconv_to_enc_LDADD): Likewise.
12564
12565 2007-10-22  Bruno Haible  <bruno@clisp.org>
12566
12567         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
12568         size.
12569
12570 2007-10-22  Eric Blake  <ebb9@byu.net>
12571
12572         Tweak x*printf documentation.
12573         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
12574         variable name and comments.
12575         Suggested by Bruno Haible.
12576
12577 2007-10-22  Bruno Haible  <bruno@clisp.org>
12578
12579         * lib/acl.c (copy_acl): Fix file name in comment.
12580
12581 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
12582
12583         Fix Tru64 problem with stdbool.h.
12584         * lib/stdbool.in.h (false, true):
12585         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
12586         Don't declare as an enum in this situation; it runs afoul of Tru64.
12587         Problem reported by Steven M. Schweda in
12588         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
12589
12590 2007-10-22  Eric Blake  <ebb9@byu.net>
12591
12592         Also wrap vf?printf.
12593         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
12594         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
12595         (xvprintf, xvfprintf): New functions.
12596
12597 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12598
12599         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
12600         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
12601
12602         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
12603         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
12604
12605 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
12606
12607         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
12608         by Bruno Haible.
12609
12610 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12611
12612         * lib/getloadavg.c
12613         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
12614         Undef `sys' after including sys/table.h, for Tru64 4.0D.
12615
12616         * tests/test-i-ring.c: Work for C89.
12617
12618 2007-10-22  Bruno Haible  <bruno@clisp.org>
12619
12620         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
12621         -1u, in preprocessor expression, so that we don't test for the bug
12622         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
12623         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
12624
12625 2007-10-22  Eric Blake  <ebb9@byu.net>
12626
12627         * tests/test-yesno.sh: Silence stderr during test.
12628
12629 2007-10-22  Simon Josefsson  <simon@josefsson.org>
12630
12631         * modules/crypto/gc-camellia: New file.
12632
12633         * m4/gc-camellia.m4: New file.
12634
12635         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
12636
12637         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
12638
12639 2007-10-22  Simon Josefsson  <simon@josefsson.org>
12640
12641         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
12642         --help to stdout.  Reported by sms@antinode.org (Steven
12643         M. Schweda).
12644
12645 2007-10-22  Simon Josefsson  <simon@josefsson.org>
12646
12647         * users.txt: Fix link to libksba.
12648
12649 2007-10-21  Ben Pfaff  <blp@gnu.org>
12650
12651         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
12652         round.c roundf implementation that depends on floorf and ceilf to
12653         be tested unconditionally.
12654
12655 2007-10-21  Ben Pfaff  <blp@gnu.org>
12656
12657         * m4/check-libm-func.m4: Removed.
12658         * m4/check-math-lib.m4: New file.
12659         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
12660         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
12661         definition and lack of AC_LIBOBJ([roundf]).
12662         * m4/roundl.m4: Ditto, and similarly for roundl.
12663         * modules/round: Reference new m4 file.
12664         * modules/roundf: Ditto.
12665         * modules/roundl: Ditto.
12666         * tests/test-round2.c (main): Use ROUND instead of round.
12667         Bug report from Bruno Haible.
12668
12669 2007-10-21  Bruno Haible  <bruno@clisp.org>
12670
12671         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
12672         context.
12673
12674 2007-10-21  Bruno Haible  <bruno@clisp.org>
12675
12676         * tests/test-wcwidth.c (main): Allow negative result for some control
12677         characters.
12678
12679         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
12680         Needed on OSF/1 5.1.
12681
12682 2007-10-21  Bruno Haible  <bruno@clisp.org>
12683
12684         * tests/test-floorf1.c: Include isnanf.h.
12685         (main): Use isnanf() instead of isnan().
12686         * tests/test-ceilf1.c: Include isnanf.h.
12687         (main): Use isnanf() instead of isnan().
12688         * tests/test-truncf1.c: Include isnanf.h.
12689         (main): Use isnanf() instead of isnan().
12690         * tests/test-roundf1.c: Include isnanf.h.
12691         (main): Use isnanf() instead of isnan().
12692
12693 2007-10-21  Eric Blake  <ebb9@byu.net>
12694
12695         * users.txt: Update URL for m4.
12696
12697 2007-10-21  Bruno Haible  <bruno@clisp.org>
12698
12699         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
12700
12701 2007-10-21  Bruno Haible  <bruno@clisp.org>
12702
12703         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
12704         Git's management files if the CVS files are not present.
12705
12706 2007-10-20  Bruno Haible  <bruno@clisp.org>
12707
12708         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
12709         gcc-3.4.x.
12710
12711 2007-10-20  Ben Pfaff  <blp@gnu.org>
12712
12713         * lib/math.in.h: Declare round, roundf, roundl if we are providing
12714         implementations.
12715         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
12716         * lib/round.c: New file.
12717         * lib/roundf.c: New file.
12718         * lib/roundl.c: New file.
12719         * m4/round.m4: New file.
12720         * m4/roundf.m4: New file.
12721         * m4/roundl.m4: New file.
12722         * m4/check-libm-func-m4: New file.
12723         * modules/math: Replace round, roundf, roundl related @VARS@ in
12724         math.in.h.
12725         * modules/round: New file.
12726         * modules/round-tests: New file.
12727         * modules/roundf: New file.
12728         * modules/roundf-tests: New file.
12729         * modules/roundl: New file.
12730         * modules/roundl-tests: New file.
12731         * tests/test-round1.c: New file.
12732         * tests/test-round2.c: New file.
12733         * tests/test-roundf1.c: New file.
12734         * tests/test-roundf2.c: New file.
12735         * tests/test-roundl.c: New file.
12736         * doc/functions/round.texi: Mention round module.
12737         * doc/functions/roundf.texi: Mention roundf module.
12738         * doc/functions/roundl.texi: Mention roundl module.
12739         * MODULES.html.sh: Mention new modules.
12740         Thanks to Bruno Haible for suggestions.
12741
12742 2007-10-20  Jim Meyering  <meyering@redhat.com>
12743
12744         * lib/xprintf.c: Include <config.h> unconditionally.
12745
12746         Change xprintf's license to GPL.
12747         * modules/xprintf (License): s/LGPL/GPL/, since this module
12748         depends on modules (exit and exitfail) which are GPL.
12749         Suggestion from Bruno Haible.
12750
12751         xprintf fixes.
12752         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
12753         Use a clearer diagnostic.
12754         Patch from Bruno Haible.
12755
12756 2007-10-20  Bruno Haible  <bruno@clisp.org>
12757
12758         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
12759         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
12760         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12761
12762 2007-10-20  Bruno Haible  <bruno@clisp.org>
12763
12764         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
12765         precision in the comparison result > x - 1 or similar.
12766         * tests/test-ceilf2.c (correct_result_p): Likewise.
12767         * tests/test-truncf2.c (correct_result_p): Likewise.
12768         * tests/test-trunc2.c (correct_result_p): Likewise.
12769         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12770
12771 2007-10-20  Bruno Haible  <bruno@clisp.org>
12772
12773         * modules/ceil: New file.
12774         * m4/ceil.m4: New file.
12775         * doc/functions/ceil.texi: Mention the 'ceil' module.
12776
12777 2007-10-20  Bruno Haible  <bruno@clisp.org>
12778
12779         * modules/floor: New file.
12780         * m4/floor.m4: New file.
12781         * doc/functions/floor.texi: Mention the 'floor' module.
12782
12783 2007-10-20  Bruno Haible  <bruno@clisp.org>
12784
12785         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
12786         of %a.
12787         * modules/floorf-tests (Depends-on): Likewise.
12788         * modules/truncf-tests (Depends-on): Likewise.
12789         * modules/trunc-tests (Depends-on): Likewise.
12790         Reported by Ben Pfaff.
12791
12792 2007-10-19  Jim Meyering  <meyering@redhat.com>
12793
12794         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
12795         Don't bother testing specific errno values.  Just test ferror.
12796
12797         New module: xprintf
12798         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
12799
12800 2007-10-19  Bruno Haible  <bruno@clisp.org>
12801
12802         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
12803         syntax.
12804         * modules/javaexec (Makefile.am): Likewise.
12805         * modules/relocatable-prog (Makefile.am): Likewise.
12806         Suggested by Jim Meyering.
12807
12808 2007-10-18  Bruno Haible  <bruno@clisp.org>
12809
12810         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
12811         Reported by Jim Meyering.
12812
12813 2007-10-18  Eric Blake  <ebb9@byu.net>
12814
12815         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
12816
12817 2007-10-18  Bruno Haible  <bruno@clisp.org>
12818
12819         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
12820         the format string into writable memory. Needed in Fortify conditions.
12821
12822 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
12823             Bruno Haible  <bruno@clisp.org>
12824
12825         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
12826         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
12827         * modules/trim (Depends-on): Add mbchar.
12828         (configure.ac): Add gl_FUNC_MBRTOWC.
12829         (Makefile.am): Augment lib_SOURCES.
12830
12831 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
12832
12833         Modify glob.c to use fstatat and dirfd, to simplify it.
12834         Suggested by Eric Blake.
12835         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
12836         Don't include <stdbool.h>; not used.
12837         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
12838         (link_exists_p): Simplify implementation, since we can now assume
12839         dirfd and fstatat.
12840         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
12841
12842 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12843
12844         * gnulib-tool (func_get_dependencies): Fix sed script to
12845         match only tests.
12846
12847 2007-10-17  Bruno Haible  <bruno@clisp.org>
12848
12849         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
12850         allow locale names without encoding suffix.
12851         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
12852         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
12853
12854 2007-10-16  Bruno Haible  <bruno@clisp.org>
12855
12856         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
12857         * lib/getgroups.c (getgroups): Likewise.
12858         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
12859
12860 2007-10-16  Bruno Haible  <bruno@clisp.org>
12861
12862         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
12863         * modules/malloc-posix (License): Likewise.
12864         * modules/realloc-posix (License): Likewise.
12865         * modules/calloc-posix (License): Likewise.
12866         * modules/intprops (License): Change from GPL to LGPL, with
12867         Paul Eggert's approval.
12868
12869 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
12870
12871         Merge glibc changes into lib/glob.c.
12872
12873         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
12874         2007-10-15 04:59:03 UTC.  Here are the changes:
12875
12876         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
12877
12878         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
12879
12880         * lib/glob.c: Add some branch prediction throughout.
12881
12882         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
12883
12884         [BZ #5103]
12885         * lib/glob.c (glob): Recognize patterns starting \/.
12886
12887         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
12888
12889         [BZ #3996]
12890         * lib/glob.c (attribute_hidden): Define if not defined.
12891         (glob): Unescape dirname, filename or username when needed and not
12892         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
12893         is NULL.  Handle unescaped [ in pattern without closing ].
12894         Don't pass GLOB_CHECK down to recursive glob for directories.
12895         (__glob_pattern_type): New function.
12896         (__glob_pattern_p): Implement using __glob_pattern_type.
12897         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
12898         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
12899         Remove unreachable code.
12900
12901         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
12902
12903         * lib/glob.c (glob_in_dir): Add some comments and asserts to
12904         explain why there are no leaks.
12905
12906         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
12907
12908         [BZ #3253]
12909         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
12910         time, rather allocate increasingly bigger arrays of pointers, if
12911         possible with alloca, if too large with malloc.
12912
12913 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
12914
12915         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
12916         Problem reported by H.Merijn Brand in
12917         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
12918         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
12919         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
12920
12921 2007-10-15  Bruno Haible  <bruno@clisp.org>
12922
12923         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
12924         with explicit rpl_ prefix.
12925         * lib/fopen.c (fopen): Likewise.
12926         * lib/freopen.c (freopen): Likewise.
12927         * lib/iconv.c (iconv): Likewise.
12928         * lib/iconv_close.c (iconv_close): Likewise.
12929
12930 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12931
12932         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
12933
12934 2007-10-15  Bruno Haible  <bruno@clisp.org>
12935
12936         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
12937         <stddef.h> instead of <stdlib.h> since we only need NULL.
12938         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12939
12940 2007-10-15  Bruno Haible  <bruno@clisp.org>
12941
12942         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
12943         Replace paragraph talking about LIBOBJS.
12944         Reported by Colin Watson <cjwatson@debian.org>.
12945
12946 2007-10-15  Bruno Haible  <bruno@clisp.org>
12947
12948         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
12949         <stdlib.h> before using NULL.
12950
12951 2007-10-15  Simon Josefsson  <simon@josefsson.org>
12952
12953         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
12954         Reported by Albert Chin <china@thewrittenword.com>.
12955
12956 2007-10-14  Bruno Haible  <bruno@clisp.org>
12957
12958         * modules/iconv_open-utf-tests: New file.
12959         * tests/test-iconv-utf.c: New file.
12960
12961         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
12962         * modules/iconv_open-utf: New file.
12963         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
12964         (iconv, iconv_close): New declarations.
12965         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
12966         be defined.
12967         (iconv_open): Add special handling of conversion between UTF-8 and
12968         UTF-{16,32}{BE,LE}.
12969         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
12970         * lib/iconv_close.c: New file.
12971         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
12972         gl_FUNC_ICONV_OPEN.
12973         (gl_FUNC_ICONV_OPEN): Use it.
12974         (gl_FUNC_ICONV_OPEN_UTF): New macro.
12975         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
12976         and REPLACE_ICONV_UTF.
12977         * modules/iconv_open (Depends-on): Add c-strcase.
12978         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
12979         ICONV_CONST.
12980         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
12981
12982 2007-10-13  Albert Chin  <china@thewrittenword.com>
12983             Bruno Haible  <bruno@clisp.org>
12984
12985         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
12986         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
12987
12988 2007-10-13  Bruno Haible  <bruno@clisp.org>
12989
12990         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
12991         defined, use the ISO C99 inline semantics.
12992         * lib/argp.h (ARGP_EI): Likewise.
12993
12994 2007-10-13  Bruno Haible  <bruno@clisp.org>
12995
12996         Handle 'inline' change in gcc 4.3.0.
12997         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
12998         argp_fmtstream_write, argp_fmtstream_set_lmargin,
12999         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
13000         argp_fmtstream_point): Disable 'extern' declaration if the function
13001         definition is going to be provided inline.
13002         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
13003         semantics, not the ISO C99 inline semantics.
13004         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
13005         'extern' declaration if the function definition is going to be provided
13006         inline.
13007         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
13008         the GNU C inline semantics, not the ISO C99 inline semantics. With
13009         GCC 4.2, avoid a warning.
13010
13011 2007-10-13  Bruno Haible  <bruno@clisp.org>
13012
13013         * lib/freading.h (freading): Enable the use of __freading for
13014         glibc >= 2.7.
13015         * lib/freading.c (freading): Likewise.
13016
13017 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
13018
13019         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
13020         "warning: C99 inline functions are not supported; using GNU89".
13021
13022 2007-10-12  Bruno Haible  <bruno@clisp.org>
13023
13024         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
13025         of 2.
13026         * tests/test-ceilf2.c: New file.
13027         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
13028
13029         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
13030         * modules/ceilf-tests: Update.
13031
13032 2007-10-12  Bruno Haible  <bruno@clisp.org>
13033
13034         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
13035         of 2.
13036         * tests/test-floorf2.c: New file.
13037         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
13038
13039         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
13040         * modules/floorf-tests: Update.
13041
13042 2007-10-12  Bruno Haible  <bruno@clisp.org>
13043
13044         * tests/test-trunc2.c: New file.
13045         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
13046
13047         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
13048         * modules/trunc-tests: Update.
13049
13050 2007-10-12  Bruno Haible  <bruno@clisp.org>
13051
13052         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
13053         of 2.
13054         * tests/test-truncf2.c: New file.
13055         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
13056
13057         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
13058         * modules/truncf-tests: Update.
13059
13060 2007-10-11  Eric Blake  <ebb9@byu.net>
13061
13062         Don't claim strerror is broken on Interix.
13063         * doc/functions/strerror.texi (strerror): Known broken systems are
13064         now Solaris 8, and not Interix.
13065         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
13066         Interix on cross-compile.
13067         Reported by Martin Koeppe in
13068         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
13069
13070 2007-10-11  Bruno Haible  <bruno@clisp.org>
13071
13072         * modules/i-ring-tests: New file.
13073         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
13074         instead of assert.
13075
13076 2007-10-11  Bruno Haible  <bruno@clisp.org>
13077
13078         * modules/filenamecat-tests: New file.
13079         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
13080         * lib/filenamecat.c: Remove test code.
13081
13082 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
13083
13084         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
13085
13086         * lib/strerror.c: Include <string.h> always, to test interface,
13087         and to remove the need for the dummy.
13088         Include intprops.h to compute width instead of doing it ourselves
13089         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
13090         (strerror): Define it to return NULL if there's no system strerror.
13091         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
13092         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
13093         ancient pre-strerror Unix systems well any more.  Saying "unknown
13094         system error" is enough.
13095         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
13096         simpler strerror.c implementation.
13097         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
13098         Simplify the tests to reflect the simpler strerror implementation.
13099         * modules/strerror (Depends-on): Add intprops.
13100
13101 2007-10-09  Eric Blake  <ebb9@byu.net>
13102
13103         Silence test-fpending.
13104         * modules/fpending-tests (Files): Add wrapper script.
13105         * tests/test-fpending.sh: New file.
13106
13107 2007-10-09  Bruno Haible  <bruno@clisp.org>
13108
13109         * MODULES.html.sh (func_module): Don't create a hyperlink for
13110         function names like 'printf_frexp'.
13111         (Misc): Add crc, memxor.
13112         (Characteristics of floating types): New section.
13113         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
13114         isnanf-nolibm, signbit, trunc, truncf, truncl.
13115         (Enhancements for ISO C 99 functions): New subsection Input/output.
13116         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
13117         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
13118         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
13119         (Compatibility checks for POSIX:2001 functions): Add clock-time.
13120         (Enhancements for POSIX:2001 functions): Add chdir-long.
13121         (File system functions): Add areadlink, chdir-safer, read-file.
13122         Remove cycle-check.
13123         (File system as inode set): New section.
13124         (Date and time): Add gethrxtime.
13125         (Multithreading): Add openmp.
13126         (Internationalization functions): Add localename.
13127         (Unicode string functions): Add unistr/u*-mbsnlen.
13128         (Support for maintaining and releasing projects): Add git-version-gen.
13129         (Lone files): Remove directories.
13130
13131 2007-10-08  Ben Pfaff  <blp@gnu.org>
13132
13133         * lib/xmalloca.h: Fix typo in comment.
13134
13135 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
13136
13137         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
13138         when avoiding problems with integer overflow.  Use a portable test
13139         instead.
13140
13141 2007-10-08  Simon Josefsson  <simon@josefsson.org>
13142
13143         * modules/dummy (License): Change to LGPLv2+.
13144         * modules/float (License): Likewise
13145         * modules/realloc (License): Likewise
13146         * modules/stdlib (License): Likewise
13147
13148 2007-10-07  Bruno Haible  <bruno@clisp.org>
13149
13150         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
13151         * floor.c (TWO_MANT_DIG): Likewise.
13152         * ceil.c (TWO_MANT_DIG): Likewise.
13153         Reported by Ben Pfaff.
13154
13155 2007-10-07  Bruno Haible  <bruno@clisp.org>
13156
13157         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
13158         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
13159         * lib/frexp.c (FUNC): Likewise.
13160         * lib/printf-frexp.h (printf_frexp): Likewise.
13161         * lib/printf-frexpl.h (printf_frexpl): Likewise.
13162         * lib/printf-frexp.c (FUNC): Likewise.
13163         Suggested by Jim Meyering.
13164
13165 2007-10-07  Jim Meyering  <meyering@redhat.com>
13166
13167         Make xnanosleep's integer overflow test more robust.
13168         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
13169         so that gcc-4.3.0 doesn't optimize away this test for overflow.
13170
13171 2007-10-07  Bruno Haible  <bruno@clisp.org>
13172
13173         * NEWS: Mention the license change.
13174
13175         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
13176         abbreviations in the modules files.
13177
13178         Change copyright notice from GPLv2+ to GPLv3+.
13179         * README: Change copyright notice.
13180         * MODULES.html.sh: Likewise.
13181         * build-aux/bootstrap.conf: Likewise.
13182         * build-aux/config.libpath: Likewise.
13183         * build-aux/csharpcomp.sh.in: Likewise.
13184         * build-aux/csharpexec.sh.in: Likewise.
13185         * build-aux/install-reloc: Likewise.
13186         * build-aux/javacomp.sh.in: Likewise.
13187         * build-aux/javaexec.sh.in: Likewise.
13188         * build-aux/ldd.sh.in: Likewise.
13189         * build-aux/reloc-ldflags: Likewise.
13190         * build-aux/relocatable.sh.in: Likewise.
13191         * build-aux/x-to-1.in: Likewise.
13192         * check-module: Likewise.
13193         * config/srclistvars.sh: Likewise.
13194         * gnulib-tool: Likewise.
13195         * lib/acl-internal.h: Likewise.
13196         * lib/acl.c: Likewise.
13197         * lib/acl.h: Likewise.
13198         * lib/acl_entries.c: Likewise.
13199         * lib/areadlink-with-size.c: Likewise.
13200         * lib/areadlink.c: Likewise.
13201         * lib/areadlink.h: Likewise.
13202         * lib/argmatch.c: Likewise.
13203         * lib/argmatch.h: Likewise.
13204         * lib/argp-ba.c: Likewise.
13205         * lib/argp-eexst.c: Likewise.
13206         * lib/argp-fmtstream.c: Likewise.
13207         * lib/argp-fmtstream.h: Likewise.
13208         * lib/argp-fs-xinl.c: Likewise.
13209         * lib/argp-help.c: Likewise.
13210         * lib/argp-namefrob.h: Likewise.
13211         * lib/argp-parse.c: Likewise.
13212         * lib/argp-pin.c: Likewise.
13213         * lib/argp-pv.c: Likewise.
13214         * lib/argp-pvh.c: Likewise.
13215         * lib/argp-xinl.c: Likewise.
13216         * lib/argp.h: Likewise.
13217         * lib/at-func.c: Likewise.
13218         * lib/atanl.c: Likewise.
13219         * lib/backupfile.c: Likewise.
13220         * lib/backupfile.h: Likewise.
13221         * lib/basename.c: Likewise.
13222         * lib/binary-io.h: Likewise.
13223         * lib/byteswap.in.h: Likewise.
13224         * lib/c-stack.c: Likewise.
13225         * lib/c-stack.h: Likewise.
13226         * lib/c-strcasestr.c: Likewise.
13227         * lib/c-strcasestr.h: Likewise.
13228         * lib/c-strstr.c: Likewise.
13229         * lib/c-strstr.h: Likewise.
13230         * lib/c-strtod.c: Likewise.
13231         * lib/calloc.c: Likewise.
13232         * lib/canon-host.c: Likewise.
13233         * lib/canon-host.h: Likewise.
13234         * lib/canonicalize-lgpl.c: Likewise.
13235         * lib/canonicalize.c: Likewise.
13236         * lib/canonicalize.h: Likewise.
13237         * lib/ceil.c: Likewise.
13238         * lib/ceilf.c: Likewise.
13239         * lib/ceill.c: Likewise.
13240         * lib/chdir-long.c: Likewise.
13241         * lib/chdir-long.h: Likewise.
13242         * lib/chdir-safer.c: Likewise.
13243         * lib/chdir-safer.h: Likewise.
13244         * lib/chown.c: Likewise.
13245         * lib/classpath.c: Likewise.
13246         * lib/classpath.h: Likewise.
13247         * lib/clean-temp.c: Likewise.
13248         * lib/clean-temp.h: Likewise.
13249         * lib/cloexec.c: Likewise.
13250         * lib/close-stream.c: Likewise.
13251         * lib/closein.c: Likewise.
13252         * lib/closein.h: Likewise.
13253         * lib/closeout.c: Likewise.
13254         * lib/closeout.h: Likewise.
13255         * lib/concat-filename.c: Likewise.
13256         * lib/copy-file.c: Likewise.
13257         * lib/copy-file.h: Likewise.
13258         * lib/count-one-bits.h: Likewise.
13259         * lib/crc.c: Likewise.
13260         * lib/crc.h: Likewise.
13261         * lib/creat-safer.c: Likewise.
13262         * lib/csharpcomp.c: Likewise.
13263         * lib/csharpcomp.h: Likewise.
13264         * lib/csharpexec.c: Likewise.
13265         * lib/csharpexec.h: Likewise.
13266         * lib/cycle-check.c: Likewise.
13267         * lib/cycle-check.h: Likewise.
13268         * lib/diacrit.c: Likewise.
13269         * lib/diacrit.h: Likewise.
13270         * lib/diffseq.h: Likewise.
13271         * lib/dirchownmod.c: Likewise.
13272         * lib/dirent.in.h: Likewise.
13273         * lib/dirfd.c: Likewise.
13274         * lib/dirfd.h: Likewise.
13275         * lib/dirname.c: Likewise.
13276         * lib/dirname.h: Likewise.
13277         * lib/dummy.c: Likewise.
13278         * lib/dup-safer.c: Likewise.
13279         * lib/dup2.c: Likewise.
13280         * lib/eealloc.h: Likewise.
13281         * lib/error.c: Likewise.
13282         * lib/error.h: Likewise.
13283         * lib/euidaccess.c: Likewise.
13284         * lib/exclude.c: Likewise.
13285         * lib/exclude.h: Likewise.
13286         * lib/execute.c: Likewise.
13287         * lib/execute.h: Likewise.
13288         * lib/exitfail.c: Likewise.
13289         * lib/exitfail.h: Likewise.
13290         * lib/expl.c: Likewise.
13291         * lib/fatal-signal.c: Likewise.
13292         * lib/fatal-signal.h: Likewise.
13293         * lib/fbufmode.c: Likewise.
13294         * lib/fbufmode.h: Likewise.
13295         * lib/fchdir.c: Likewise.
13296         * lib/fchmodat.c: Likewise.
13297         * lib/fchownat.c: Likewise.
13298         * lib/fcntl--.h: Likewise.
13299         * lib/fcntl-safer.h: Likewise.
13300         * lib/fcntl.in.h: Likewise.
13301         * lib/fd-safer.c: Likewise.
13302         * lib/fflush.c: Likewise.
13303         * lib/file-has-acl.c: Likewise.
13304         * lib/file-set.c: Likewise.
13305         * lib/file-type.c: Likewise.
13306         * lib/file-type.h: Likewise.
13307         * lib/fileblocks.c: Likewise.
13308         * lib/filemode.c: Likewise.
13309         * lib/filemode.h: Likewise.
13310         * lib/filename.h: Likewise.
13311         * lib/filenamecat.c: Likewise.
13312         * lib/filenamecat.h: Likewise.
13313         * lib/findprog.c: Likewise.
13314         * lib/findprog.h: Likewise.
13315         * lib/float.in.h: Likewise.
13316         * lib/floor.c: Likewise.
13317         * lib/floorf.c: Likewise.
13318         * lib/floorl.c: Likewise.
13319         * lib/fopen-safer.c: Likewise.
13320         * lib/fopen.c: Likewise.
13321         * lib/fpending.c: Likewise.
13322         * lib/fpending.h: Likewise.
13323         * lib/fprintf.c: Likewise.
13324         * lib/fprintftime.h: Likewise.
13325         * lib/fpucw.h: Likewise.
13326         * lib/fpurge.c: Likewise.
13327         * lib/fpurge.h: Likewise.
13328         * lib/freadable.c: Likewise.
13329         * lib/freadable.h: Likewise.
13330         * lib/freadahead.c: Likewise.
13331         * lib/freadahead.h: Likewise.
13332         * lib/freading.c: Likewise.
13333         * lib/freading.h: Likewise.
13334         * lib/free.c: Likewise.
13335         * lib/freopen.c: Likewise.
13336         * lib/frexp.c: Likewise.
13337         * lib/frexpl.c: Likewise.
13338         * lib/fseek.c: Likewise.
13339         * lib/fseterr.c: Likewise.
13340         * lib/fseterr.h: Likewise.
13341         * lib/fstatat.c: Likewise.
13342         * lib/fstrcmp.c: Likewise.
13343         * lib/fstrcmp.h: Likewise.
13344         * lib/fsusage.c: Likewise.
13345         * lib/fsusage.h: Likewise.
13346         * lib/ftell.c: Likewise.
13347         * lib/ftello.c: Likewise.
13348         * lib/fts-cycle.c: Likewise.
13349         * lib/fts.c: Likewise.
13350         * lib/fts_.h: Likewise.
13351         * lib/full-read.c: Likewise.
13352         * lib/full-read.h: Likewise.
13353         * lib/full-write.c: Likewise.
13354         * lib/full-write.h: Likewise.
13355         * lib/fwritable.c: Likewise.
13356         * lib/fwritable.h: Likewise.
13357         * lib/fwriteerror.c: Likewise.
13358         * lib/fwriteerror.h: Likewise.
13359         * lib/fwriting.c: Likewise.
13360         * lib/fwriting.h: Likewise.
13361         * lib/gcd.c: Likewise.
13362         * lib/gcd.h: Likewise.
13363         * lib/getcwd.c: Likewise.
13364         * lib/getdate.h: Likewise.
13365         * lib/getdate.y: Likewise.
13366         * lib/getdomainname.c: Likewise.
13367         * lib/getdomainname.h: Likewise.
13368         * lib/getgroups.c: Likewise.
13369         * lib/gethostname.c: Likewise.
13370         * lib/gethrxtime.c: Likewise.
13371         * lib/gethrxtime.h: Likewise.
13372         * lib/getloadavg.c: Likewise.
13373         * lib/getndelim2.c: Likewise.
13374         * lib/getndelim2.h: Likewise.
13375         * lib/getnline.c: Likewise.
13376         * lib/getnline.h: Likewise.
13377         * lib/getopt.c: Likewise.
13378         * lib/getopt.in.h: Likewise.
13379         * lib/getopt1.c: Likewise.
13380         * lib/getopt_int.h: Likewise.
13381         * lib/getpagesize.h: Likewise.
13382         * lib/getsubopt.c: Likewise.
13383         * lib/gettime.c: Likewise.
13384         * lib/getugroups.c: Likewise.
13385         * lib/getugroups.h: Likewise.
13386         * lib/getusershell.c: Likewise.
13387         * lib/gl_anyavltree_list1.h: Likewise.
13388         * lib/gl_anyavltree_list2.h: Likewise.
13389         * lib/gl_anyhash_list1.h: Likewise.
13390         * lib/gl_anyhash_list2.h: Likewise.
13391         * lib/gl_anylinked_list1.h: Likewise.
13392         * lib/gl_anylinked_list2.h: Likewise.
13393         * lib/gl_anyrbtree_list1.h: Likewise.
13394         * lib/gl_anyrbtree_list2.h: Likewise.
13395         * lib/gl_anytree_list1.h: Likewise.
13396         * lib/gl_anytree_list2.h: Likewise.
13397         * lib/gl_anytree_oset.h: Likewise.
13398         * lib/gl_anytreehash_list1.h: Likewise.
13399         * lib/gl_anytreehash_list2.h: Likewise.
13400         * lib/gl_array_list.c: Likewise.
13401         * lib/gl_array_list.h: Likewise.
13402         * lib/gl_array_oset.c: Likewise.
13403         * lib/gl_array_oset.h: Likewise.
13404         * lib/gl_avltree_list.c: Likewise.
13405         * lib/gl_avltree_list.h: Likewise.
13406         * lib/gl_avltree_oset.c: Likewise.
13407         * lib/gl_avltree_oset.h: Likewise.
13408         * lib/gl_avltreehash_list.c: Likewise.
13409         * lib/gl_avltreehash_list.h: Likewise.
13410         * lib/gl_carray_list.c: Likewise.
13411         * lib/gl_carray_list.h: Likewise.
13412         * lib/gl_linked_list.c: Likewise.
13413         * lib/gl_linked_list.h: Likewise.
13414         * lib/gl_linkedhash_list.c: Likewise.
13415         * lib/gl_linkedhash_list.h: Likewise.
13416         * lib/gl_list.c: Likewise.
13417         * lib/gl_list.h: Likewise.
13418         * lib/gl_oset.c: Likewise.
13419         * lib/gl_oset.h: Likewise.
13420         * lib/gl_rbtree_list.c: Likewise.
13421         * lib/gl_rbtree_list.h: Likewise.
13422         * lib/gl_rbtree_oset.c: Likewise.
13423         * lib/gl_rbtree_oset.h: Likewise.
13424         * lib/gl_rbtreehash_list.c: Likewise.
13425         * lib/gl_rbtreehash_list.h: Likewise.
13426         * lib/gl_sublist.c: Likewise.
13427         * lib/gl_sublist.h: Likewise.
13428         * lib/group-member.c: Likewise.
13429         * lib/group-member.h: Likewise.
13430         * lib/hard-locale.c: Likewise.
13431         * lib/hard-locale.h: Likewise.
13432         * lib/hash-pjw.c: Likewise.
13433         * lib/hash-pjw.h: Likewise.
13434         * lib/hash-triple.c: Likewise.
13435         * lib/hash.c: Likewise.
13436         * lib/hash.h: Likewise.
13437         * lib/human.c: Likewise.
13438         * lib/human.h: Likewise.
13439         * lib/i-ring.c: Likewise.
13440         * lib/i-ring.h: Likewise.
13441         * lib/idcache.c: Likewise.
13442         * lib/imaxabs.c: Likewise.
13443         * lib/imaxdiv.c: Likewise.
13444         * lib/inet_pton.c: Likewise.
13445         * lib/inet_pton.h: Likewise.
13446         * lib/intprops.h: Likewise.
13447         * lib/inttostr.c: Likewise.
13448         * lib/inttostr.h: Likewise.
13449         * lib/inttypes.in.h: Likewise.
13450         * lib/isapipe.c: Likewise.
13451         * lib/isdir.c: Likewise.
13452         * lib/isnan.c: Likewise.
13453         * lib/isnan.h: Likewise.
13454         * lib/isnanf.c: Likewise.
13455         * lib/isnanf.h: Likewise.
13456         * lib/isnanl-nolibm.h: Likewise.
13457         * lib/isnanl.c: Likewise.
13458         * lib/isnanl.h: Likewise.
13459         * lib/javacomp.c: Likewise.
13460         * lib/javacomp.h: Likewise.
13461         * lib/javaexec.c: Likewise.
13462         * lib/javaexec.h: Likewise.
13463         * lib/javaversion.c: Likewise.
13464         * lib/javaversion.h: Likewise.
13465         * lib/javaversion.java: Likewise.
13466         * lib/lbrkprop.h: Likewise.
13467         * lib/lchmod.h: Likewise.
13468         * lib/lchown.c: Likewise.
13469         * lib/ldexpl.c: Likewise.
13470         * lib/linebreak.c: Likewise.
13471         * lib/linebreak.h: Likewise.
13472         * lib/linebuffer.c: Likewise.
13473         * lib/linebuffer.h: Likewise.
13474         * lib/locale.in.h: Likewise.
13475         * lib/logl.c: Likewise.
13476         * lib/long-options.c: Likewise.
13477         * lib/long-options.h: Likewise.
13478         * lib/lstat.c: Likewise.
13479         * lib/lstat.h: Likewise.
13480         * lib/math.in.h: Likewise.
13481         * lib/mbchar.c: Likewise.
13482         * lib/mbchar.h: Likewise.
13483         * lib/mbfile.h: Likewise.
13484         * lib/mbiter.h: Likewise.
13485         * lib/mbscasecmp.c: Likewise.
13486         * lib/mbscasestr.c: Likewise.
13487         * lib/mbschr.c: Likewise.
13488         * lib/mbscspn.c: Likewise.
13489         * lib/mbslen.c: Likewise.
13490         * lib/mbsncasecmp.c: Likewise.
13491         * lib/mbsnlen.c: Likewise.
13492         * lib/mbspbrk.c: Likewise.
13493         * lib/mbspcasecmp.c: Likewise.
13494         * lib/mbsrchr.c: Likewise.
13495         * lib/mbssep.c: Likewise.
13496         * lib/mbsspn.c: Likewise.
13497         * lib/mbsstr.c: Likewise.
13498         * lib/mbstok_r.c: Likewise.
13499         * lib/mbswidth.c: Likewise.
13500         * lib/mbswidth.h: Likewise.
13501         * lib/mbuiter.h: Likewise.
13502         * lib/memcasecmp.c: Likewise.
13503         * lib/memcasecmp.h: Likewise.
13504         * lib/memchr.c: Likewise.
13505         * lib/memcmp.c: Likewise.
13506         * lib/memcoll.c: Likewise.
13507         * lib/memcoll.h: Likewise.
13508         * lib/memcpy.c: Likewise.
13509         * lib/memrchr.c: Likewise.
13510         * lib/mkancesdirs.c: Likewise.
13511         * lib/mkdir-p.c: Likewise.
13512         * lib/mkdir-p.h: Likewise.
13513         * lib/mkdir.c: Likewise.
13514         * lib/mkdirat.c: Likewise.
13515         * lib/mkdtemp.c: Likewise.
13516         * lib/mkstemp-safer.c: Likewise.
13517         * lib/mkstemp.c: Likewise.
13518         * lib/modechange.c: Likewise.
13519         * lib/modechange.h: Likewise.
13520         * lib/mountlist.c: Likewise.
13521         * lib/mountlist.h: Likewise.
13522         * lib/mpsort.c: Likewise.
13523         * lib/nanosleep.c: Likewise.
13524         * lib/obstack.c: Likewise.
13525         * lib/obstack.h: Likewise.
13526         * lib/open-safer.c: Likewise.
13527         * lib/open.c: Likewise.
13528         * lib/openat-die.c: Likewise.
13529         * lib/openat-priv.h: Likewise.
13530         * lib/openat-proc.c: Likewise.
13531         * lib/openat.c: Likewise.
13532         * lib/openat.h: Likewise.
13533         * lib/pagealign_alloc.c: Likewise.
13534         * lib/pagealign_alloc.h: Likewise.
13535         * lib/physmem.c: Likewise.
13536         * lib/physmem.h: Likewise.
13537         * lib/pipe-safer.c: Likewise.
13538         * lib/pipe.c: Likewise.
13539         * lib/pipe.h: Likewise.
13540         * lib/posixtm.c: Likewise.
13541         * lib/posixtm.h: Likewise.
13542         * lib/posixver.c: Likewise.
13543         * lib/printf-frexp.c: Likewise.
13544         * lib/printf-frexp.h: Likewise.
13545         * lib/printf-frexpl.c: Likewise.
13546         * lib/printf-frexpl.h: Likewise.
13547         * lib/printf.c: Likewise.
13548         * lib/progname.c: Likewise.
13549         * lib/progname.h: Likewise.
13550         * lib/progreloc.c: Likewise.
13551         * lib/putenv.c: Likewise.
13552         * lib/quote.c: Likewise.
13553         * lib/quote.h: Likewise.
13554         * lib/quotearg.c: Likewise.
13555         * lib/quotearg.h: Likewise.
13556         * lib/raise.c: Likewise.
13557         * lib/readline.c: Likewise.
13558         * lib/readline.h: Likewise.
13559         * lib/readlink.c: Likewise.
13560         * lib/readtokens.c: Likewise.
13561         * lib/readtokens.h: Likewise.
13562         * lib/readtokens0.c: Likewise.
13563         * lib/readtokens0.h: Likewise.
13564         * lib/readutmp.c: Likewise.
13565         * lib/readutmp.h: Likewise.
13566         * lib/realloc.c: Likewise.
13567         * lib/relocwrapper.c: Likewise.
13568         * lib/rename-dest-slash.c: Likewise.
13569         * lib/rename.c: Likewise.
13570         * lib/rmdir.c: Likewise.
13571         * lib/rpmatch.c: Likewise.
13572         * lib/safe-read.c: Likewise.
13573         * lib/safe-read.h: Likewise.
13574         * lib/safe-write.c: Likewise.
13575         * lib/safe-write.h: Likewise.
13576         * lib/same-inode.h: Likewise.
13577         * lib/same.c: Likewise.
13578         * lib/same.h: Likewise.
13579         * lib/save-cwd.c: Likewise.
13580         * lib/save-cwd.h: Likewise.
13581         * lib/savedir.c: Likewise.
13582         * lib/savedir.h: Likewise.
13583         * lib/savewd.c: Likewise.
13584         * lib/savewd.h: Likewise.
13585         * lib/search.in.h: Likewise.
13586         * lib/setenv.c: Likewise.
13587         * lib/setenv.h: Likewise.
13588         * lib/settime.c: Likewise.
13589         * lib/sh-quote.c: Likewise.
13590         * lib/sh-quote.h: Likewise.
13591         * lib/sig2str.c: Likewise.
13592         * lib/sig2str.h: Likewise.
13593         * lib/signal.in.h: Likewise.
13594         * lib/signbitd.c: Likewise.
13595         * lib/signbitf.c: Likewise.
13596         * lib/signbitl.c: Likewise.
13597         * lib/sigprocmask.c: Likewise.
13598         * lib/sincosl.c: Likewise.
13599         * lib/sleep.c: Likewise.
13600         * lib/sprintf.c: Likewise.
13601         * lib/sqrtl.c: Likewise.
13602         * lib/stat-time.h: Likewise.
13603         * lib/stdio--.h: Likewise.
13604         * lib/stdio-safer.h: Likewise.
13605         * lib/stdlib--.h: Likewise.
13606         * lib/stdlib-safer.h: Likewise.
13607         * lib/stdlib.in.h: Likewise.
13608         * lib/stpcpy.c: Likewise.
13609         * lib/stpncpy.c: Likewise.
13610         * lib/strchrnul.c: Likewise.
13611         * lib/strcspn.c: Likewise.
13612         * lib/strerror.c: Likewise.
13613         * lib/strftime.c: Likewise.
13614         * lib/strftime.h: Likewise.
13615         * lib/striconveh.c: Likewise.
13616         * lib/striconveh.h: Likewise.
13617         * lib/striconveha.c: Likewise.
13618         * lib/striconveha.h: Likewise.
13619         * lib/stripslash.c: Likewise.
13620         * lib/strnlen1.c: Likewise.
13621         * lib/strnlen1.h: Likewise.
13622         * lib/strtod.c: Likewise.
13623         * lib/strtoimax.c: Likewise.
13624         * lib/strtok_r.c: Likewise.
13625         * lib/strtol.c: Likewise.
13626         * lib/strtoll.c: Likewise.
13627         * lib/strtoul.c: Likewise.
13628         * lib/strtoull.c: Likewise.
13629         * lib/sysexits.in.h: Likewise.
13630         * lib/tempname.c: Likewise.
13631         * lib/tempname.h: Likewise.
13632         * lib/timespec.h: Likewise.
13633         * lib/tls.c: Likewise.
13634         * lib/tls.h: Likewise.
13635         * lib/tmpdir.c: Likewise.
13636         * lib/tmpdir.h: Likewise.
13637         * lib/tmpfile-safer.c: Likewise.
13638         * lib/tmpfile.c: Likewise.
13639         * lib/trigl.c: Likewise.
13640         * lib/trigl.h: Likewise.
13641         * lib/trim.c: Likewise.
13642         * lib/trim.h: Likewise.
13643         * lib/trunc.c: Likewise.
13644         * lib/truncf.c: Likewise.
13645         * lib/truncl.c: Likewise.
13646         * lib/tsearch.c: Likewise.
13647         * lib/unicodeio.c: Likewise.
13648         * lib/unicodeio.h: Likewise.
13649         * lib/unistd--.h: Likewise.
13650         * lib/unistd-safer.h: Likewise.
13651         * lib/unistdio/ulc-fprintf.c: Likewise.
13652         * lib/unistdio/ulc-vfprintf.c: Likewise.
13653         * lib/unlinkdir.c: Likewise.
13654         * lib/unlinkdir.h: Likewise.
13655         * lib/unlocked-io.h: Likewise.
13656         * lib/unsetenv.c: Likewise.
13657         * lib/userspec.c: Likewise.
13658         * lib/utime.c: Likewise.
13659         * lib/utimecmp.c: Likewise.
13660         * lib/utimecmp.h: Likewise.
13661         * lib/utimens.c: Likewise.
13662         * lib/verify.h: Likewise.
13663         * lib/verror.c: Likewise.
13664         * lib/verror.h: Likewise.
13665         * lib/version-etc-fsf.c: Likewise.
13666         * lib/version-etc.c: Likewise.
13667         * lib/version-etc.h: Likewise.
13668         * lib/vfprintf.c: Likewise.
13669         * lib/vprintf.c: Likewise.
13670         * lib/vsprintf.c: Likewise.
13671         * lib/w32spawn.h: Likewise.
13672         * lib/wait-process.c: Likewise.
13673         * lib/wait-process.h: Likewise.
13674         * lib/wcwidth.c: Likewise.
13675         * lib/write-any-file.c: Likewise.
13676         * lib/xalloc-die.c: Likewise.
13677         * lib/xalloc.h: Likewise.
13678         * lib/xasprintf.c: Likewise.
13679         * lib/xgetcwd.c: Likewise.
13680         * lib/xgetcwd.h: Likewise.
13681         * lib/xgetdomainname.c: Likewise.
13682         * lib/xgetdomainname.h: Likewise.
13683         * lib/xgethostname.c: Likewise.
13684         * lib/xmalloc.c: Likewise.
13685         * lib/xmalloca.c: Likewise.
13686         * lib/xmalloca.h: Likewise.
13687         * lib/xmemcoll.c: Likewise.
13688         * lib/xnanosleep.c: Likewise.
13689         * lib/xreadlink.c: Likewise.
13690         * lib/xreadlink.h: Likewise.
13691         * lib/xsetenv.c: Likewise.
13692         * lib/xsetenv.h: Likewise.
13693         * lib/xstriconv.c: Likewise.
13694         * lib/xstriconv.h: Likewise.
13695         * lib/xstrndup.c: Likewise.
13696         * lib/xstrndup.h: Likewise.
13697         * lib/xstrtod.c: Likewise.
13698         * lib/xstrtod.h: Likewise.
13699         * lib/xstrtol-error.c: Likewise.
13700         * lib/xstrtol.c: Likewise.
13701         * lib/xstrtol.h: Likewise.
13702         * lib/xtime.h: Likewise.
13703         * lib/xvasprintf.c: Likewise.
13704         * lib/xvasprintf.h: Likewise.
13705         * lib/yesno.c: Likewise.
13706         * lib/yesno.h: Likewise.
13707         * posix-modules: Likewise.
13708         * tests/test-alloca-opt.c: Likewise.
13709         * tests/test-arcfour.c: Likewise.
13710         * tests/test-arctwo.c: Likewise.
13711         * tests/test-argmatch.c: Likewise.
13712         * tests/test-argp-2.sh: Likewise.
13713         * tests/test-argp.c: Likewise.
13714         * tests/test-arpa_inet.c: Likewise.
13715         * tests/test-array_list.c: Likewise.
13716         * tests/test-array_oset.c: Likewise.
13717         * tests/test-atexit.c: Likewise.
13718         * tests/test-avltree_list.c: Likewise.
13719         * tests/test-avltree_oset.c: Likewise.
13720         * tests/test-avltreehash_list.c: Likewise.
13721         * tests/test-base64.c: Likewise.
13722         * tests/test-binary-io.c: Likewise.
13723         * tests/test-byteswap.c: Likewise.
13724         * tests/test-c-ctype.c: Likewise.
13725         * tests/test-c-strcasecmp.c: Likewise.
13726         * tests/test-c-strcasestr.c: Likewise.
13727         * tests/test-c-strncasecmp.c: Likewise.
13728         * tests/test-c-strstr.c: Likewise.
13729         * tests/test-canonicalize-lgpl.c: Likewise.
13730         * tests/test-canonicalize.c: Likewise.
13731         * tests/test-carray_list.c: Likewise.
13732         * tests/test-ceilf.c: Likewise.
13733         * tests/test-ceill.c: Likewise.
13734         * tests/test-count-one-bits.c: Likewise.
13735         * tests/test-crc.c: Likewise.
13736         * tests/test-dirname.c: Likewise.
13737         * tests/test-fbufmode.c: Likewise.
13738         * tests/test-fcntl.c: Likewise.
13739         * tests/test-fflush.c: Likewise.
13740         * tests/test-floorf.c: Likewise.
13741         * tests/test-floorl.c: Likewise.
13742         * tests/test-fopen.c: Likewise.
13743         * tests/test-fprintf-posix.c: Likewise.
13744         * tests/test-fprintf-posix.h: Likewise.
13745         * tests/test-fpurge.c: Likewise.
13746         * tests/test-freadable.c: Likewise.
13747         * tests/test-freadahead.c: Likewise.
13748         * tests/test-freading.c: Likewise.
13749         * tests/test-freopen.c: Likewise.
13750         * tests/test-frexp.c: Likewise.
13751         * tests/test-frexpl.c: Likewise.
13752         * tests/test-fseek.c: Likewise.
13753         * tests/test-fseeko.c: Likewise.
13754         * tests/test-fseterr.c: Likewise.
13755         * tests/test-fstrcmp.c: Likewise.
13756         * tests/test-ftell.c: Likewise.
13757         * tests/test-ftello.c: Likewise.
13758         * tests/test-fwritable.c: Likewise.
13759         * tests/test-fwriting.c: Likewise.
13760         * tests/test-getaddrinfo.c: Likewise.
13761         * tests/test-getpass.c: Likewise.
13762         * tests/test-gettimeofday.c: Likewise.
13763         * tests/test-hmac-md5.c: Likewise.
13764         * tests/test-hmac-sha1.c: Likewise.
13765         * tests/test-iconv.c: Likewise.
13766         * tests/test-iconvme.c: Likewise.
13767         * tests/test-inttypes.c: Likewise.
13768         * tests/test-isnan.c: Likewise.
13769         * tests/test-isnanf.c: Likewise.
13770         * tests/test-isnanl-nolibm.c: Likewise.
13771         * tests/test-isnanl.c: Likewise.
13772         * tests/test-isnanl.h: Likewise.
13773         * tests/test-ldexpl.c: Likewise.
13774         * tests/test-linked_list.c: Likewise.
13775         * tests/test-linkedhash_list.c: Likewise.
13776         * tests/test-locale.c: Likewise.
13777         * tests/test-localename.c: Likewise.
13778         * tests/test-lock.c: Likewise.
13779         * tests/test-lseek.c: Likewise.
13780         * tests/test-malloca.c: Likewise.
13781         * tests/test-math.c: Likewise.
13782         * tests/test-mbscasecmp.c: Likewise.
13783         * tests/test-mbscasestr1.c: Likewise.
13784         * tests/test-mbscasestr2.c: Likewise.
13785         * tests/test-mbscasestr3.c: Likewise.
13786         * tests/test-mbscasestr4.c: Likewise.
13787         * tests/test-mbschr.c: Likewise.
13788         * tests/test-mbscspn.c: Likewise.
13789         * tests/test-mbsncasecmp.c: Likewise.
13790         * tests/test-mbspbrk.c: Likewise.
13791         * tests/test-mbspcasecmp.c: Likewise.
13792         * tests/test-mbsrchr.c: Likewise.
13793         * tests/test-mbsspn.c: Likewise.
13794         * tests/test-mbsstr1.c: Likewise.
13795         * tests/test-mbsstr2.c: Likewise.
13796         * tests/test-mbsstr3.c: Likewise.
13797         * tests/test-md5.c: Likewise.
13798         * tests/test-memmem.c: Likewise.
13799         * tests/test-netinet_in.c: Likewise.
13800         * tests/test-open.c: Likewise.
13801         * tests/test-printf-frexp.c: Likewise.
13802         * tests/test-printf-frexpl.c: Likewise.
13803         * tests/test-printf-posix.c: Likewise.
13804         * tests/test-printf-posix.h: Likewise.
13805         * tests/test-rbtree_list.c: Likewise.
13806         * tests/test-rbtree_oset.c: Likewise.
13807         * tests/test-rbtreehash_list.c: Likewise.
13808         * tests/test-read-file.c: Likewise.
13809         * tests/test-rijndael.c: Likewise.
13810         * tests/test-search.c: Likewise.
13811         * tests/test-signbit.c: Likewise.
13812         * tests/test-sleep.c: Likewise.
13813         * tests/test-snprintf-posix.c: Likewise.
13814         * tests/test-snprintf-posix.h: Likewise.
13815         * tests/test-snprintf.c: Likewise.
13816         * tests/test-sprintf-posix.c: Likewise.
13817         * tests/test-sprintf-posix.h: Likewise.
13818         * tests/test-stat-time.c: Likewise.
13819         * tests/test-stdbool.c: Likewise.
13820         * tests/test-stdint.c: Likewise.
13821         * tests/test-stdio.c: Likewise.
13822         * tests/test-stdlib.c: Likewise.
13823         * tests/test-stpncpy.c: Likewise.
13824         * tests/test-strcasestr.c: Likewise.
13825         * tests/test-striconv.c: Likewise.
13826         * tests/test-striconveh.c: Likewise.
13827         * tests/test-striconveha.c: Likewise.
13828         * tests/test-string.c: Likewise.
13829         * tests/test-sys_select.c: Likewise.
13830         * tests/test-sys_socket.c: Likewise.
13831         * tests/test-sys_stat.c: Likewise.
13832         * tests/test-sys_time.c: Likewise.
13833         * tests/test-sysexits.c: Likewise.
13834         * tests/test-time.c: Likewise.
13835         * tests/test-tls.c: Likewise.
13836         * tests/test-trunc.c: Likewise.
13837         * tests/test-truncf.c: Likewise.
13838         * tests/test-truncl.c: Likewise.
13839         * tests/test-unistd.c: Likewise.
13840         * tests/test-vasnprintf-posix.c: Likewise.
13841         * tests/test-vasnprintf-posix2.c: Likewise.
13842         * tests/test-vasnprintf.c: Likewise.
13843         * tests/test-vasprintf-posix.c: Likewise.
13844         * tests/test-vasprintf.c: Likewise.
13845         * tests/test-verify.c: Likewise.
13846         * tests/test-vfprintf-posix.c: Likewise.
13847         * tests/test-vprintf-posix.c: Likewise.
13848         * tests/test-vsnprintf-posix.c: Likewise.
13849         * tests/test-vsnprintf.c: Likewise.
13850         * tests/test-vsprintf-posix.c: Likewise.
13851         * tests/test-wchar.c: Likewise.
13852         * tests/test-wctype.c: Likewise.
13853         * tests/test-wcwidth.c: Likewise.
13854         * tests/test-xstrtol.c: Likewise.
13855         * tests/test-xvasprintf.c: Likewise.
13856         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
13857         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
13858         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
13859         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
13860         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
13861         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
13862         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
13863         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
13864         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
13865         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
13866         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
13867         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
13868         * tests/uniname/test-uninames.c: Likewise.
13869         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
13870         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
13871         * tests/unistdio/test-u16-printf1.h: Likewise.
13872         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
13873         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
13874         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
13875         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
13876         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
13877         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
13878         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
13879         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
13880         * tests/unistdio/test-u32-printf1.h: Likewise.
13881         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
13882         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
13883         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
13884         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
13885         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
13886         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
13887         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
13888         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
13889         * tests/unistdio/test-u8-printf1.h: Likewise.
13890         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
13891         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
13892         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
13893         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
13894         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
13895         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
13896         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
13897         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
13898         * tests/unistdio/test-ulc-printf1.h: Likewise.
13899         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
13900         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
13901         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
13902         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
13903         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
13904         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
13905         * tests/uniwidth/test-u16-strwidth.c: Likewise.
13906         * tests/uniwidth/test-u16-width.c: Likewise.
13907         * tests/uniwidth/test-u32-strwidth.c: Likewise.
13908         * tests/uniwidth/test-u32-width.c: Likewise.
13909         * tests/uniwidth/test-u8-strwidth.c: Likewise.
13910         * tests/uniwidth/test-u8-width.c: Likewise.
13911         * tests/uniwidth/test-uc_width.c: Likewise.
13912         * config/srclist-update: Likewise.
13913         (fixlicense): Update to GPLv3+.
13914
13915         Change copyright notice from LGPLv2.1+ to LGPLv3+.
13916         * tests/test-tsearch.c: Change copyright notice.
13917
13918         Change copyright notice from LGPLv2.0+ to LGPLv3+.
13919         * lib/c-strcaseeq.h: Change copyright notice.
13920         * lib/streq.h: Likewise.
13921         * lib/uniconv.h: Likewise.
13922         * lib/uniconv/u-conv-from-enc.h: Likewise.
13923         * lib/uniconv/u-conv-to-enc.h: Likewise.
13924         * lib/uniconv/u-strconv-from-enc.h: Likewise.
13925         * lib/uniconv/u-strconv-to-enc.h: Likewise.
13926         * lib/uniconv/u16-conv-from-enc.c: Likewise.
13927         * lib/uniconv/u16-conv-to-enc.c: Likewise.
13928         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
13929         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
13930         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
13931         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
13932         * lib/uniconv/u32-conv-from-enc.c: Likewise.
13933         * lib/uniconv/u32-conv-to-enc.c: Likewise.
13934         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
13935         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
13936         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
13937         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
13938         * lib/uniconv/u8-conv-from-enc.c: Likewise.
13939         * lib/uniconv/u8-conv-to-enc.c: Likewise.
13940         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
13941         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
13942         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
13943         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
13944         * lib/uniname.h: Likewise.
13945         * lib/uniname/uniname.c: Likewise.
13946         * lib/unistdio.h: Likewise.
13947         * lib/unistdio/u-asnprintf.h: Likewise.
13948         * lib/unistdio/u-asprintf.h: Likewise.
13949         * lib/unistdio/u-printf-args.c: Likewise.
13950         * lib/unistdio/u-printf-args.h: Likewise.
13951         * lib/unistdio/u-printf-parse.h: Likewise.
13952         * lib/unistdio/u-snprintf.h: Likewise.
13953         * lib/unistdio/u-sprintf.h: Likewise.
13954         * lib/unistdio/u-vasprintf.h: Likewise.
13955         * lib/unistdio/u-vsnprintf.h: Likewise.
13956         * lib/unistdio/u-vsprintf.h: Likewise.
13957         * lib/unistdio/u16-asnprintf.c: Likewise.
13958         * lib/unistdio/u16-asprintf.c: Likewise.
13959         * lib/unistdio/u16-printf-parse.c: Likewise.
13960         * lib/unistdio/u16-snprintf.c: Likewise.
13961         * lib/unistdio/u16-sprintf.c: Likewise.
13962         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
13963         * lib/unistdio/u16-u16-asprintf.c: Likewise.
13964         * lib/unistdio/u16-u16-snprintf.c: Likewise.
13965         * lib/unistdio/u16-u16-sprintf.c: Likewise.
13966         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
13967         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
13968         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
13969         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
13970         * lib/unistdio/u16-vasnprintf.c: Likewise.
13971         * lib/unistdio/u16-vasprintf.c: Likewise.
13972         * lib/unistdio/u16-vsnprintf.c: Likewise.
13973         * lib/unistdio/u16-vsprintf.c: Likewise.
13974         * lib/unistdio/u32-asnprintf.c: Likewise.
13975         * lib/unistdio/u32-asprintf.c: Likewise.
13976         * lib/unistdio/u32-printf-parse.c: Likewise.
13977         * lib/unistdio/u32-snprintf.c: Likewise.
13978         * lib/unistdio/u32-sprintf.c: Likewise.
13979         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
13980         * lib/unistdio/u32-u32-asprintf.c: Likewise.
13981         * lib/unistdio/u32-u32-snprintf.c: Likewise.
13982         * lib/unistdio/u32-u32-sprintf.c: Likewise.
13983         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
13984         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
13985         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
13986         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
13987         * lib/unistdio/u32-vasnprintf.c: Likewise.
13988         * lib/unistdio/u32-vasprintf.c: Likewise.
13989         * lib/unistdio/u32-vsnprintf.c: Likewise.
13990         * lib/unistdio/u32-vsprintf.c: Likewise.
13991         * lib/unistdio/u8-asnprintf.c: Likewise.
13992         * lib/unistdio/u8-asprintf.c: Likewise.
13993         * lib/unistdio/u8-printf-parse.c: Likewise.
13994         * lib/unistdio/u8-snprintf.c: Likewise.
13995         * lib/unistdio/u8-sprintf.c: Likewise.
13996         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
13997         * lib/unistdio/u8-u8-asprintf.c: Likewise.
13998         * lib/unistdio/u8-u8-snprintf.c: Likewise.
13999         * lib/unistdio/u8-u8-sprintf.c: Likewise.
14000         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
14001         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
14002         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
14003         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
14004         * lib/unistdio/u8-vasnprintf.c: Likewise.
14005         * lib/unistdio/u8-vasprintf.c: Likewise.
14006         * lib/unistdio/u8-vsnprintf.c: Likewise.
14007         * lib/unistdio/u8-vsprintf.c: Likewise.
14008         * lib/unistdio/ulc-asnprintf.c: Likewise.
14009         * lib/unistdio/ulc-asprintf.c: Likewise.
14010         * lib/unistdio/ulc-printf-parse.c: Likewise.
14011         * lib/unistdio/ulc-snprintf.c: Likewise.
14012         * lib/unistdio/ulc-sprintf.c: Likewise.
14013         * lib/unistdio/ulc-vasnprintf.c: Likewise.
14014         * lib/unistdio/ulc-vasprintf.c: Likewise.
14015         * lib/unistdio/ulc-vsnprintf.c: Likewise.
14016         * lib/unistdio/ulc-vsprintf.c: Likewise.
14017         * lib/unistr.h: Likewise.
14018         * lib/unistr/u-cpy-alloc.h: Likewise.
14019         * lib/unistr/u-cpy.h: Likewise.
14020         * lib/unistr/u-endswith.h: Likewise.
14021         * lib/unistr/u-move.h: Likewise.
14022         * lib/unistr/u-set.h: Likewise.
14023         * lib/unistr/u-startswith.h: Likewise.
14024         * lib/unistr/u-stpcpy.h: Likewise.
14025         * lib/unistr/u-stpncpy.h: Likewise.
14026         * lib/unistr/u-strcat.h: Likewise.
14027         * lib/unistr/u-strcpy.h: Likewise.
14028         * lib/unistr/u-strcspn.h: Likewise.
14029         * lib/unistr/u-strdup.h: Likewise.
14030         * lib/unistr/u-strlen.h: Likewise.
14031         * lib/unistr/u-strncat.h: Likewise.
14032         * lib/unistr/u-strncpy.h: Likewise.
14033         * lib/unistr/u-strnlen.h: Likewise.
14034         * lib/unistr/u-strpbrk.h: Likewise.
14035         * lib/unistr/u-strspn.h: Likewise.
14036         * lib/unistr/u-strstr.h: Likewise.
14037         * lib/unistr/u-strtok.h: Likewise.
14038         * lib/unistr/u16-check.c: Likewise.
14039         * lib/unistr/u16-chr.c: Likewise.
14040         * lib/unistr/u16-cmp.c: Likewise.
14041         * lib/unistr/u16-cpy-alloc.c: Likewise.
14042         * lib/unistr/u16-cpy.c: Likewise.
14043         * lib/unistr/u16-endswith.c: Likewise.
14044         * lib/unistr/u16-mblen.c: Likewise.
14045         * lib/unistr/u16-mbsnlen.c: Likewise.
14046         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14047         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14048         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14049         * lib/unistr/u16-mbtouc.c: Likewise.
14050         * lib/unistr/u16-mbtoucr.c: Likewise.
14051         * lib/unistr/u16-move.c: Likewise.
14052         * lib/unistr/u16-next.c: Likewise.
14053         * lib/unistr/u16-prev.c: Likewise.
14054         * lib/unistr/u16-set.c: Likewise.
14055         * lib/unistr/u16-startswith.c: Likewise.
14056         * lib/unistr/u16-stpcpy.c: Likewise.
14057         * lib/unistr/u16-stpncpy.c: Likewise.
14058         * lib/unistr/u16-strcat.c: Likewise.
14059         * lib/unistr/u16-strchr.c: Likewise.
14060         * lib/unistr/u16-strcmp.c: Likewise.
14061         * lib/unistr/u16-strcpy.c: Likewise.
14062         * lib/unistr/u16-strcspn.c: Likewise.
14063         * lib/unistr/u16-strdup.c: Likewise.
14064         * lib/unistr/u16-strlen.c: Likewise.
14065         * lib/unistr/u16-strmblen.c: Likewise.
14066         * lib/unistr/u16-strmbtouc.c: Likewise.
14067         * lib/unistr/u16-strncat.c: Likewise.
14068         * lib/unistr/u16-strncmp.c: Likewise.
14069         * lib/unistr/u16-strncpy.c: Likewise.
14070         * lib/unistr/u16-strnlen.c: Likewise.
14071         * lib/unistr/u16-strpbrk.c: Likewise.
14072         * lib/unistr/u16-strrchr.c: Likewise.
14073         * lib/unistr/u16-strspn.c: Likewise.
14074         * lib/unistr/u16-strstr.c: Likewise.
14075         * lib/unistr/u16-strtok.c: Likewise.
14076         * lib/unistr/u16-to-u32.c: Likewise.
14077         * lib/unistr/u16-to-u8.c: Likewise.
14078         * lib/unistr/u16-uctomb-aux.c: Likewise.
14079         * lib/unistr/u16-uctomb.c: Likewise.
14080         * lib/unistr/u32-check.c: Likewise.
14081         * lib/unistr/u32-chr.c: Likewise.
14082         * lib/unistr/u32-cmp.c: Likewise.
14083         * lib/unistr/u32-cpy-alloc.c: Likewise.
14084         * lib/unistr/u32-cpy.c: Likewise.
14085         * lib/unistr/u32-endswith.c: Likewise.
14086         * lib/unistr/u32-mblen.c: Likewise.
14087         * lib/unistr/u32-mbsnlen.c: Likewise.
14088         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14089         * lib/unistr/u32-mbtouc.c: Likewise.
14090         * lib/unistr/u32-mbtoucr.c: Likewise.
14091         * lib/unistr/u32-move.c: Likewise.
14092         * lib/unistr/u32-next.c: Likewise.
14093         * lib/unistr/u32-prev.c: Likewise.
14094         * lib/unistr/u32-set.c: Likewise.
14095         * lib/unistr/u32-startswith.c: Likewise.
14096         * lib/unistr/u32-stpcpy.c: Likewise.
14097         * lib/unistr/u32-stpncpy.c: Likewise.
14098         * lib/unistr/u32-strcat.c: Likewise.
14099         * lib/unistr/u32-strchr.c: Likewise.
14100         * lib/unistr/u32-strcmp.c: Likewise.
14101         * lib/unistr/u32-strcpy.c: Likewise.
14102         * lib/unistr/u32-strcspn.c: Likewise.
14103         * lib/unistr/u32-strdup.c: Likewise.
14104         * lib/unistr/u32-strlen.c: Likewise.
14105         * lib/unistr/u32-strmblen.c: Likewise.
14106         * lib/unistr/u32-strmbtouc.c: Likewise.
14107         * lib/unistr/u32-strncat.c: Likewise.
14108         * lib/unistr/u32-strncmp.c: Likewise.
14109         * lib/unistr/u32-strncpy.c: Likewise.
14110         * lib/unistr/u32-strnlen.c: Likewise.
14111         * lib/unistr/u32-strpbrk.c: Likewise.
14112         * lib/unistr/u32-strrchr.c: Likewise.
14113         * lib/unistr/u32-strspn.c: Likewise.
14114         * lib/unistr/u32-strstr.c: Likewise.
14115         * lib/unistr/u32-strtok.c: Likewise.
14116         * lib/unistr/u32-to-u16.c: Likewise.
14117         * lib/unistr/u32-to-u8.c: Likewise.
14118         * lib/unistr/u32-uctomb.c: Likewise.
14119         * lib/unistr/u8-check.c: Likewise.
14120         * lib/unistr/u8-chr.c: Likewise.
14121         * lib/unistr/u8-cmp.c: Likewise.
14122         * lib/unistr/u8-cpy-alloc.c: Likewise.
14123         * lib/unistr/u8-cpy.c: Likewise.
14124         * lib/unistr/u8-endswith.c: Likewise.
14125         * lib/unistr/u8-mblen.c: Likewise.
14126         * lib/unistr/u8-mbsnlen.c: Likewise.
14127         * lib/unistr/u8-mbtouc-aux.c: Likewise.
14128         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14129         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14130         * lib/unistr/u8-mbtouc.c: Likewise.
14131         * lib/unistr/u8-mbtoucr.c: Likewise.
14132         * lib/unistr/u8-move.c: Likewise.
14133         * lib/unistr/u8-next.c: Likewise.
14134         * lib/unistr/u8-prev.c: Likewise.
14135         * lib/unistr/u8-set.c: Likewise.
14136         * lib/unistr/u8-startswith.c: Likewise.
14137         * lib/unistr/u8-stpcpy.c: Likewise.
14138         * lib/unistr/u8-stpncpy.c: Likewise.
14139         * lib/unistr/u8-strcat.c: Likewise.
14140         * lib/unistr/u8-strchr.c: Likewise.
14141         * lib/unistr/u8-strcmp.c: Likewise.
14142         * lib/unistr/u8-strcpy.c: Likewise.
14143         * lib/unistr/u8-strcspn.c: Likewise.
14144         * lib/unistr/u8-strdup.c: Likewise.
14145         * lib/unistr/u8-strlen.c: Likewise.
14146         * lib/unistr/u8-strmblen.c: Likewise.
14147         * lib/unistr/u8-strmbtouc.c: Likewise.
14148         * lib/unistr/u8-strncat.c: Likewise.
14149         * lib/unistr/u8-strncmp.c: Likewise.
14150         * lib/unistr/u8-strncpy.c: Likewise.
14151         * lib/unistr/u8-strnlen.c: Likewise.
14152         * lib/unistr/u8-strpbrk.c: Likewise.
14153         * lib/unistr/u8-strrchr.c: Likewise.
14154         * lib/unistr/u8-strspn.c: Likewise.
14155         * lib/unistr/u8-strstr.c: Likewise.
14156         * lib/unistr/u8-strtok.c: Likewise.
14157         * lib/unistr/u8-to-u16.c: Likewise.
14158         * lib/unistr/u8-to-u32.c: Likewise.
14159         * lib/unistr/u8-uctomb-aux.c: Likewise.
14160         * lib/unistr/u8-uctomb.c: Likewise.
14161         * lib/unitypes.h: Likewise.
14162         * lib/uniwidth.h: Likewise.
14163         * lib/uniwidth/cjk.h: Likewise.
14164         * lib/uniwidth/u16-strwidth.c: Likewise.
14165         * lib/uniwidth/u16-width.c: Likewise.
14166         * lib/uniwidth/u32-strwidth.c: Likewise.
14167         * lib/uniwidth/u32-width.c: Likewise.
14168         * lib/uniwidth/u8-strwidth.c: Likewise.
14169         * lib/uniwidth/u8-width.c: Likewise.
14170         * lib/uniwidth/width.c: Likewise.
14171
14172 2007-10-07  Bruno Haible  <bruno@clisp.org>
14173
14174         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
14175         The file is still under LGPL (see modules/inttypes).
14176
14177 2007-10-06  Bruno Haible  <bruno@clisp.org>
14178
14179         * modules/trunc (Dependencies): Add 'extensions'.
14180         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
14181         Reported by Ben Pfaff <blp@gnu.org>.
14182
14183 2007-10-06  Bruno Haible  <bruno@clisp.org>
14184
14185         * modules/freopen-tests: New file.
14186         * tests/test-freopen.c: New file.
14187
14188         * modules/fopen-tests: New file.
14189         * tests/test-fopen.c: New file.
14190
14191         * modules/fopen: New file.
14192         * lib/fopen.c: New file.
14193         * m4/fopen.m4: New file.
14194         * modules/freopen: New file.
14195         * lib/freopen.c: New file.
14196         * m4/freopen.m4: New file.
14197         * lib/stdio.in.h (fopen, freopen): New declarations.
14198         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
14199         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
14200         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
14201         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
14202         * doc/functions/fopen.texi: Mention the 'fopen' module.
14203         * doc/functions/freopen.texi: Mention the 'freopen' module.
14204
14205 2007-10-06  Bruno Haible  <bruno@clisp.org>
14206
14207         * modules/open-tests: New file.
14208         * tests/test-open.c: New file.
14209
14210         * modules/open: New file.
14211         * lib/open.c: New file.
14212         * m4/open.m4: New file.
14213         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
14214         lib/open.c does.
14215         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
14216         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
14217         macros.
14218         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
14219         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
14220         REPLACE_OPEN.
14221         * doc/functions/open.texi: Mention the 'open' module.
14222
14223 2007-10-04  Bruno Haible  <bruno@clisp.org>
14224
14225         * modules/ceill-tests: New file.
14226         * tests/test-ceill.c: New file.
14227
14228         * modules/ceill: New file.
14229         * lib/ceill.c: Replace entire file.
14230         * m4/ceill.m4: New file.
14231         * lib/math.in.h (ceill): Replace declaration.
14232         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
14233         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
14234         * doc/functions/ceill.texi: Mention the 'ceill' module.
14235         * modules/mathl (Files): Remove lib/ceill.c.
14236         (Depends-on): Add ceill.
14237
14238 2007-10-04  Bruno Haible  <bruno@clisp.org>
14239
14240         * modules/ceilf-tests: New file.
14241         * tests/test-ceilf.c: New file.
14242
14243         * modules/ceilf: New file.
14244         * lib/ceil.c: New file.
14245         * lib/ceilf.c: New file.
14246         * m4/ceilf.m4: New file.
14247         * lib/math.in.h (ceilf): New declaration.
14248         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
14249         HAVE_DECL_CEILF.
14250         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
14251         HAVE_DECL_CEILF.
14252         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
14253
14254 2007-10-04  Bruno Haible  <bruno@clisp.org>
14255
14256         * modules/floorl-tests: New file.
14257         * tests/test-floorl.c: New file.
14258
14259         * modules/floorl: New file.
14260         * lib/floorl.c: Replace entire file.
14261         * m4/floorl.m4: New file.
14262         * lib/math.in.h (floorl): Replace declaration.
14263         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
14264         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
14265         * doc/functions/floorl.texi: Mention the 'floorl' module.
14266         * modules/mathl (Files): Remove lib/floorl.c.
14267         (Depends-on): Add floorl.
14268
14269 2007-10-04  Bruno Haible  <bruno@clisp.org>
14270
14271         * modules/floorf-tests: New file.
14272         * tests/test-floorf.c: New file.
14273
14274         * modules/floorf: New file.
14275         * lib/floor.c: New file.
14276         * lib/floorf.c: New file.
14277         * m4/floorf.m4: New file.
14278         * lib/math.in.h (floorf): New declaration.
14279         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
14280         HAVE_DECL_FLOORF.
14281         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
14282         HAVE_DECL_FLOORF.
14283         * doc/functions/floorf.texi: Mention the 'floorf' module.
14284
14285 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
14286             Bruno Haible  <bruno@clisp.org>
14287
14288         Advertise for the Git server instead of the CVS server.
14289         * doc/gnulib-intro.texi (Steady Development): Mention the Git
14290         repository instead of the CVS one.
14291         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
14292         about all VCS systems generically.
14293         * doc/gnulib.texi (Introduction): Capitalize `Git'.
14294
14295 2007-10-04  Bruno Haible  <bruno@clisp.org>
14296
14297         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
14298         means.
14299         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
14300
14301 2007-10-04  Bruno Haible  <bruno@clisp.org>
14302
14303         * modules/truncl-tests: New file.
14304         * tests/test-truncl.c: New file.
14305
14306         * modules/truncl: New file.
14307         * lib/truncl.c: New file.
14308         * m4/truncl.m4: New file.
14309         * lib/math.in.h (truncl): New declaration.
14310         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
14311         HAVE_DECL_TRUNCL.
14312         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
14313         HAVE_DECL_TRUNCL.
14314         * doc/functions/truncl.texi: Mention the 'truncl' module.
14315
14316 2007-10-04  Bruno Haible  <bruno@clisp.org>
14317
14318         * modules/truncf-tests: New file.
14319         * tests/test-truncf.c: New file.
14320
14321         * modules/truncf: New file.
14322         * lib/trunc.c: Make paramerizable through USE_* macros.
14323         * lib/truncf.c: New file.
14324         * m4/truncf.m4: New file.
14325         * lib/math.in.h (truncf): New declaration.
14326         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
14327         HAVE_DECL_TRUNCF.
14328         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
14329         HAVE_DECL_TRUNCF.
14330         * doc/functions/truncf.texi: Mention the 'truncf' module.
14331
14332 2007-10-03  Bruno Haible  <bruno@clisp.org>
14333
14334         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
14335         augmentation also for tests modules.
14336         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
14337         * modules/atexit-tests (Makefile.am): Likewise.
14338         * modules/binary-io-tests (Makefile.am): Likewise.
14339         * modules/c-strcase-tests (Makefile.am): Likewise.
14340         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
14341         * modules/canonicalize-tests (Makefile.am): Likewise.
14342         * modules/closein-tests (Makefile.am): Likewise.
14343         * modules/fprintf-posix-tests (Makefile.am): Likewise.
14344         * modules/freadahead-tests (Makefile.am): Likewise.
14345         * modules/fseek-tests (Makefile.am): Likewise.
14346         * modules/fseeko-tests (Makefile.am): Likewise.
14347         * modules/ftell-tests (Makefile.am): Likewise.
14348         * modules/ftello-tests (Makefile.am): Likewise.
14349         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
14350         * modules/isnanl-tests (Makefile.am): Likewise.
14351         * modules/lseek-tests (Makefile.am): Likewise.
14352         * modules/mbscasecmp-tests (Makefile.am): Likewise.
14353         * modules/mbscasestr-tests (Makefile.am): Likewise.
14354         * modules/mbschr-tests (Makefile.am): Likewise.
14355         * modules/mbscspn-tests (Makefile.am): Likewise.
14356         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
14357         * modules/mbspbrk-tests (Makefile.am): Likewise.
14358         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
14359         * modules/mbsrchr-tests (Makefile.am): Likewise.
14360         * modules/mbsspn-tests (Makefile.am): Likewise.
14361         * modules/mbsstr-tests (Makefile.am): Likewise.
14362         * modules/printf-posix-tests (Makefile.am): Likewise.
14363         * modules/snprintf-posix-tests (Makefile.am): Likewise.
14364         * modules/sprintf-posix-tests (Makefile.am): Likewise.
14365         * modules/tsearch-tests (Makefile.am): Likewise.
14366         * modules/uniname/uniname-tests (Makefile.am): Likewise.
14367         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
14368         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
14369         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
14370         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
14371         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
14372         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
14373         * modules/vprintf-posix-tests (Makefile.am): Likewise.
14374         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
14375         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
14376         * modules/xstrtoimax-tests (Makefile.am): Likewise.
14377         * modules/xstrtol-tests (Makefile.am): Likewise.
14378         * modules/xstrtoumax-tests (Makefile.am): Likewise.
14379         * modules/yesno-tests (Makefile.am): Likewise.
14380
14381 2007-10-03  Bruno Haible  <bruno@clisp.org>
14382
14383         * modules/trunc-tests: New file.
14384         * tests/test-trunc.c: New file.
14385
14386         * modules/trunc: New file.
14387         * lib/trunc.c: New file.
14388         * m4/trunc.m4: New file.
14389         * lib/math.in.h (trunc): New declaration.
14390         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
14391         HAVE_DECL_TRUNC.
14392         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
14393         HAVE_DECL_TRUNC.
14394         * doc/functions/trunc.texi: Mention the 'trunc' module.
14395
14396 2007-10-03  Bruno Haible  <bruno@clisp.org>
14397
14398         * tests/test-fpending.c: New file, mostly copied
14399         from coreutils/lib/t-fpending.c.
14400         * modules/fpending-tests: New file.
14401
14402 2007-10-03  Bruno Haible  <bruno@clisp.org>
14403
14404         Port the stdio extensions to QNX (untested).
14405         * lib/fseterr.c (fseterr): Add support for QNX.
14406         * lib/fbufmode.c (fbufmode): Likewise.
14407         * lib/freadable.c (freadable): Likewise.
14408         * lib/fwritable.c (fwritable): Likewise.
14409         * lib/freading.c (freading): Likewise.
14410         * lib/fwriting.c (fwriting): Likewise.
14411         * lib/freadahead.c (freadahed): Likewise.
14412         * lib/fpurge.c (fpurge): Likewise.
14413         * lib/fseeko.c (rpl_fseeko): Likewise.
14414
14415 2007-10-03  Bruno Haible  <bruno@clisp.org>
14416             Jim Meyering  <jim@meyering.net>
14417             Eric Blake  <ebb9@byu.net>
14418
14419         * doc/relocatable.texi: Use @command instead of @program.
14420
14421 2007-10-02  Jim Meyering  <jim@meyering.net>
14422
14423         Perform one more "_.h" -> ".in.h" substitution.
14424         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
14425         instead of unistd_.h here, too.
14426
14427 2007-10-01  Bruno Haible  <bruno@clisp.org>
14428
14429         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
14430         Needed for the alloca-opt module.
14431
14432 2007-09-30  Bruno Haible  <bruno@clisp.org>
14433
14434         * lib/alloca.in.h: Renamed from lib/alloca_.h.
14435         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
14436         alloca_.h.
14437         * lib/argz.in.h: Renamed from lib/argz_.h.
14438         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
14439         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
14440         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
14441         byteswap_.h.
14442         * lib/dirent.in.h: Renamed from lib/dirent_.h.
14443         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
14444         dirent_.h.
14445         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
14446         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
14447         fcntl_.h.
14448         * lib/float.in.h: Renamed from lib/float_.h.
14449         * modules/float (Files, Makefile.am): Use float.in.h instead of
14450         float_.h.
14451         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
14452         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
14453         fnmatch_.h.
14454         * lib/getopt.in.h: Renamed from lib/getopt_.h.
14455         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
14456         getopt_.h.
14457         * lib/glob.in.h: Renamed from lib/glob_.h.
14458         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
14459         * lib/iconv.in.h: Renamed from lib/iconv_.h.
14460         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
14461         iconv_.h.
14462         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
14463         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
14464         inttypes_.h.
14465         * lib/locale.in.h: Renamed from lib/locale_.h.
14466         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
14467         locale_.h.
14468         * lib/math.in.h: Renamed from lib/math_.h.
14469         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
14470         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
14471         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
14472         of netinet_in_.h. Add dependency.
14473         * lib/poll.in.h: Renamed from lib/poll_.h.
14474         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
14475         * lib/search.in.h: Renamed from lib/search_.h.
14476         * modules/search (Files, Makefile.am): Use search.in.h instead of
14477         search_.h.
14478         * lib/signal.in.h: Renamed from lib/signal_.h.
14479         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
14480         _signal.h.
14481         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
14482         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
14483         stdbool_.h.
14484         * lib/stdint.in.h: Renamed from lib/stdint_.h.
14485         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
14486         stdint_.h.
14487         * lib/stdio.in.h: Renamed from lib/stdio_.h.
14488         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
14489         stdio_.h.
14490         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
14491         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
14492         stdlib_.h.
14493         * lib/string.in.h: Renamed from lib/string_.h.
14494         * modules/string (Files, Makefile.am): Use string.in.h instead of
14495         string_.h.
14496         * doc/gnulib-tool.texi (Initial import): Update.
14497         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
14498         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
14499         of sys_select_.h. Add dependency.
14500         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
14501         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
14502         of sys_socket_.h.
14503         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
14504         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
14505         sys_stat_.h.
14506         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
14507         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
14508         sys_time_.h.
14509         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
14510         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
14511         sysexits_.h.
14512         * lib/time.in.h: Renamed from lib/time_.h.
14513         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
14514         * lib/unistd.in.h: Renamed from lib/unistd_.h.
14515         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
14516         unistd_.h.
14517         * lib/wchar.in.h: Renamed from lib/wchar_.h.
14518         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
14519         wchar_.h.
14520         * lib/wctype.in.h: Renamed from lib/wctype_.h.
14521         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
14522         wctype_.h.
14523         * build-aux/bootstrap (slurp): Update.
14524         * lib/.cppi-disable: Update.
14525
14526 2007-09-30  Bruno Haible  <bruno@clisp.org>
14527
14528         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
14529         Needed on BeOS.
14530
14531 2007-09-30  Bruno Haible  <bruno@clisp.org>
14532
14533         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
14534
14535 2007-09-29  Bruno Haible  <bruno@clisp.org>
14536
14537         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
14538
14539 2007-09-29  Bruno Haible  <bruno@clisp.org>
14540
14541         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
14542         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
14543         * build-aux/install-reloc: Compile also areadlink.c.
14544         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
14545
14546 2007-09-29  Bruno Haible  <bruno@clisp.org>
14547
14548         * gnulib-tool (func_emit_initmacro_done): Indentation.
14549
14550 2007-09-29  Bruno Haible  <bruno@clisp.org>
14551
14552         * README: Add CVS checkout update instructions.
14553         Info from Bob Proulx <bob@proulx.com>.
14554
14555 2007-09-28  Eric Blake  <ebb9@byu.net>
14556
14557         Provide move-if-change.
14558         * build-aux/move-if-change: New file, based on best practice
14559         rather than any canonical upstream location.
14560
14561 2007-09-28  Jim Meyering  <jim@meyering.net>
14562
14563         Fix canonicalize loop-detection corner case.
14564         Do not attempt to stat the symlink values stored via seen_triple.
14565         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
14566         on linux-2.6.18, (but not 2.6.22).
14567         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
14568         triple_compare.  The former compares dev,ino,filename, while the latter
14569         would actually stat dirname(filename) when dev and ino were equal.
14570         * lib/hash-triple.c: Install <string.h>.
14571         (STREQ): Define.
14572         (triple_compare_ino_str): New function.
14573         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
14574
14575 2007-09-28  Eric Blake  <ebb9@byu.net>
14576
14577         Enforce that AC_REPLACE_FUNCS files exist.
14578         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
14579         override check for typos.
14580
14581         Fix test-closein on Solaris 10.
14582         * tests/test-closein.c (main): Don't assume stdin can be inherited
14583         closed on all systems.
14584         * tests/test-closein.sh: Likewise.
14585         Reported by Piotr Tarnowski.
14586
14587 2007-09-28  Jim Meyering  <jim@meyering.net>
14588
14589         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
14590
14591 2007-09-27  Jim Meyering  <jim@meyering.net>
14592
14593         canonicalize: Avoid a false-positive cycle failure.
14594         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
14595         Sort.  Remove cycle-check.
14596         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
14597         not cycle-check.h.
14598         (seen_triple): New function.
14599         (canonicalize_filename_mode): Use it instead of cycle-check.
14600         * tests/test-canonicalize.c: Add a test for this bug.
14601         * tests/test-canonicalize.sh: Set up and run the test.
14602
14603         New module, file-set, from coreutils.
14604         * modules/file-set: Define it.
14605         * lib/file-set.c, lib/file-set.h: Implement.
14606
14607         New module, hash-triple, from coreutils.
14608         * modules/hash-triple: Define it.
14609         * lib/hash-triple.c, lib/hash-triple.h: Implement.
14610
14611 2007-09-25  Eric Blake  <ebb9@byu.net>
14612
14613         Fix strerror on Interix.
14614         * lib/string_.h (strerror): Declare replacement.
14615         * doc/functions/strerror.texi (strerror): Document the Interix
14616         shortcoming.
14617         * modules/string (Makefile.am): Support new hooks.
14618         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
14619         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
14620         gl_FUNC_STRERROR_SEPARATE.
14621         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
14622         * lib/strerror.c (rpl_strerror): Provide replacement.
14623         * modules/strerror (Depends-on): Add string.
14624         (configure.ac): Detect use of module.
14625         * tests/test-strerror.c: New file.
14626         * modules/strerror-tests: New test module.
14627         * modules/argp (Depends-on): Add strerror.
14628         * modules/error (Depends-on): Likewise.
14629         Reported by Martin Koeppe.
14630
14631 2007-09-24  Bruno Haible  <bruno@clisp.org>
14632
14633         * README: Update git instructions.
14634
14635 2007-09-24  Eric Blake  <ebb9@byu.net>
14636
14637         Revert fpending breakage from 2007-09-08.
14638         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
14639         __fpending.c.
14640
14641 2007-09-24  Jim Meyering  <jim@meyering.net>
14642
14643         filenamecat.c: Add a test.
14644         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
14645         showing how the function works when DIR is the empty string.
14646
14647 2007-09-21  Simon Josefsson  <simon@josefsson.org>
14648
14649         * tests/test-canonicalize.sh: Turn on executable bit.
14650
14651 2007-09-19  Eric Blake  <ebb9@byu.net>
14652
14653         * README: Update CVS instructions.
14654
14655 2007-09-18  Bruno Haible  <bruno@clisp.org>
14656
14657         * modules/areadlink: New file.
14658         * lib/areadlink.h (areadlink): New declaration.
14659         * lib/areadlink.c: New file, based on lib/xreadlink.c.
14660
14661 2007-09-17  Jim Meyering  <jim@meyering.net>
14662
14663         * lib/savewd.c (ESTALE) [!defined]: Define.
14664         Reported to be required on Interix by Martin Koeppe.
14665
14666 2007-09-17  Bruno Haible  <bruno@clisp.org>
14667
14668         * gnulib-tool (func_version): Use $version.
14669
14670 2007-09-16  Bruno Haible  <bruno@clisp.org>
14671
14672         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
14673         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
14674         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
14675         Reported by Greg Schafer <gschafer@zip.com.au>.
14676
14677 2007-09-15  Bruno Haible  <bruno@clisp.org>
14678
14679         * gnulib-tool (sed): Try a little harder to make bash understand the
14680         alias.
14681         Reported by Bruce Korb <bruce.korb@gmail.com>.
14682
14683 2007-09-13  Eric Blake  <ebb9@byu.net>
14684
14685         * ChangeLog: Remove conflict markers.
14686
14687 2007-09-13  Simon Josefsson  <simon@josefsson.org>
14688
14689         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
14690         Reported by Bruno Haible <bruno@clisp.org>.
14691
14692 2007-09-12  Bruno Haible  <bruno@clisp.org>
14693
14694         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
14695         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
14696         is not defined.
14697
14698 2007-09-12  Eric Blake  <ebb9@byu.net>
14699
14700         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
14701         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
14702         Autoconf definition.
14703         * modules/euidaccess (Depends-on): Add extensions, for
14704         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
14705         * modules/fnmatch (Depends-on): Likewise.
14706         * modules/getaddrinfo (Depends-on): Likewise.
14707         * modules/getdelim (Depends-on): Likewise.
14708         * modules/getline (Depends-on): Likewise.
14709         * modules/getsubopt (Depends-on): Likewise.
14710         * modules/gettext (Depends-on): Likewise.
14711         * modules/group-member (Depends-on): Likewise.
14712         * modules/mbchar (Depends-on): Likewise.
14713         * modules/memmem (Depends-on): Likewise.
14714         * modules/mempcpy (Depends-on): Likewise.
14715         * modules/memrchr (Depends-on): Likewise.
14716         * modules/pagealign_alloc (Depends-on): Likewise.
14717         * modules/readutmp (Depends-on): Likewise.
14718         * modules/stpcpy (Depends-on): Likewise.
14719         * modules/stpncpy (Depends-on): Likewise.
14720         * modules/strchrnul (Depends-on): Likewise.
14721         * modules/strndup (Depends-on): Likewise.
14722         * modules/strsep (Depends-on): Likewise.
14723         * modules/strverscmp (Depends-on): Likewise.
14724         * modules/vasprintf (Depends-on): Likewise.
14725         * modules/wcwidth (Depends-on): Likewise.
14726         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
14727         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
14728         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
14729         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
14730         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
14731         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
14732         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
14733         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
14734         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
14735         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
14736         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
14737         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
14738         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
14739         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
14740         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
14741         * m4/readutmp.m4 (gl_READUTMP): Likewise.
14742         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
14743         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
14744         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
14745         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
14746         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
14747         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
14748         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
14749         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
14750         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
14751         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
14752         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
14753         so that lock.m4 can be used in gettext without extensions module.
14754
14755 2007-09-11  Bruno Haible  <bruno@clisp.org>
14756
14757         * m4/isc-posix.m4: Remove file.
14758         Suggested by Eric Blake.
14759
14760 2007-09-11  Eric Blake  <ebb9@byu.net>
14761
14762         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
14763
14764 2007-09-10  Bruno Haible  <bruno@clisp.org>
14765
14766         * posix-modules: Fix typo in error message.
14767         Reported by Matt <mkraai@beckman.com>.
14768
14769 2007-09-09  Bruno Haible  <bruno@clisp.org>
14770
14771         * doc/functions/getdelim.texi: Update list of platforms lacking the
14772         function.
14773         * doc/functions/getline.texi: Likewise.
14774
14775 2007-09-09  Jim Meyering  <jim@meyering.net>
14776
14777         * lib/hash.c (hash_initialize): Detect calloc failure.
14778         Reported by Bruno Haible.
14779
14780 2007-09-09  Bruno Haible  <bruno@clisp.org>
14781
14782         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
14783         malloc or realloc fails.
14784
14785 2007-09-09  Bruno Haible  <bruno@clisp.org>
14786
14787         * modules/getcwd (Depends-on): Add malloc-posix.
14788         * modules/glob (Depends-on): Likewise.
14789         * modules/putenv (Depends-on): Likewise.
14790         * modules/strdup (Depends-on): Likewise.
14791         * modules/getdelim (Depends-on): Add realloc-posix.
14792         * modules/read-file (Depends-on): Likewise.
14793
14794 2007-09-09  Bruno Haible  <bruno@clisp.org>
14795
14796         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
14797         (gl_FUNC_MALLOC_POSIX): Require it.
14798         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
14799         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
14800         * modules/realloc (Files): Add m4/malloc.m4.
14801         * modules/calloc (Files): Likewise.
14802
14803 2007-09-09  Bruno Haible  <bruno@clisp.org>
14804
14805         * modules/malloc-posix: New file.
14806         * modules/malloc (Depends-on): Add malloc-posix.
14807         * lib/malloc.c: Include errno.h.
14808         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
14809         and a POSIX-compatible malloc into a single function. Set ENOMEM
14810         when returning NULL.
14811         * m4/malloc.m4: New file.
14812         * doc/functions/malloc.texi: Mention the malloc-posix module.
14813         * lib/stdlib_.h (malloc): New declaration.
14814         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
14815         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
14816         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
14817         and HAVE_MALLOC_POSIX.
14818
14819 2007-09-09  Bruno Haible  <bruno@clisp.org>
14820
14821         * modules/realloc-posix: New file.
14822         * modules/realloc (Depends-on): Add realloc-posix.
14823         * lib/realloc.c: Include errno.h.
14824         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
14825         and a POSIX-compatible realloc into a single function. Set ENOMEM
14826         when returning NULL.
14827         * m4/realloc.m4: New file.
14828         * doc/functions/realloc.texi: Mention the realloc-posix module.
14829         * lib/stdlib_.h (realloc): New declaration.
14830         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
14831         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
14832         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
14833         and HAVE_REALLOC_POSIX.
14834
14835 2007-09-09  Bruno Haible  <bruno@clisp.org>
14836
14837         * modules/calloc-posix: New file.
14838         * modules/calloc (Depends-on): Add calloc-posix.
14839         * lib/calloc.c: Include errno.h.
14840         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
14841         and a POSIX-compatible calloc into a single function. Set ENOMEM
14842         when returning NULL.
14843         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
14844         * doc/functions/calloc.texi: Mention the calloc-posix module.
14845         * lib/stdlib_.h (calloc): New declaration.
14846         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
14847         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
14848         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
14849         and HAVE_CALLOC_POSIX.
14850
14851 2007-09-09  Bruno Haible  <bruno@clisp.org>
14852
14853         Allow for modules to show an arbitrary notice.
14854         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
14855         * gnulib-tool: New option --extract-notice.
14856         (func_usage): Document it.
14857         (sed_extract_prog): Update.
14858         (func_get_notice): New function.
14859         (func_modules_notice): New function.
14860         (func_import, func_create_testdir): Invoke it.
14861         Suggested by Jim Meyering.
14862
14863 2007-09-09  Bruno Haible  <bruno@clisp.org>
14864
14865         * gnulib-tool: New options --verbose, --quiet.
14866         (func_usage): Document them.
14867         (verbose): New variable.
14868         (func_execute_command): New function.
14869         (func_import): Don't show the module list and the file list if
14870         $verbose < 0.
14871         (func_create_testdir): Likewise. Use func_execute_command.
14872         (func_create_megatestdir): Use func_execute_command.
14873
14874 2007-09-08  Bruno Haible  <bruno@clisp.org>
14875
14876         * gnulib-tool (func_import): Prefer rsync over wget when available,
14877         for fetching the PO files.
14878
14879 2007-09-08  Bruno Haible  <bruno@clisp.org>
14880
14881         * posix-modules: New file. Portions copied from gnulib-tool.
14882         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
14883
14884 2007-09-08  Jim Meyering  <jim@meyering.net>
14885
14886         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
14887         * lib/fpending.h: Rename from __fpending.h.
14888         * lib/fpending.c: Rename from __fpending.c.
14889         Include "fpending.h", not "__fpending.h".
14890         * lib/__fpending.h, lib/__fpending.c: Remove files.
14891         * modules/fpending (Files): Reflect new file names.
14892         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
14893
14894 2007-09-08  Bruno Haible  <bruno@clisp.org>
14895
14896         * m4/inttypes-h.m4: Remove stub file.
14897
14898 2007-09-07  Simon Josefsson  <simon@josefsson.org>
14899
14900         * doc/headers/stdint.texi: Discuss #include_next issue.
14901
14902 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
14903
14904         * build-aux/bootstrap: Remove obsolete comment about wget --help.
14905
14906 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14907
14908         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
14909         in variable name.
14910
14911 2007-09-03  Jim Meyering  <jim@meyering.net>
14912
14913         New module: git-version-gen.
14914         * modules/git-version-gen: New file.
14915
14916         Import changes from coreutils for bootstrap script.
14917
14918         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
14919
14920         bootstrap: uses rsync to download the .po files
14921         * build-aux/bootstrap (po_download_command_format): New global.
14922         (download_po_files): Use rsync.
14923         (update_po_files): Don't remove .po files after download,
14924         so future rsync runs can take advantage of the copies.
14925
14926         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
14927
14928         Solve the unnecessary-.po-file-regeneration problem once and for all.
14929         * build-aux/bootstrap (download_po_files): New function, renamed from
14930         get_translations.  Now, downloads, but doesn't update LINGUAS.
14931         (update_po_files): New function.
14932
14933         bootstrap: Ignore more.
14934         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
14935         uniwidth to e.g., lib/.gitignore.
14936         (slurp): Handle the sys_stat_.h -> sys mapping, too.
14937
14938         * build-aux/bootstrap: New setting: vc_ignore.
14939         (insert_sorted_if_absent): Create $file if absent.
14940         Adapt to new, possibly empty, list: $vc_ignore.
14941
14942         bootstrap: generate more ignorable names
14943         * build-aux/bootstrap (slurp): When generating ignorable names,
14944         also map .sin to .sed, .gperf to .c, and .y to .c.
14945
14946 2007-09-03  Jim Meyering  <jim@meyering.net>
14947
14948         * build-aux/git-version-gen: New file, from coreutils.  For details, see
14949         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
14950
14951 2007-09-02  Bruno Haible  <bruno@clisp.org>
14952
14953         Fix mis-recognition of 'mcs' on QNX 6.
14954         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
14955         output contains the string "Mono".
14956         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
14957         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
14958
14959 2007-09-01  Bruno Haible  <bruno@clisp.org>
14960
14961         Fix collision between uniwidth/* and linebreak modules.
14962         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
14963         u32_width): Remove declarations.
14964         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
14965         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
14966         streq3, streq2, streq1, streq0): Remove functions.
14967         (STREQ): Remove macro.
14968         (is_cjk_encoding): Remove function.
14969         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
14970         (uc_width, u8_width, u16_width, u32_width): Remove functions.
14971         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
14972         * NEWS: Document the change.
14973
14974 2007-09-01  Bruno Haible  <bruno@clisp.org>
14975
14976         * lib/streq.h: Add double-inclusion guard.
14977
14978 2007-09-01  Karl Berry  <karl@gnu.org>
14979
14980         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
14981
14982 2007-08-28  Jim Meyering  <jim@meyering.net>
14983
14984         Rename mreadlink_with_size to areadlink_with_size.
14985         * NEWS: Document the change.
14986         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
14987         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
14988         * lib/mreadlink.h: Rename this to...
14989         * lib/areadlink.h: ...this.
14990         * modules/mreadlink-with-size: Rename this to...
14991         * modules/areadlink-with-size: ...this.
14992         * lib/canonicalize.c: Reflect the renaming.
14993         * modules/canonicalize: Likewise.
14994
14995 2007-08-26  Bruno Haible  <bruno@clisp.org>
14996
14997         * gnulib-tool (func_import): When deciding which files to remove,
14998         consider also dangling symbolic links.
14999         Reported by Eric Blake.
15000
15001 2007-08-26  Bruno Haible  <bruno@clisp.org>
15002
15003         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
15004
15005 2007-08-23  Simon Josefsson  <simon@josefsson.org>
15006
15007         * lib/readline.c: Don't include getline.h, the prototype is now
15008         found in stdio.h.
15009
15010 2007-08-23  Jim Meyering  <jim@meyering.net>
15011
15012         Getdelim touchup.
15013         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
15014         around the funlockfile call, since funlockfile never sets errno.
15015         Don't set errno upon failed realloc.
15016
15017 2007-08-22  Eric Blake  <ebb9@byu.net>
15018
15019         Getline touchups.
15020         * lib/getdelim.c (getdelim): Revert regression that required *n to
15021         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
15022         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
15023         getdelim, rather than whether implementation is missing.
15024         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
15025         * lib/stdio_.h (getline): Also declare if replacement is
15026         required.
15027         * doc/functions/getdelim.texi: New file.
15028         * doc/functions/getline.texi: Likewise.
15029         * doc/gnulib.texi (Function Substitutes): Add new files.
15030         Reported by Bruno Haible.
15031
15032 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
15033
15034         * users.txt: Add Guile.
15035
15036 2007-08-22  Eric Blake  <ebb9@byu.net>
15037
15038         * tests/test-getdelim.c (main): Use remove, not unlink.
15039         * tests/test-getline.c (main): Likewise.
15040
15041         Move getline and getdelim into stdio.h, per POSIX 200x.
15042         * modules/getline (Files): Remove getline.h.
15043         (Depends-on): Add stdio.
15044         (configure.ac): Add module indicator.
15045         * modules/getdelim (Files): Remove getdelim.h.
15046         (Depends-on): Add stdio.
15047         (configure.ac): Add module indicator.
15048         * modules/stdio (Makefile.am): Work with new indicators.
15049         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
15050         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
15051         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
15052         * lib/getdelim.h: Delete.
15053         * lib/getline.h: Delete.
15054         * lib/stdio_.h (getdelim, getline): Declare.
15055         * modules/getdelim-tests: New module.
15056         * modules/getline-tests: Likewise.
15057         * tests/test-getdelim.c: New file.
15058         * tests/test-getline.c: Likewise.
15059         * NEWS: Document the change.
15060         * lib/getline.c: Update choice of header.
15061         * lib/csharpcomp.c: Likewise.
15062         * lib/getpass.c: Likewise.
15063         * lib/javacomp.c: Likewise.
15064         * lib/javaversion.c: Likewise.
15065         * lib/yesno.c: Likewise.
15066         * lib/getdelim.c: Likewise.
15067         (getdelim): Set errno on failure, and avoid memory leak.
15068
15069 2007-08-19  Bruno Haible  <bruno@clisp.org>
15070
15071         * modules/closein (Depends-on): Add freadahead.
15072         * lib/closein.c: Include freadahead.h.
15073         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
15074         is zero.
15075
15076 2007-08-19  Bruno Haible  <bruno@clisp.org>
15077
15078         * modules/freadahead-tests: New file.
15079         * tests/test-freadahead.sh: New file.
15080         * tests/test-freadahead.c: New file.
15081
15082         * modules/freadahead: New file.
15083         * lib/freadahead.h: New file.
15084         * lib/freadahead.c: New file.
15085         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
15086         fbufmode, fpurge, freadable, fwritable.
15087
15088 2007-08-19  Eric Blake  <ebb9@byu.net>
15089
15090         Test yesno in combination with closein.
15091         * lib/yesno.c (yesno): Document use of stdin.
15092         * modules/yesno-tests (Files): New module.
15093         * tests/test-yesno.c (main): New file.
15094         * tests/test-yesno.sh: Likewise.
15095
15096 2007-08-19  Bruno Haible  <bruno@clisp.org>
15097
15098         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
15099         * lib/fseeko.c (rpl_fseeko): Likewise.
15100         * lib/fseterr.c (fseterr): Likewise.
15101
15102 2007-08-19  Bruno Haible  <bruno@clisp.org>
15103
15104         * tests/test-lseek.c (main): Disable a test for BeOS.
15105         * doc/functions/lseek.texi: Document the BeOS bug.
15106
15107 2007-08-19  Bruno Haible  <bruno@clisp.org>
15108             Eric Blake  <ebb9@byu.net>
15109
15110         * lib/lseek.c: Include <sys/stat.h>.
15111         (rpl_lseek): Add workaround code also for Unix platforms.
15112         Needed for BeOS.
15113         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
15114         * doc/functions/lseek.texi: Document BeOS definiency.
15115
15116 2007-08-18  Bruno Haible  <bruno@clisp.org>
15117
15118         * modules/fstrcmp-tests: New file.
15119         * tests/test-fstrcmp.c: New file.
15120
15121 2007-08-18  Bruno Haible  <bruno@clisp.org>
15122
15123         * modules/fstrcmp: New file, from GNU gettext with modifications.
15124         * lib/fstrcmp.h: New file, from GNU gettext.
15125         * lib/fstrcmp.c: New file, from GNU gettext.
15126         * MODULES.html.sh (String handling): Add fstrcmp.
15127
15128 2007-08-18  Bruno Haible  <bruno@clisp.org>
15129
15130         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
15131         'bool'.
15132         (diag, compareseq): Remove const from the ctxt argument.
15133         (USE_HEURISTIC): Undefine at the end.
15134
15135 2007-08-18  Jim Meyering  <jim@meyering.net>
15136
15137         New file: lib/idcache.h
15138         * NEWS: Mention the addition.
15139         * modules/idcache (Files): Add lib/idcache.h
15140         * lib/idcache.c: Include "idcache.h".
15141         Don't include <sys/types.h>.
15142         Add a FIXME comment.
15143         Move file-scoped "static" declarations to the top.
15144         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
15145
15146 2007-08-17  Bruno Haible  <bruno@clisp.org>
15147         and Paul Eggert  <eggert@cs.ucla.edu>
15148
15149         * MODULES.html.sh: Add diffseq.
15150         * modules/diffseq: New file.
15151         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
15152         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
15153
15154 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
15155
15156         Import changes from coreutils for bootstrap script.
15157
15158         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
15159
15160         * build-aux/bootstrap (slurp): Work even in environments where
15161         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
15162         current code does not slurp files whose names start with ".", and
15163         this looks like it might be a troublesome area.
15164
15165         2007-07-11  Jim Meyering  <jim@meyering.net>
15166
15167         If there's a GPL vN copyright comment, require that N == 3.
15168
15169         2007-07-08  Jim Meyering  <jim@meyering.net>
15170
15171         Run the coreutils-specific code only if tests/Makefile.am.in exists.
15172         * build-aux/bootstrap (mam_template): Move definition out of loop.
15173
15174         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
15175
15176         * build-aux/bootstrap (symlink_to_dir): Rename function from
15177         symlink_to_gnulib.  Add a directory parameter.  Update all
15178         callers.
15179         (cp_mark_as_generated): Also check for -- and link to -- files in
15180         gl/.
15181
15182         2007-07-08  Jim Meyering  <jim@meyering.net>
15183
15184         Adapt to deeper hierarchy in gnulib.
15185         * build-aux/bootstrap (symlink_to_dir): If the destination
15186         directory doesn't exist, create it. This is required at least for
15187         "lib/uniwidth/cjk.h".
15188
15189         2007-05-15  Jim Meyering  <jim@meyering.net>
15190
15191         * build-aux/bootstrap: Now that generated Makefile.am files
15192         are no longer under version control, they must be created at
15193         bootstrap time.
15194
15195 2007-08-14  Ben Pfaff  <blp@gnu.org>
15196
15197         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
15198
15199 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
15200
15201         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
15202         given the changes below.
15203         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
15204         even on hosts that have padding bits beyond the supported 64.
15205
15206 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
15207
15208         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
15209         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
15210         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
15211         depends on it.
15212         (xstrtol_error): Remove.
15213         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
15214         but with a different signature.
15215         (ATTRIBUTE_NORETURN, __attribute__): New macros.
15216         * lib/xstrtol-error.c: Include exitfail.h.
15217         (xstrtol_fatal): New function, with a different signature from the
15218         old xstrtol_error, so that the caller need not worry about passing
15219         in an exit status, or about storage management of the option argument.
15220         (xstrtol_error): Now a static function.  Redo signature to
15221         implement xstrtol_fatal.  Output the correct number of hyphens in
15222         front of the option so that the caller need not worry about
15223         storage management.
15224         (N_): New macro.
15225         (_): Remove; not used now.
15226         * modules/xstrtol: Depend on getopt.
15227         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
15228         of old STRTOL_FATAL_ERROR macro.
15229         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
15230         of test program.
15231         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
15232         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
15233
15234 2007-08-08  Eric Blake  <ebb9@byu.net>
15235
15236         * lib/xstrtol-error.c: Add missing include.
15237
15238         Move xstrtol messages into gnulib domain, when --pobase is used.
15239         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
15240         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
15241         * modules/xstrtol (Files): Distribute new file.
15242         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
15243         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
15244         * tests/test-xstrtol.c: ...into new file.
15245         * tests/test-xstrtoul.c: Also test xstrtoul.
15246         * tests/test-xstrtoimax.c: Also test xstrtoimax.
15247         * tests/test-xstrtoumax.c: Also test xstrtoumax.
15248         * tests/test-xstrtol.sh: Drive the tests.
15249         * tests/test-xstrtoimax.sh: Likewise.
15250         * tests/test-xstrtoumax.sh: Likewise.
15251         * modules/xstrtol-tests: New module.
15252         * modules/xstrtoimax-tests: Likewise.
15253         * modules/xstrtoumax-tests: Likewise.
15254
15255 2007-08-08  Jim Meyering  <jim@meyering.net>
15256
15257         New function: mfile_name_concat.
15258         * lib/filenamecat.c (mfile_name_concat): New function, just like
15259         file_name_concat, but return NULL upon failure rather than exiting
15260         with a diagnostic.
15261         * lib/filenamecat.h: Declare it.
15262
15263 2007-08-07  Bruno Haible  <bruno@clisp.org>
15264
15265         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
15266         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
15267         warning from gcc.
15268         Reported by Eric Blake.
15269
15270 2007-08-07  Simon Josefsson  <simon@josefsson.org>
15271
15272         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
15273         * modules/crypto/arcfour (License): Likewise.
15274         * modules/crypto/des-tests (License): Likewise.
15275         * modules/crypto/gc-arctwo-tests (License): Likewise.
15276         * modules/crypto/gc-des-tests (License): Likewise.
15277         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
15278         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
15279         * modules/crypto/gc-md2-tests (License): Likewise.
15280         * modules/crypto/gc-md4-tests (License): Likewise.
15281         * modules/crypto/gc-md5-tests (License): Likewise.
15282         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
15283         * modules/crypto/gc-rijndael-tests (License): Likewise.
15284         * modules/crypto/gc-sha1-tests (License): Likewise.
15285         * modules/crypto/gc-tests (License): Likewise.
15286         * modules/crypto/hmac-md5 (License): Likewise.
15287         * modules/crypto/hmac-sha1 (License): Likewise.
15288         * modules/crypto/md2-tests (License): Likewise.
15289         * modules/crypto/md4-tests (License): Likewise.
15290         * modules/crypto/md5 (License): Likewise.
15291         * modules/crypto/rijndael (License): Likewise.
15292         * modules/crypto/sha1 (License): Likewise.
15293         * modules/memxor (License): Likewise.
15294
15295 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15296         and Bruno Haible  <bruno@clisp.org>
15297
15298         * NEWS: Describe interface changes to human, xstrtol.
15299         * lib/human.h: Include <xstrtol.h>.
15300         (human_options): Return enum strtol_error, not int.  Remove
15301         bool arg; take int * instead.
15302         * lib/human.c: Don't include "gettext.h".
15303         (_): Remove; no longer used.
15304         Don't include <xstrtol.h>, since human.h does it.
15305         (human_options): Adjust to abovementioned interface changes.
15306         Do not report error to stderr; that's now the caller's
15307         responsibility.
15308         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
15309         interface change.
15310         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
15311         Str, Argument_type_string.  All uses changed.  Put " argument"
15312         in diagnostics to make them clearer.  Change wording of suffix
15313         message for clarity.
15314         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
15315         Argument_type_string.
15316         (STRTOL_FATAL_WARN): Remove; no longer used.
15317         * modules/human (Depends-on): Remove gettext-h.
15318
15319 2007-08-06  Simon Josefsson  <simon@josefsson.org>
15320
15321         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
15322
15323 2007-07-31  Bruno Haible  <bruno@clisp.org>
15324
15325         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
15326         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
15327         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
15328
15329 2007-07-31  Bruno Haible  <bruno@clisp.org>
15330
15331         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
15332         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
15333
15334 2007-07-30  Bruno Haible  <bruno@clisp.org>
15335
15336         * modules/base64 (License): Use the synonymous term "LGPLv2+".
15337         * modules/c-ctype (License): Likewise.
15338         * modules/c-strcase (License): Likewise.
15339         * modules/check-version (License): Likewise.
15340         * modules/iconv (License): Likewise.
15341         * modules/iconv_open (License): Likewise.
15342         * modules/read-file (License): Likewise.
15343         * modules/striconv (License): Likewise.
15344         * modules/strverscmp (License): Likewise.
15345         * modules/vasprintf (License): Likewise.
15346         * modules/crypto/des (License): Likewise.
15347         * modules/crypto/gc (License): Likewise.
15348         * modules/crypto/gc-arcfour (License): Likewise.
15349         * modules/crypto/gc-arctwo (License): Likewise.
15350         * modules/crypto/gc-des (License): Likewise.
15351         * modules/crypto/gc-hmac-md5 (License): Likewise.
15352         * modules/crypto/gc-hmac-sha1 (License): Likewise.
15353         * modules/crypto/gc-md2 (License): Likewise.
15354         * modules/crypto/gc-md4 (License): Likewise.
15355         * modules/crypto/gc-md5 (License): Likewise.
15356         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
15357         * modules/crypto/gc-random (License): Likewise.
15358         * modules/crypto/gc-rijndael (License): Likewise.
15359         * modules/crypto/gc-sha1 (License): Likewise.
15360         * modules/crypto/md2 (License): Likewise.
15361         * modules/crypto/md4 (License): Likewise.
15362
15363 2007-07-30  Jim Meyering  <jim@meyering.net>
15364
15365         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
15366         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
15367         it has valid stat data.  This bug would cause du not to count the
15368         sizes of inaccessible directories.
15369         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
15370         in <http://bugzilla.redhat.com/250077>.
15371
15372 2007-07-25  Peter O'Gorman  <peter@pogma.com>
15373             Bruno Haible  <bruno@clisp.org>
15374
15375         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
15376         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
15377         #include_next, gives a diagnostic about it, but reports no error in
15378         the exit code.
15379         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
15380
15381 2007-07-24  Ben Pfaff  <blp@gnu.org>
15382
15383         Improve name: "count-one-bits" is better than "popcount".
15384         * MODULES.html.sh: Update name.
15385         * lib/popcount.h: Renamed lib/count-one-bits.h.
15386         (popcount): Renamed count_one_bits.
15387         (popcountl): Renamed count_one_bits_l.
15388         (popcountll): Renamed count_one_bits_ll.
15389         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
15390         * modules/popcount: Renamed module/count-one-bits.
15391         * modules/popcount-tests: Renamed module/count-one-bits-tests.
15392         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
15393
15394 2007-07-23  Ben Pfaff  <blp@gnu.org>
15395
15396         * lib/popcount.h (popcount32): Reduce size of constants, to allow
15397         better code generation, and add U to large constants to avoid
15398         warnings, in non-GCC case.
15399         Suggested by Bruno Haible.
15400
15401 2007-07-23  Ben Pfaff  <blp@gnu.org>
15402
15403         * lib/popcount.h: Use verify_true instead of if...abort.
15404         * modules/popcount: Depend on verify module.
15405         Suggested by Jim Meyering.
15406
15407 2007-07-23  Bruno Haible  <bruno@clisp.org>
15408
15409         * gnulib-tool (func_import): Create a .cvsignore file also when the
15410         directory is not yet in CVS but the toplevel directory is. When
15411         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
15412         Reported by Karl Berry.
15413
15414 2007-07-22  Ben Pfaff  <blp@gnu.org>
15415
15416         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
15417         case.
15418         Suggested by Eric Blake.
15419
15420 2007-07-22  Ben Pfaff  <blp@gnu.org>
15421
15422         New module: popcount.
15423         * MODULES.html.sh: Add popcount.
15424         * modules/popcount: New file.
15425         * modules/popcount-tests: New file.
15426         * tests/test-popcount.c: New file.
15427         * lib/popcount.h: New file.
15428         * m4/popcount.m4: New file.
15429
15430 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
15431
15432         * build-aux/announce-gen: Update to GPLv3.
15433
15434         * build-aux/config.guess: Update from config.
15435
15436 2007-07-21  Bruno Haible  <bruno@clisp.org>
15437
15438         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
15439         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
15440
15441 2007-07-20  Jim Meyering  <jim@meyering.net>
15442
15443         * check-module: Diagnose a self-dependency.
15444
15445 2007-07-19  Bruno Haible  <bruno@clisp.org>
15446
15447         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
15448         empty.
15449         Reported by Eric Blake.
15450
15451 2007-07-18  Bruno Haible  <bruno@clisp.org>
15452
15453         * gnulib-tool: New options --po-base, --po-domain.
15454         (func_usage): Document them.
15455         (pobase, po_domain): New variables.
15456         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
15457         DEFAULT_TEXT_DOMAIN.
15458         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
15459         (func_import): Consider pobase and po_domain. Create a po/ directory.
15460         (func_create_testdir): Set pobase and po_domain to empty.
15461         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
15462         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
15463
15464 2007-07-18  Bruno Haible  <bruno@clisp.org>
15465
15466         * gnulib-tool (func_get_automake_snippet): Synthesize also an
15467         EXTRA_DIST augmentation for files in build-aux/.
15468
15469 2007-07-16  Bruno Haible  <bruno@clisp.org>
15470
15471         * modules/lseek (License): Use the synonymous term "LGPLv2+".
15472         * modules/getdelim (License): Likewise.
15473
15474 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15475
15476         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
15477         * modules/d-type (License): Likewise.
15478         * modules/extensions (License): Likewise.
15479         * modules/fnmatch (License): Likewise.
15480         * modules/fseeko (License): Likewise.
15481         * modules/getaddrinfo (License): Likewise.
15482         * modules/getline (License): Likewise.
15483         * modules/getlogin_r (License): Likewise.
15484         * modules/getpass (License): Likewise.
15485         * modules/gettimeofday (License): Likewise.
15486         * modules/glob (License): Likewise.
15487         * modules/inet_ntop (License): Likewise.
15488         * modules/malloc (License): Likewise.
15489         * modules/malloca (License): Likewise.
15490         * modules/memmem (License): Likewise.
15491         * modules/mempcpy (License): Likewise.
15492         * modules/memset (License): Likewise.
15493         * modules/minmax (License): Likewise.
15494         * modules/mktime (License): Likewise.
15495         * modules/netinet_in (License): Likewise.
15496         * modules/pathmax (License): Likewise.
15497         * modules/poll (License): Likewise.
15498         * modules/regex (License): Likewise.
15499         * modules/snprintf (License): Likewise.
15500         * modules/stdbool (License): Likewise.
15501         * modules/stdint (License): Likewise.
15502         * modules/stdio (License): Likewise.
15503         * modules/strcase (License): Likewise.
15504         * modules/strcasestr (License): Likewise.
15505         * modules/strdup (License): Likewise.
15506         * modules/string (License): Likewise.
15507         * modules/strndup (License): Likewise.
15508         * modules/strnlen (License): Likewise.
15509         * modules/strpbrk (License): Likewise.
15510         * modules/strptime (License): Likewise.
15511         * modules/strsep (License): Likewise.
15512         * modules/sys_select (License): Likewise.
15513         * modules/sys_socket (License): Likewise.
15514         * modules/sys_stat (License): Likewise.
15515         * modules/sys_time (License): Likewise.
15516         * modules/time (License): Likewise.
15517         * modules/time_r (License): Likewise.
15518         * modules/timegm (License): Likewise.
15519         * modules/unistd (License): Likewise.
15520         * modules/vsnprintf (License): Likewise.
15521         * modules/wctype (License): Likewise.
15522
15523 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15524
15525         * modules/argz (License): LGPLv2+.
15526
15527 2007-07-15  Karl Berry  <karl@gnu.org>
15528
15529         * doc/gnulib.texi: revise node structure per new fdl.texi.
15530
15531 2007-07-14  Bruno Haible  <bruno@clisp.org>
15532
15533         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
15534         the output file.
15535         * lib/uniname/uninames.h: Regenerated.
15536
15537 2007-07-14  Karl Berry  <karl@gnu.org>
15538
15539         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
15540         omitting sectioning and index commands.
15541
15542 2007-07-13  Bruno Haible  <bruno@clisp.org>
15543
15544         New gnulib-tool option --more-symlinks.
15545         * gnulib-tool (func_usage): Document --more-symlinks.
15546         (do_copyrights): New variable.
15547         Recognize option --more-symlinks.
15548         (func_import): Don't add a copyright notice transform to
15549         sed_transform_lib_file if do_copyrights is empty.
15550
15551 2007-07-13  Bruno Haible  <bruno@clisp.org>
15552
15553         * lib/vasnprintf.c (decimal_point_char): Define also if
15554         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
15555         && !NEED_PRINTF_DIRECTIVE_A.
15556         Reported by Clemens Koller <clemens.koller@anagramm.de> via
15557         Gary V. Vaughan <gary@gnu.org>.
15558
15559 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
15560
15561         * lib/inttypes_.h: Undo previous change, since it was fixed
15562         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
15563
15564 2007-07-13  Bruno Haible  <bruno@clisp.org>
15565
15566         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
15567         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
15568
15569 2007-07-13  Jim Meyering  <jim@meyering.net>
15570
15571         df: Don't fail for Tru64's "file-on-file mount".
15572         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
15573         so we fall through and use statfs instead.  Details here:
15574         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
15575         Reported by Albert Chin.
15576
15577 2007-07-13  Bruno Haible  <bruno@clisp.org>
15578
15579         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
15580         * modules/configmake (License): Likewise.
15581         * modules/gettext (License): Likewise.
15582         * modules/gettext-h (License): Likewise.
15583         * modules/include_next (License): Likewise.
15584         * modules/link-warning (License): Likewise.
15585         * modules/localcharset (License): Likewise.
15586         * modules/localename (License): Likewise.
15587         * modules/lock (License): Likewise.
15588         * modules/relocatable-lib-lgpl (License): Likewise.
15589         * modules/size_max (License): Likewise.
15590         * modules/vasnprintf (License): Likewise.
15591         * modules/wchar (License): Likewise.
15592         * modules/xsize (License): Likewise.
15593
15594 2007-07-13  Bruno Haible  <bruno@clisp.org>
15595
15596         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
15597         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
15598
15599 2007-07-12  Bruno Haible  <bruno@clisp.org>
15600
15601         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
15602         in the modules files.
15603
15604 2007-07-11  Karl Berry  <karl@gnu.org>
15605
15606         * MODULES.html.sh (func_module): use
15607          sed -e '\|^'"${includefile}"'$|d'
15608          instead of /.../d, to avoid errors on $includefile's containing /.
15609
15610 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
15611
15612         * gnulib-tool (func_import): Avoid duplication of --avoid
15613         statements
15614         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
15615         names to `_' in variable names.
15616
15617 2007-07-10  Eric Blake  <ebb9@byu.net>
15618
15619         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
15620         * NEWS: Document this change.
15621
15622 2007-07-08  Bruno Haible  <bruno@clisp.org>
15623
15624         Update to Unicode 5.0.
15625         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
15626         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
15627         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
15628         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
15629         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
15630         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
15631         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
15632         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
15633         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
15634         U+10A3F, U+1D242..U+1D244.
15635         (nonspacing_table_ind): Update.
15636         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
15637         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
15638
15639 2007-07-08  Bruno Haible  <bruno@clisp.org>
15640
15641         Update to Unicode 5.0.
15642         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
15643         code transform. Extend the name index field of unicode_name_to_code and
15644         unicode_code_to_name from 16 to 24 bits.
15645         * lib/uniname/uniname.c (unicode_character_name,
15646         unicode_name_character): Add the range 0x12xxx to the code transform.
15647         * lib/uniname/uninames.h: Regenerated.
15648         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
15649
15650 2007-07-07  Bruno Haible  <bruno@clisp.org>
15651
15652         * modules/wcwidth-tests: New file.
15653         * tests/test-wcwidth.c: New file.
15654
15655         Work around MacOS X wcwidth() bug.
15656         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
15657         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
15658         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
15659         original wcwidth in non-UTF-8 locales.
15660         * modules/wcwidth (Depends-on): Add localcharset, streq,
15661         uniwidth/width.
15662         * doc/functions/wcwidth.texi: Update.
15663
15664 2007-07-07  Bruno Haible  <bruno@clisp.org>
15665
15666         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
15667         (wcwidth): New declaration.
15668         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
15669         macros.
15670         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
15671         here. Prepare for creating <wchar.h> unconditionally.
15672         * modules/wchar (Depends-on): Add link-warning.
15673         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
15674         REPLACE_WCWIDTH, and GL_LINK_WARNING.
15675         * lib/wcwidth.h: Remove file.
15676         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
15677         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
15678         * modules/wcwidth (Files): Remove lib/wcwidth.h.
15679         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
15680         (Include): Replace wcwidth.h with <wchar.h>.
15681         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
15682         * lib/mbchar.h: Don't include wcwidth.h.
15683         * lib/mbswidth.c: Likewise.
15684         * NEWS: Mention the change.
15685
15686 2007-07-07  Bruno Haible  <bruno@clisp.org>
15687
15688         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
15689         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
15690         definition with an external declaration.
15691         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
15692         defined as a function. Remove AC_C_INLINE requirement.
15693         * modules/wcwidth (Files): Add lib/wcwidth.c.
15694         (Makefile.am): Remove redundant statement.
15695
15696 2007-07-07  Bruno Haible  <bruno@clisp.org>
15697
15698         * MODULES.html.sh (Unicode string functions): Add the new modules.
15699
15700         * tests/uniwidth/test-u32-strwidth.c: New file.
15701         * modules/uniwidth/u32-strwidth-tests: New file.
15702
15703         * lib/uniwidth/u32-strwidth.c: New file.
15704         * modules/uniwidth/u32-strwidth: New file.
15705
15706         * tests/uniwidth/test-u16-strwidth.c: New file.
15707         * modules/uniwidth/u16-strwidth-tests: New file.
15708
15709         * lib/uniwidth/u16-strwidth.c: New file.
15710         * modules/uniwidth/u16-strwidth: New file.
15711
15712         * tests/uniwidth/test-u8-strwidth.c: New file.
15713         * modules/uniwidth/u8-strwidth-tests: New file.
15714
15715         * lib/uniwidth/u8-strwidth.c: New file.
15716         * modules/uniwidth/u8-strwidth: New file.
15717
15718         * tests/uniwidth/test-u32-width.c: New file.
15719         * modules/uniwidth/u32-width-tests: New file.
15720
15721         * lib/uniwidth/u32-width.c: New file.
15722         * modules/uniwidth/u32-width: New file.
15723
15724         * tests/uniwidth/test-u16-width.c: New file.
15725         * modules/uniwidth/u16-width-tests: New file.
15726
15727         * lib/uniwidth/u16-width.c: New file.
15728         * modules/uniwidth/u16-width: New file.
15729
15730         * tests/uniwidth/test-u8-width.c: New file.
15731         * modules/uniwidth/u8-width-tests: New file.
15732
15733         * lib/uniwidth/u8-width.c: New file.
15734         * modules/uniwidth/u8-width: New file.
15735
15736         * tests/uniwidth/test-uc_width.c: New file.
15737         * modules/uniwidth/width-tests: New file.
15738
15739         * lib/uniwidth/width.c: New file, from GNU libiconv.
15740         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
15741         * modules/uniwidth/width: New file.
15742
15743         * lib/uniwidth.h: New file, from GNU libiconv.
15744         * modules/uniwidth/base: New file.
15745
15746 2007-07-07  Bruno Haible  <bruno@clisp.org>
15747
15748         * lib/uniname.h: New file, from GNU gettext.
15749         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
15750         * lib/uniname/uninames.h: New file, from GNU gettext.
15751         * lib/uniname/uniname.c: New file, from GNU gettext.
15752         * tests/uniname/test-uninames.sh: New file.
15753         * tests/uniname/test-uninames.c: New file, from GNU gettext.
15754         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
15755         * modules/uniname/base: New file.
15756         * modules/uniname/uniname: New file.
15757         * modules/uniname/uniname-tests: New file.
15758         * MODULES.html.sh (Unicode string functions): Add the new modules.
15759
15760 2007-07-06  Bruno Haible  <bruno@clisp.org>
15761
15762         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
15763
15764 2007-07-06  Bruno Haible  <bruno@clisp.org>
15765
15766         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
15767         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
15768         includes <cygwin/sys_time.h> which includes <sys/select.h> which
15769         include <sys/time.h>.
15770         Reported by Eric Blake.
15771
15772 2007-07-06  Eric Blake  <ebb9@byu.net>
15773
15774         Fix testing canonicalize on cygwin.
15775         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
15776         Revert patch from 2007-06-19.
15777         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
15778         canonicalize module is also in use.
15779         * tests/test-canonicalize.c: New file.
15780         * tests/test-canonicalize.sh: Likewise.
15781         * modules/canonicalize-tests: Likewise.
15782
15783 2007-07-06  Jim Meyering  <jim@meyering.net>
15784
15785         * lib/getugroups.c (getugroups): Detect getgrent failure.
15786         Adjust comment to reflect reality: this function may return -1.
15787
15788 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
15789
15790         * build-aux/bootstrap (TP_URL,get_translations): Update to use
15791         the new TP address.
15792         (usage): Fix typo
15793         (gnulib_mk): New variable.
15794
15795 2007-07-05  Jim Meyering  <jim@meyering.net>
15796
15797         Don't let endgrent clobber errno, no matter how improbable.
15798         * lib/getugroups.c (getugroups): Save and restore errno around
15799         endgrent call.
15800
15801         Close the group DB even when failing with 2^31 or more members.
15802         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
15803
15804 2007-07-04  Jim Meyering  <jim@meyering.net>
15805
15806         * lib/getugroups.h: New file.
15807         * lib/getugroups.c: Include "getugroups.h".
15808         Remove uses of "register" keyword.
15809         Move local variable, "cp", down into scope where used.
15810         Give "username" parameter the "const" attribute.
15811         * modules/getugroups (Files): Add lib/getugroups.h
15812
15813 2007-07-04  Karl Berry  <karl@gnu.org>
15814
15815         * MODULES.html.sh (func_all_modules): Complete rename of
15816         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
15817
15818 2007-07-02  Bruno Haible  <bruno@clisp.org>
15819
15820         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
15821         mode, when inttypes.h comes from gnulib.
15822         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
15823
15824 2007-07-02  Simon Josefsson  <simon@josefsson.org>
15825
15826         * NEWS: Mention lgpl module name change.
15827
15828         * modules/lgpl-2.1: Renamed from lgpl.
15829
15830         * NEWS: Mention gpl module name change.
15831
15832         * modules/gpl-3.0: New file, based on gpl-2.0.
15833
15834         * modules/gpl-2.0: Renamed from gpl.
15835
15836         * modules/gpl: Fix filename, doc/gpl.texi is now found at
15837         doc/gpl-2.0.texi.
15838
15839 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
15840
15841         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
15842         #define __STDC_LIMIT_MACROS temporarily while including
15843         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
15844         Problem reported by Joel E. Denny in
15845         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
15846
15847 2007-07-01  Bruno Haible  <bruno@clisp.org>
15848
15849         * lib/unistdio.h: New file.
15850         * lib/unistdio/u-asnprintf.h: New file.
15851         * lib/unistdio/u-asprintf.h: New file.
15852         * lib/unistdio/u-printf-args.c: New file.
15853         * lib/unistdio/u-printf-args.h: New file.
15854         * lib/unistdio/u-printf-parse.h: New file.
15855         * lib/unistdio/u-snprintf.h: New file.
15856         * lib/unistdio/u-sprintf.h: New file.
15857         * lib/unistdio/u-vasprintf.h: New file.
15858         * lib/unistdio/u-vsnprintf.h: New file.
15859         * lib/unistdio/u-vsprintf.h: New file.
15860         * lib/unistdio/ulc-asnprintf.c: New file.
15861         * lib/unistdio/ulc-asprintf.c: New file.
15862         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
15863         * lib/unistdio/ulc-printf-parse.c: New file.
15864         * lib/unistdio/ulc-snprintf.c: New file.
15865         * lib/unistdio/ulc-sprintf.c: New file.
15866         * lib/unistdio/ulc-vasnprintf.c: New file.
15867         * lib/unistdio/ulc-vasprintf.c: New file.
15868         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
15869         * lib/unistdio/ulc-vsnprintf.c: New file.
15870         * lib/unistdio/ulc-vsprintf.c: New file.
15871         * lib/unistdio/u8-asnprintf.c: New file.
15872         * lib/unistdio/u8-asprintf.c: New file.
15873         * lib/unistdio/u8-printf-parse.c: New file.
15874         * lib/unistdio/u8-snprintf.c: New file.
15875         * lib/unistdio/u8-sprintf.c: New file.
15876         * lib/unistdio/u8-vasnprintf.c: New file.
15877         * lib/unistdio/u8-vasprintf.c: New file.
15878         * lib/unistdio/u8-vsnprintf.c: New file.
15879         * lib/unistdio/u8-vsprintf.c: New file.
15880         * lib/unistdio/u8-u8-asnprintf.c: New file.
15881         * lib/unistdio/u8-u8-asprintf.c: New file.
15882         * lib/unistdio/u8-u8-snprintf.c: New file.
15883         * lib/unistdio/u8-u8-sprintf.c: New file.
15884         * lib/unistdio/u8-u8-vasnprintf.c: New file.
15885         * lib/unistdio/u8-u8-vasprintf.c: New file.
15886         * lib/unistdio/u8-u8-vsnprintf.c: New file.
15887         * lib/unistdio/u8-u8-vsprintf.c: New file.
15888         * lib/unistdio/u16-asnprintf.c: New file.
15889         * lib/unistdio/u16-asprintf.c: New file.
15890         * lib/unistdio/u16-printf-parse.c: New file.
15891         * lib/unistdio/u16-snprintf.c: New file.
15892         * lib/unistdio/u16-sprintf.c: New file.
15893         * lib/unistdio/u16-vasnprintf.c: New file.
15894         * lib/unistdio/u16-vasprintf.c: New file.
15895         * lib/unistdio/u16-vsnprintf.c: New file.
15896         * lib/unistdio/u16-vsprintf.c: New file.
15897         * lib/unistdio/u16-u16-asnprintf.c: New file.
15898         * lib/unistdio/u16-u16-asprintf.c: New file.
15899         * lib/unistdio/u16-u16-snprintf.c: New file.
15900         * lib/unistdio/u16-u16-sprintf.c: New file.
15901         * lib/unistdio/u16-u16-vasnprintf.c: New file.
15902         * lib/unistdio/u16-u16-vasprintf.c: New file.
15903         * lib/unistdio/u16-u16-vsnprintf.c: New file.
15904         * lib/unistdio/u16-u16-vsprintf.c: New file.
15905         * lib/unistdio/u32-asnprintf.c: New file.
15906         * lib/unistdio/u32-asprintf.c: New file.
15907         * lib/unistdio/u32-printf-parse.c: New file.
15908         * lib/unistdio/u32-snprintf.c: New file.
15909         * lib/unistdio/u32-sprintf.c: New file.
15910         * lib/unistdio/u32-vasnprintf.c: New file.
15911         * lib/unistdio/u32-vasprintf.c: New file.
15912         * lib/unistdio/u32-vsnprintf.c: New file.
15913         * lib/unistdio/u32-vsprintf.c: New file.
15914         * lib/unistdio/u32-u32-asnprintf.c: New file.
15915         * lib/unistdio/u32-u32-asprintf.c: New file.
15916         * lib/unistdio/u32-u32-snprintf.c: New file.
15917         * lib/unistdio/u32-u32-sprintf.c: New file.
15918         * lib/unistdio/u32-u32-vasnprintf.c: New file.
15919         * lib/unistdio/u32-u32-vasprintf.c: New file.
15920         * lib/unistdio/u32-u32-vsnprintf.c: New file.
15921         * lib/unistdio/u32-u32-vsprintf.c: New file.
15922         * tests/unistdio/test-ulc-asnprintf1.c: New file.
15923         * tests/unistdio/test-ulc-asnprintf1.h: New file.
15924         * tests/unistdio/test-ulc-printf1.h: New file.
15925         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
15926         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
15927         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
15928         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
15929         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
15930         * tests/unistdio/test-ulc-vasprintf1.c: New file.
15931         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
15932         * tests/unistdio/test-ulc-vsprintf1.c: New file.
15933         * tests/unistdio/test-u8-asnprintf1.c: New file.
15934         * tests/unistdio/test-u8-asnprintf1.h: New file.
15935         * tests/unistdio/test-u8-printf1.h: New file.
15936         * tests/unistdio/test-u8-vasnprintf1.c: New file.
15937         * tests/unistdio/test-u8-vasnprintf2.c: New file.
15938         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
15939         * tests/unistdio/test-u8-vasnprintf3.c: New file.
15940         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
15941         * tests/unistdio/test-u8-vasprintf1.c: New file.
15942         * tests/unistdio/test-u8-vsnprintf1.c: New file.
15943         * tests/unistdio/test-u8-vsprintf1.c: New file.
15944         * tests/unistdio/test-u16-asnprintf1.c: New file.
15945         * tests/unistdio/test-u16-asnprintf1.h: New file.
15946         * tests/unistdio/test-u16-printf1.h: New file.
15947         * tests/unistdio/test-u16-vasnprintf1.c: New file.
15948         * tests/unistdio/test-u16-vasnprintf2.c: New file.
15949         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
15950         * tests/unistdio/test-u16-vasnprintf3.c: New file.
15951         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
15952         * tests/unistdio/test-u16-vasprintf1.c: New file.
15953         * tests/unistdio/test-u16-vsnprintf1.c: New file.
15954         * tests/unistdio/test-u16-vsprintf1.c: New file.
15955         * tests/unistdio/test-u32-asnprintf1.c: New file.
15956         * tests/unistdio/test-u32-asnprintf1.h: New file.
15957         * tests/unistdio/test-u32-printf1.h: New file.
15958         * tests/unistdio/test-u32-vasnprintf1.c: New file.
15959         * tests/unistdio/test-u32-vasnprintf2.c: New file.
15960         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
15961         * tests/unistdio/test-u32-vasnprintf3.c: New file.
15962         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
15963         * tests/unistdio/test-u32-vasprintf1.c: New file.
15964         * tests/unistdio/test-u32-vsnprintf1.c: New file.
15965         * tests/unistdio/test-u32-vsprintf1.c: New file.
15966         * modules/unistdio/base: New file.
15967         * modules/unistdio/u-printf-args: New file.
15968         * modules/unistdio/ulc-asnprintf: New file.
15969         * modules/unistdio/ulc-asprintf: New file.
15970         * modules/unistdio/ulc-fprintf: New file.
15971         * modules/unistdio/ulc-printf-parse: New file.
15972         * modules/unistdio/ulc-snprintf: New file.
15973         * modules/unistdio/ulc-sprintf: New file.
15974         * modules/unistdio/ulc-vasnprintf: New file.
15975         * modules/unistdio/ulc-vasprintf: New file.
15976         * modules/unistdio/ulc-vfprintf: New file.
15977         * modules/unistdio/ulc-vsnprintf: New file.
15978         * modules/unistdio/ulc-vsprintf: New file.
15979         * modules/unistdio/u8-asnprintf: New file.
15980         * modules/unistdio/u8-asprintf: New file.
15981         * modules/unistdio/u8-printf-parse: New file.
15982         * modules/unistdio/u8-snprintf: New file.
15983         * modules/unistdio/u8-sprintf: New file.
15984         * modules/unistdio/u8-vasnprintf: New file.
15985         * modules/unistdio/u8-vasprintf: New file.
15986         * modules/unistdio/u8-vsnprintf: New file.
15987         * modules/unistdio/u8-vsprintf: New file.
15988         * modules/unistdio/u8-u8-asnprintf: New file.
15989         * modules/unistdio/u8-u8-asprintf: New file.
15990         * modules/unistdio/u8-u8-snprintf: New file.
15991         * modules/unistdio/u8-u8-sprintf: New file.
15992         * modules/unistdio/u8-u8-vasnprintf: New file.
15993         * modules/unistdio/u8-u8-vasprintf: New file.
15994         * modules/unistdio/u8-u8-vsnprintf: New file.
15995         * modules/unistdio/u8-u8-vsprintf: New file.
15996         * modules/unistdio/u16-asnprintf: New file.
15997         * modules/unistdio/u16-asprintf: New file.
15998         * modules/unistdio/u16-printf-parse: New file.
15999         * modules/unistdio/u16-snprintf: New file.
16000         * modules/unistdio/u16-sprintf: New file.
16001         * modules/unistdio/u16-vasnprintf: New file.
16002         * modules/unistdio/u16-vasprintf: New file.
16003         * modules/unistdio/u16-vsnprintf: New file.
16004         * modules/unistdio/u16-vsprintf: New file.
16005         * modules/unistdio/u16-u16-asnprintf: New file.
16006         * modules/unistdio/u16-u16-asprintf: New file.
16007         * modules/unistdio/u16-u16-snprintf: New file.
16008         * modules/unistdio/u16-u16-sprintf: New file.
16009         * modules/unistdio/u16-u16-vasnprintf: New file.
16010         * modules/unistdio/u16-u16-vasprintf: New file.
16011         * modules/unistdio/u16-u16-vsnprintf: New file.
16012         * modules/unistdio/u16-u16-vsprintf: New file.
16013         * modules/unistdio/u32-asnprintf: New file.
16014         * modules/unistdio/u32-asprintf: New file.
16015         * modules/unistdio/u32-printf-parse: New file.
16016         * modules/unistdio/u32-snprintf: New file.
16017         * modules/unistdio/u32-sprintf: New file.
16018         * modules/unistdio/u32-vasnprintf: New file.
16019         * modules/unistdio/u32-vasprintf: New file.
16020         * modules/unistdio/u32-vsnprintf: New file.
16021         * modules/unistdio/u32-vsprintf: New file.
16022         * modules/unistdio/u32-u32-asnprintf: New file.
16023         * modules/unistdio/u32-u32-asprintf: New file.
16024         * modules/unistdio/u32-u32-snprintf: New file.
16025         * modules/unistdio/u32-u32-sprintf: New file.
16026         * modules/unistdio/u32-u32-vasnprintf: New file.
16027         * modules/unistdio/u32-u32-vasprintf: New file.
16028         * modules/unistdio/u32-u32-vsnprintf: New file.
16029         * modules/unistdio/u32-u32-vsprintf: New file.
16030         * modules/unistdio/ulc-asnprintf-tests: New file.
16031         * modules/unistdio/ulc-vasnprintf-tests: New file.
16032         * modules/unistdio/ulc-vasprintf-tests: New file.
16033         * modules/unistdio/ulc-vsnprintf-tests: New file.
16034         * modules/unistdio/ulc-vsprintf-tests: New file.
16035         * modules/unistdio/u8-asnprintf-tests: New file.
16036         * modules/unistdio/u8-vasnprintf-tests: New file.
16037         * modules/unistdio/u8-vasprintf-tests: New file.
16038         * modules/unistdio/u8-vsnprintf-tests: New file.
16039         * modules/unistdio/u8-vsprintf-tests: New file.
16040         * modules/unistdio/u16-asnprintf-tests: New file.
16041         * modules/unistdio/u16-vasnprintf-tests: New file.
16042         * modules/unistdio/u16-vasprintf-tests: New file.
16043         * modules/unistdio/u16-vsnprintf-tests: New file.
16044         * modules/unistdio/u16-vsprintf-tests: New file.
16045         * modules/unistdio/u32-asnprintf-tests: New file.
16046         * modules/unistdio/u32-vasnprintf-tests: New file.
16047         * modules/unistdio/u32-vasprintf-tests: New file.
16048         * modules/unistdio/u32-vsnprintf-tests: New file.
16049         * modules/unistdio/u32-vsprintf-tests: New file.
16050         * MODULES.html.sh (Unicode string functions): Add the new modules.
16051
16052 2007-07-01  Bruno Haible  <bruno@clisp.org>
16053
16054         * lib/sprintf.c (sprintf): Limit the available length estimation,
16055         to avoid address wraparound.
16056         * lib/vsprintf.c (vsprintf): Likewise.
16057         * modules/sprintf-posix (Dependencies): Add stdint.
16058         * modules/vsprintf-posix (Dependencies): Likewise.
16059
16060 2007-07-01  Bruno Haible  <bruno@clisp.org>
16061
16062         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
16063         Windows PATH as well. Conservative double-quoting. Comments.
16064
16065 2007-07-01  Bruno Haible  <bruno@clisp.org>
16066             Eric Blake  <ebb9@byu.net>
16067             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16068
16069         * gnulib-tool (self_abspathname): Fix algorithm to cope with
16070         empty components in $PATH, denoting '.'.
16071
16072 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16073
16074         * gnulib-tool: Fix indentation.
16075         (func_create_megatestdir): Likewise.
16076         Report by Bruno Haible.
16077
16078 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16079
16080         Sync from Automake.
16081         * build-aux/gnupload: Fix shell portability issues with for loops.
16082         Report by Karl Berry.
16083
16084 2007-06-29  Simon Josefsson  <simon@josefsson.org>
16085
16086         * build-aux/maint.mk (POURL): Use translationproject.org.
16087
16088 2007-06-27  Simon Josefsson  <simon@josefsson.org>
16089             Bruno Haible  <bruno@clisp.org>
16090
16091         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
16092         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
16093         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
16094         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
16095         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
16096
16097 2007-06-27  Bruno Haible  <bruno@clisp.org>
16098
16099         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
16100         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
16101
16102 2007-06-26  Karl Berry  <karl@gnu.org>
16103
16104         * MODULES.html.sh: remove xreadlink-with-size.
16105
16106 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
16107
16108         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
16109         method that I hope also handles the double-include problem noted
16110         by Bruno Haible in
16111         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
16112
16113 2007-06-23  Bruno Haible  <bruno@clisp.org>
16114
16115         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16116         Don't let the 'mostlyclean' target fail if the last subdirectory could
16117         not be removed.
16118         Reported by Karl Berry.
16119
16120 2007-06-23  Bruno Haible  <bruno@clisp.org>
16121
16122         * gnulib-tool (echo): Add a speedier workaround for ksh.
16123         * tests/test-echo.sh: Likewise.
16124
16125 2007-06-23  Bruno Haible  <bruno@clisp.org>
16126
16127         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
16128         * tests/test-echo.sh: Likewise.
16129
16130 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16131
16132         * gnulib-tool (IFS): Initialize early, so we don't set it to
16133         empty later.
16134         (self_abspathname): Rewrite algorithm to set it, reindent.
16135         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
16136         (func_create_megatestdir): Merge some sed scripts.
16137
16138 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
16139
16140         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
16141         exposed by Sun Studio 11 cc on Solaris 8.
16142
16143 2007-06-22  Bruno Haible  <bruno@clisp.org>
16144
16145         * gnulib-tool (echo): Ensure the echo primitive does not interpret
16146         backslashes.
16147         * tests/test-echo.sh: New file.
16148
16149 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16150
16151         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
16152         simplify `sed_replace_build_aux' scripts, they are portable but
16153         echoing them with `echo' is not.
16154         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
16155
16156 2007-06-21  Karl Berry  <karl@gnu.org>
16157
16158         * config/srclist.txt: guess we can't handle the licenses via
16159         srclist at the moment.
16160
16161 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
16162
16163         * MODULES.html.sh: Add include_next.
16164         * modules/include_next: New file.
16165
16166 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
16167
16168         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
16169         INCLUDE_NEXT.
16170         (gl_CHECK_NEXT_HEADERS): New macro.
16171         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
16172         the obsolescent gl_ABSOLUTE_HEADER.
16173         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
16174         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
16175         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
16176         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
16177         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
16178         * m4/math_h.m4 (gl_MATH_H): Likewise.
16179         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
16180         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
16181         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
16182         * m4/stdint.m4 (gl_STDINT_H): Likewise.
16183         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
16184         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
16185         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
16186         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
16187         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
16188         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
16189         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
16190         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
16191         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
16192         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
16193         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
16194         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
16195         * m4/inttypes.m4 (gl_INTTYPES_H): Define
16196         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
16197         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
16198         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
16199         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
16200         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
16201         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
16202         * lib/float_.h: Likewise.
16203         * lib/inttypes_.h: Likewise.
16204         * lib/math_.h: Likewise.
16205         * lib/search_.h: Likewise.
16206         * lib/signal_.h: Likewise.
16207         * lib/stdint_.h: Likewise.
16208         * lib/stdio_.h: Likewise.
16209         * lib/stdlib_.h: Likewise.
16210         * lib/string_.h: Likewise.
16211         * lib/sys_stat_.h: Likewise.
16212         * lib/sys_time_.h: Likewise.
16213         * lib/time_.h: Likewise.
16214         * lib/unistd_.h: Likewise.
16215         * lib/wchar_.h: Likewise.
16216         * lib/wctype_.h: Likewise.
16217         * lib/dirent_.h: Likewise.
16218         * lib/iconv_.h: Likewise.
16219         * lib/locale_.h: Likewise.
16220         * lib/netinet_in_.h: Likewise.
16221         * lib/sys_select_.h: Likewise.
16222         * lib/sys_socket_.h: Likewise.
16223         * lib/sysexits_.h: Likewise.
16224         * modules/fcntl (Depends-on): Depend on include_next, not
16225         absolute_header.
16226         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
16227         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
16228         * modules/fchdir: Likewise.
16229         * modules/float: Likewise.
16230         * modules/iconv_open: Likewise.
16231         * modules/inttypes: Likewise.
16232         * modules/locale: Likewise.
16233         * modules/math: Likewise.
16234         * modules/netinet_in: Likewise.
16235         * modules/search: Likewise.
16236         * modules/signal: Likewise.
16237         * modules/stdint: Likewise.
16238         * modules/stdio: Likewise.
16239         * modules/stdlib: Likewise.
16240         * modules/string: Likewise.
16241         * modules/sys_select: Likewise.
16242         * modules/sys_socket: Likewise.
16243         * modules/sys_stat: Likewise.
16244         * modules/sys_time: Likewise.
16245         * modules/sysexits: Likewise.
16246         * modules/time: Likewise.
16247         * modules/unistd: Likewise.
16248         * modules/wchar: Likewise.
16249         * modules/wctype: Likewise.
16250         * modules/sys_stat: Change maintainer to "all".
16251         * modules/unistd: Likewise.
16252
16253 2007-06-20  Karl Berry  <karl@gnu.org>
16254
16255         * config/srclist.txt: track www changes in license files.
16256
16257 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
16258
16259         * build-aux/bootstrap: Remove stray dot.
16260         Make sure build_aux settings are honored when linking
16261         gnulib_extra_files.
16262
16263 2007-06-19  Eric Blake  <ebb9@byu.net>
16264
16265         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
16266         Allow compilation on cygwin.
16267
16268 2007-06-19  Jim Meyering  <jim@meyering.net>
16269
16270         xreadlink-with-size: Remove module.  No longer used.
16271         Ex-callers now use xreadlink or mreadlink-with-size.
16272         * modules/xreadlink-with-size: Remove module.
16273         * lib/xreadlink-with-size.c: Remove file.
16274         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
16275         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
16276         just before the function definition *is* accurate.
16277
16278         Eliminate one way canonicalize_filename_mode could exit.
16279         * lib/canonicalize.c (canonicalize_filename_mode):
16280         Use mreadlink_with_size, not xreadlink_with_size.
16281
16282 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
16283
16284         Detect porting problems to FreeBSD/arm, which has time_t wider than
16285         long int.  Original problem reported for GNU diff by Xin Li in
16286         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
16287         * modules/getdate (Depends-on): Add intprops, verify.
16288         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
16289         is an integer type no wider than long int.
16290
16291 2007-06-18  Jim Meyering  <jim@meyering.net>
16292
16293         New module: mreadlink-with-size.
16294         * MODULES.html.sh: Add mreadlink-with-size.
16295         * modules/mreadlink-with-size: New module
16296         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
16297         not xreadlink-with-size.
16298         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
16299
16300 2007-06-16  Bruno Haible  <bruno@clisp.org>
16301
16302         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
16303         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
16304         Reported by Gary V. Vaughan <gary@gnu.org>.
16305
16306 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
16307
16308         Revamp lchown so that it lives in unistd.h where it belongs.
16309         * lib/lchown.h: Remove.
16310         * lib/dirchownmod.c: Don't include lib/lchown.h.
16311         * lib/fchownat.c: Likewise.
16312         * lib/openat.c: Likewise.
16313         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
16314         does not follow symlinks.
16315         (EOPNOTSUPP): Define if not defined.
16316         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
16317         is defined to 0.
16318         (lchown): New decl.
16319         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
16320         Do not check for lchown decl.
16321         Set REPLACE_LCHOWN.
16322         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
16323         REPLACE_LCHOWN.
16324         * modules/chown: Make it clear it follows symlinks.
16325         * modules/lchown: Make it clear it doesn't follow symlinks.
16326         (Files): Remove lib/lchown.h
16327         (Depends-on): Add unistd.
16328         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
16329         (Include): Include <unistd.h>, not "lchown.h".
16330         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
16331         REPLACE_LCHOWN.
16332
16333 2007-06-15  Jim Meyering  <jim@meyering.net>
16334
16335         Change license (GPL to LGPL) of fsusage and dependents.
16336         * modules/fsusage (License): Change to LGPL.
16337         * modules/full-read (License): Likewise.
16338         * modules/full-write (License): Likewise.
16339         * modules/safe-read (License): Likewise.
16340         * modules/safe-write (License): Likewise.
16341
16342 2007-06-14  Ben Pfaff  <blp@gnu.org>
16343
16344         Missing part of allocsa -> malloca transition.
16345         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
16346         gl_MALLOCA.
16347
16348 2007-06-12  Bruno Haible  <bruno@clisp.org>
16349
16350         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
16351         to ia64, x86_64, i386.
16352         Reported by Eric Blake.
16353
16354 2007-06-12  Bruno Haible  <bruno@clisp.org>
16355
16356         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
16357         cross-compiling to x86_64.
16358
16359 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
16360
16361         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
16362         glitch reported by Ralf Wildenhues in
16363         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
16364
16365         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
16366         Vin Shelton.
16367
16368 2007-06-11  Bruno Haible  <bruno@clisp.org>
16369
16370         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
16371         replacement string.
16372         Reported by Eric Blake.
16373
16374 2007-06-10  Bruno Haible  <bruno@clisp.org>
16375
16376         Prepare vasnprintf code for use with Unicode strings.
16377         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
16378         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
16379         TYPE_U32_STRING.
16380         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
16381         a_u32_string variants.
16382         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
16383         * lib/printf-args.c: Don't include config.h and the specification
16384         header if PRINTF_FETCHARGS is already defined.
16385         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
16386         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
16387         TYPE_U16_STRING, TYPE_U32_STRING.
16388         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
16389         u16_directive, u16_directives, u32_directive, u32_directives): New
16390         types.
16391         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
16392         New declarations.
16393         * lib/printf-parse.c: Don't include config.h and the specification
16394         header if PRINTF_PARSE is already defined. Eliminate the set of
16395         parameters for WIDE_CHAR_VERSION; the user of this file must provide
16396         them now. Include c-ctype.h.
16397         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
16398         directive and CHAR_T_ONLY_ASCII.
16399         * lib/vasnprintf.c: Don't include config.h and the specification header
16400         if VASNPRINTF is already defined.
16401         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
16402         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
16403         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
16404         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
16405         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
16406         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
16407         code accordingly.
16408         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
16409         pad_ourselves also in this case, with the 'c' and 's' directives, and
16410         with a different notion of "width".
16411         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
16412
16413 2007-06-10  Bruno Haible  <bruno@clisp.org>
16414
16415         * modules/unistr/u32-mbsnlen: New file.
16416         * lib/unistr/u32-mbsnlen.c: New file.
16417
16418         * modules/unistr/u16-mbsnlen: New file.
16419         * lib/unistr/u16-mbsnlen.c: New file.
16420
16421         * modules/unistr/u8-mbsnlen: New file.
16422         * lib/unistr/u8-mbsnlen.c: New file.
16423
16424         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
16425         declarations.
16426
16427 2007-06-10  Bruno Haible  <bruno@clisp.org>
16428
16429         * lib/string_.h (mbsnlen): New declaration.
16430         * lib/mbsnlen.c: New file.
16431         * m4/mbsnlen.m4: New file.
16432         * modules/mbsnlen: New file.
16433         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
16434         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
16435         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
16436
16437 2007-06-10  Bruno Haible  <bruno@clisp.org>
16438
16439         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
16440
16441 2007-06-10  Bruno Haible  <bruno@clisp.org>
16442
16443         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
16444         * lib/mbuiter.h: Likewise.
16445
16446 2007-06-10  Bruno Haible  <bruno@clisp.org>
16447
16448         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
16449         declaration.
16450
16451 2007-06-10  Karl Berry  <karl@gnu.org>
16452
16453         * config/srclist.txt: remove gettext entries, Bruno prefers
16454         to update individually.
16455
16456 2007-06-10  Bruno Haible  <bruno@clisp.org>
16457
16458         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
16459         'maxlen'. Ensure only length + width bytes are allocated, not
16460         length + 1 + width.
16461
16462 2007-06-09  Bruno Haible  <bruno@clisp.org>
16463
16464         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
16465         (CHAR_T): Remove macro.
16466         (VASNPRINTF): Update.
16467
16468 2007-06-09  Bruno Haible  <bruno@clisp.org>
16469
16470         * MODULES.html.sh (Unicode string functions): Add the new modules.
16471
16472         * modules/uniconv/u32-conv-to-enc: New file.
16473         * lib/uniconv/u32-conv-to-enc.c: New file.
16474         * modules/uniconv/u32-conv-to-enc-tests: New file.
16475         * tests/uniconv/test-u32-conv-to-enc.c: New file.
16476
16477         * modules/uniconv/u16-conv-to-enc: New file.
16478         * lib/uniconv/u16-conv-to-enc.c: New file.
16479         * lib/uniconv/u-conv-to-enc.h: New file.
16480         * modules/uniconv/u16-conv-to-enc-tests: New file.
16481         * tests/uniconv/test-u16-conv-to-enc.c: New file.
16482
16483         * modules/uniconv/u8-conv-to-enc: New file.
16484         * lib/uniconv/u8-conv-to-enc.c: New file.
16485         * modules/uniconv/u8-conv-to-enc-tests: New file.
16486         * tests/uniconv/test-u8-conv-to-enc.c: New file.
16487
16488         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
16489         u32_conv_to_encoding): New declarations.
16490
16491 2007-06-09  Bruno Haible  <bruno@clisp.org>
16492
16493         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
16494
16495 2007-06-09  Bruno Haible  <bruno@clisp.org>
16496
16497         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
16498         * modules/malloca: Renamed from modules/allocsa, updated.
16499         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
16500         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
16501         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
16502         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
16503         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
16504         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
16505         * modules/xmalloca: Renamed from modules/xallocsa, updated.
16506         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
16507         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
16508         * modules/c-strcasestr (Depends-on): Update.
16509         * lib/c-strcasestr.c: Update.
16510         * modules/c-strstr (Depends-on): Update.
16511         * lib/c-strstr.c: Update.
16512         * modules/canonicalize-lgpl (Depends-on): Update.
16513         * lib/canonicalize-lgpl.c: Update.
16514         * modules/clean-temp (Depends-on): Update.
16515         * lib/clean-temp.c: Update.
16516         * modules/csharpcomp (Depends-on): Update.
16517         * lib/csharpcomp.c: Update.
16518         * modules/csharpexec (Depends-on): Update.
16519         * lib/csharpexec.c: Update.
16520         * modules/javacomp (Depends-on): Update.
16521         * lib/javacomp.c: Update.
16522         * modules/javaexec (Depends-on): Update.
16523         * lib/javaexec.c: Update.
16524         * modules/mbscasestr (Depends-on): Update.
16525         * lib/mbscasestr.c: Update.
16526         * modules/mbsstr (Depends-on): Update.
16527         * lib/mbsstr.c: Update.
16528         * modules/setenv (Depends-on): Update.
16529         * lib/setenv.c: Update.
16530         * modules/strcasestr (Depends-on): Update.
16531         * lib/strcasestr.c: Update.
16532         * modules/striconveha (Depends-on): Update.
16533         * lib/striconveha.c: Update.
16534         * modules/relocatable-prog-wrapper (Files): Update.
16535         * lib/relocwrapper.c: Update.
16536         * build-aux/install-reloc: Update.
16537         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
16538
16539 2007-06-08  Bruno Haible  <bruno@clisp.org>
16540
16541         Port to uClibc.
16542         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
16543         * lib/fpurge.c (fpurge): Likewise.
16544         * lib/freading.c (freading): Likewise.
16545         * lib/fseeko.c (rpl_fseeko): Likewise.
16546         * lib/fseterr.c (fseterr): Likewise.
16547         * lib/fwriting.c (fwriting): Likewise.
16548         * tests/test-fflush.c (main): Avoid a failure on uClibc.
16549
16550 2007-06-08  Bruno Haible  <bruno@clisp.org>
16551
16552         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
16553         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
16554         * modules/gettext (Files): Add m4/intlmacosx.m4.
16555
16556 2007-06-07  Bruno Haible  <bruno@clisp.org>
16557
16558         * modules/localename-tests: New file.
16559         * tests/test-localename.c: New file.
16560
16561         New module 'localename'.
16562         * lib/localename.h: New file.
16563         * lib/localename.c: New file, from GNU gettext.
16564         * m4/localename.m4: New file.
16565         * modules/localename: New file.
16566
16567 2007-06-07  Bruno Haible  <bruno@clisp.org>
16568
16569         Work around the lack of <wchar.h> on some builds of uClibc.
16570         * doc/headers/wchar.texi: Update.
16571         * lib/wchar_.h: Include <wchar.h> only if it exists.
16572         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
16573         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
16574         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
16575         doesn't exist.
16576         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
16577         * modules/mbfile (Depends-on): Add wchar.
16578         * modules/mbiter (Depends-on): Likewise.
16579         * modules/mbuiter (Depends-on): Likewise.
16580         Reported by Simon Josefsson.
16581
16582 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16583
16584         Work around problem reported by Steven M. Schweda in
16585         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
16586         Tru64 5.1B with the Compaq compiler environment installed declares
16587         an 'isblank' function but does not define it in the C library.
16588         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
16589         * lib/regex_internal.h (isblank): Likewise.
16590         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
16591         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
16592
16593 2007-06-05  Bruno Haible  <bruno@clisp.org>
16594
16595         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
16596         ia64.
16597         * modules/printf-safe: New file.
16598         * modules/fprintf-posix (Depends-on): Add printf-safe.
16599         * modules/printf-posix (Depends-on): Likewise.
16600         * modules/snprintf-posix (Depends-on): Likewise.
16601         * modules/sprintf-posix (Depends-on): Likewise.
16602         * modules/vasnprintf-posix (Depends-on): Likewise.
16603         * modules/vasprintf-posix (Depends-on): Likewise.
16604         * modules/vfprintf-posix (Depends-on): Likewise.
16605         * modules/vprintf-posix (Depends-on): Likewise.
16606         * modules/vsnprintf-posix (Depends-on): Likewise.
16607         * modules/vsprintf-posix (Depends-on): Likewise.
16608         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
16609         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
16610         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
16611         "no" on i386, x86_64, ia64.
16612         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
16613         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
16614         on i386, x86_64, ia64.
16615         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
16616         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
16617         on i386, x86_64, ia64.
16618         * tests/test-vasnprintf-posix.c: Include float.h.
16619         (LDBL80_WORDS): New macro.
16620         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
16621         on i386, x86_64, ia64.
16622         * tests/test-vasprintf-posix.c: Include float.h.
16623         (LDBL80_WORDS): New macro.
16624         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
16625         on i386, x86_64, ia64.
16626         * tests/test-snprintf-posix.c: Include float.h.
16627         * tests/test-sprintf-posix.c: Likewise.
16628         * tests/test-vsnprintf-posix.c: Likewise.
16629         * tests/test-vsprintf-posix.c: Likewise.
16630
16631 2007-06-05  Bruno Haible  <bruno@clisp.org>
16632
16633         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
16634         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
16635         non-IEEE numbers on i386, x86_64, ia64.
16636         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
16637         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
16638         * tests/test-isnanl.h: Include float.h.
16639         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
16640
16641 2007-06-05  Bruno Haible  <bruno@clisp.org>
16642
16643         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
16644         also the %a / %A. Handle the %a / %A code before this extra handling.
16645
16646 2007-06-05  Bruno Haible  <bruno@clisp.org>
16647
16648         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
16649         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
16650
16651 2007-06-05  Bruno Haible  <bruno@clisp.org>
16652
16653         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
16654         typo in variable name.
16655
16656 2007-06-05  Eric Blake  <ebb9@byu.net>
16657
16658         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
16659         Reported by Simon Josefsson.
16660
16661 2007-06-04  Bruno Haible  <bruno@clisp.org>
16662
16663         Avoid test failures on some PowerPC platforms.
16664         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
16665         Define differently for PowerPC.
16666         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
16667         Reported by Gary V. Vaughan <gary@gnu.org>.
16668
16669 2007-06-02  Bruno Haible  <bruno@clisp.org>
16670
16671         Fix test-stdint failure on FreeBSD/ia64.
16672         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
16673         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
16674         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
16675         * doc/headers/stdint.texi: Update.
16676
16677 2007-06-01  Bruno Haible  <bruno@clisp.org>
16678
16679         * tests/test-binary-io.c (main): Pass a third argument to open().
16680         Reported by Gary V. Vaughan <gary@gnu.org>.
16681
16682 2007-06-01  Bruno Haible  <bruno@clisp.org>
16683
16684         * doc/functions/frexpl.texi: Update for mingw.
16685
16686 2007-06-01  Bruno Haible  <bruno@clisp.org>
16687
16688         * tests/test-lseek.c (main): Disable test of errno for invalid third
16689         argument.
16690         * doc/functions/lseek.texi: Update.
16691         Reported by Gary V. Vaughan <gary@gnu.org>.
16692
16693 2007-05-28  Bruno Haible  <bruno@clisp.org>
16694
16695         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
16696
16697 2007-05-31  Eric Blake  <ebb9@byu.net>
16698
16699         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
16700         cross compiling.
16701
16702 2007-05-30  Eric Blake  <ebb9@byu.net>
16703         and Bruno Haible  <bruno@clisp.org>
16704
16705         Work around mingw test failures exposed by m4-1.4.9b.
16706         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
16707         * tests/test-unistd.c: Disable uid_t and git_t tests for the
16708         moment.
16709
16710 2007-05-30  Bruno Haible  <bruno@clisp.org>
16711
16712         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
16713         assuming that they are closed. Needed on HP-UX 11.
16714
16715 2007-05-29  Bruno Haible  <bruno@clisp.org>
16716
16717         Fix a problem with #include_next.
16718         * lib/dirent_.h: Split the double-inclusion guard.
16719         * lib/fcntl_.h: Likewise.
16720         * lib/float_.h: Likewise.
16721         * lib/iconv_.h: Likewise.
16722         * lib/inttypes_.h: Likewise.
16723         * lib/locale_.h: Likewise.
16724         * lib/math_.h: Likewise.
16725         * lib/netinet_in_.h: Likewise.
16726         * lib/search_.h: Likewise.
16727         * lib/signal_.h: Likewise.
16728         * lib/stdint_.h: Likewise.
16729         * lib/stdio_.h: Likewise.
16730         * lib/stdlib_.h: Likewise.
16731         * lib/string_.h: Likewise.
16732         * lib/sys_select_.h: Likewise.
16733         * lib/sys_socket_.h: Likewise.
16734         * lib/sys_stat_.h: Likewise.
16735         * lib/sys_time_.h: Likewise.
16736         * lib/sysexits_.h: Likewise.
16737         * lib/time_.h: Likewise.
16738         * lib/unistd_.h: Likewise.
16739         * lib/wchar_.h: Likewise.
16740         * lib/wctype_.h: Likewise.
16741
16742 2007-05-29  Bruno Haible  <bruno@clisp.org>
16743
16744         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
16745         for the moment.
16746
16747 2007-05-29  Bruno Haible  <bruno@clisp.org>
16748
16749         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
16750         invocation.
16751         Reported by Eric Blake.
16752
16753 2007-05-29  Bruno Haible  <bruno@clisp.org>
16754
16755         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
16756         compiling case.
16757
16758 2007-05-29  Eric Blake  <ebb9@byu.net>
16759             Bruno Haible  <bruno@clisp.org>
16760
16761         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
16762         cross compiles.
16763
16764 2007-05-28  Eric Blake  <ebb9@byu.net>
16765
16766         * modules/closein-tests (test_closein_LDADD): Support test on
16767         cygwin with libtool.
16768
16769 2007-05-28  Bruno Haible  <bruno@clisp.org>
16770
16771         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
16772         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
16773         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
16774         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
16775         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
16776         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
16777         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
16778         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
16779         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
16780
16781 2007-05-28  Eric Blake  <ebb9@byu.net>
16782
16783         Unconditionally include <config.h> in unit tests.
16784         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
16785         * tests/test-allocsa.c, tests/test-arcfour.c,
16786         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
16787         tests/test-array_list.c, tests/test-array_oset.c,
16788         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
16789         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
16790         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
16791         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
16792         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
16793         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
16794         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
16795         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
16796         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
16797         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
16798         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
16799         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
16800         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
16801         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
16802         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
16803         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
16804         test-md5.c, test-memmem.c, test-printf-posix.c,
16805         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
16806         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
16807         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
16808         test-strcasestr.c, test-striconv.c, test-striconveh.c,
16809         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
16810         test-vasnprintf-posix2.c, test-vasnprintf.c,
16811         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
16812         test-vfprintf-posix.c, test-vprintf-posix.c,
16813         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
16814         test-xvasprintf.c: Likewise.
16815
16816 2007-05-28  Bruno Haible  <bruno@clisp.org>
16817
16818         * gnulib-tool (func_import): Remember the --with-tests command-line
16819         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
16820         Reported by Eric Blake.
16821
16822 2007-05-28  Bruno Haible  <bruno@clisp.org>
16823
16824         * modules/ftell-tests: New file.
16825         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
16826         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
16827
16828         * lib/ftell.c: New file.
16829         * modules/ftell: New file.
16830         * m4/ftell.m4: New file.
16831         * doc/functions/ftell.texi: Update.
16832         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
16833         REPLACE_FTELL.
16834         * lib/stdio_.h (rpl_ftell): New declaration.
16835         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
16836         REPLACE_FTELL.
16837
16838 2007-05-28  Eric Blake  <ebb9@byu.net>
16839
16840         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
16841
16842 2007-05-28  Bruno Haible  <bruno@clisp.org>
16843
16844         * modules/fseek-tests: New file.
16845         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
16846         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
16847
16848         * lib/fseek.c: New file.
16849         * modules/fseek: New file.
16850         * m4/fseek.m4: New file.
16851         * doc/functions/fseek.texi: Update.
16852         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
16853         REPLACE_FSEEK.
16854         * lib/stdio_.h (rpl_fseek): New declaration.
16855         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
16856         REPLACE_FSEEK.
16857
16858 2007-05-28  Bruno Haible  <bruno@clisp.org>
16859
16860         * lib/stdio_.h (fflush): More comments.
16861
16862 2007-05-28  Bruno Haible  <bruno@clisp.org>
16863
16864         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
16865         runtime test.
16866
16867 2007-05-28  Eric Blake  <ebb9@byu.net>
16868
16869         Improve lseek module.
16870         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
16871         * lib/unistd_.h (lseek): Scale back link warning message.
16872         * tests/test-lseek.c: Beef up test.
16873         * tests/test-lseek.sh: Exercise more facets of lseek.
16874         Reported by Bruno Haible.
16875
16876 2007-05-28  Bruno Haible  <bruno@clisp.org>
16877
16878         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
16879         to define.
16880
16881 2007-05-27  Bruno Haible  <bruno@clisp.org>
16882
16883         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
16884
16885 2007-05-27  Bruno Haible  <bruno@clisp.org>
16886
16887         * modules/openmp: New file.
16888         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
16889         Noah Misch.
16890
16891 2007-05-26  Bruno Haible  <bruno@clisp.org>
16892
16893         * modules/chdir-long (Depends-on): Add fchdir.
16894         * modules/chdir-safer (Depends-on): Likewise.
16895         * modules/fts (Depends-on): Likewise.
16896         * modules/fts-lgpl (Depends-on): Likewise.
16897         * modules/openat (Depends-on): Likewise.
16898         * modules/savewd (Depends-on): Likewise.
16899
16900 2007-05-24  Eric Blake  <ebb9@byu.net>
16901
16902         Fix lseek on mingw.
16903         * modules/lseek: New module.
16904         * m4/lseek.m4: New file.
16905         * lib/lseek.c: New file.
16906         * modules/lseek-tests: New file.
16907         * tests/test-lseek.c: New file.
16908         * tests/test-lseek.sh: New file.
16909         * MODULES.html.sh: Document lseek module.
16910         * modules/fflush (Depends-on): Add lseek, fseeko.
16911         * modules/fseeko (Depends-on): Likewise.
16912         * modules/ftello (Depends-on): Likewise.
16913         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
16914         broken.
16915         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
16916         broken.
16917         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
16918         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
16919         * lib/ftello.c (rpl_ftello): Likewise.
16920         * tests/test-fseeko.c (main): Test this.
16921         * tests/test-fseeko.sh: Likewise.
16922         * tests/test-ftello.c (main): Likewise.
16923         * tests/test-ftello.sh: Likewise.
16924         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
16925         implies replacing fseek.
16926         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
16927         HAVE_FTELLO.
16928         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
16929         * modules/unistd (Makefile.am): Likewise.
16930         * lib/unistd_.h (lseek): Declare a replacement.
16931         * doc/functions/lseek.texi (lseek): Document this fix.
16932         * doc/functions/fseek.texi (fseek): Likewise.
16933         * doc/functions/ftell.texi (ftell): Likewise.
16934
16935 2007-05-24  Bruno Haible  <bruno@clisp.org>
16936
16937         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
16938         in the printed representation of a NaN.
16939         * tests/test-vasprintf-posix.c (test_function): Likewise.
16940         * tests/test-snprintf-posix.h (test_function): Likewise.
16941         * tests/test-sprintf-posix.h (test_function): Likewise.
16942         Reported by Eric Blake.
16943
16944 2007-05-23  Eric Blake  <ebb9@byu.net>
16945
16946         Fix fseeko/ftello on cygwin 1.5.24.
16947         * doc/functions/fseeko.texi (fseeko): Document the fix.
16948         * doc/functions/ftello.texi (ftello): Document the fix.
16949         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
16950         * doc/functions/stdout.text (stdout): New file.
16951         * doc/functions/stderr.text (stderr): New file.
16952         * doc/gnulib.texi (Function Substitutes): Use new files.
16953         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
16954         prior to 1.7.0.
16955         * tests/test-ftello.c (main): Likewise for ftello.
16956         * tests/test-fseeko.sh: New file.
16957         * tests/test-ftello.sh: New file.
16958         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
16959         with seekable stdin.
16960         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
16961         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
16962         (gl_REPLACE_FSEEKO): New macro.
16963         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
16964         * modules/fseeko (Files): Distribute fseeko.c.
16965         * modules/ftello (Files): Distribute ftello.c.
16966         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
16967         mode.
16968         * lib/ftello.c (rpl_ftello): New file.
16969         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
16970         fseeko, ftello.
16971         (gl_STDIN_LARGE_OFFSET): New macro.
16972         * modules/stdio (Makefile.am): Perform the replacement.
16973         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
16974
16975 2007-05-23  Bruno Haible  <bruno@clisp.org>
16976
16977         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
16978         GNULIB_POSIXCHECK is defined.
16979
16980 2007-05-21  Bruno Haible  <bruno@clisp.org>
16981
16982         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
16983         Check also the output for NaN arguments. When cross-compiling, guess
16984         no on IRIX.
16985         * lib/vasnprintf.c: Update comments.
16986         * tests/test-vasnprintf-posix.c (strisnan): New function.
16987         (test_function): Use it.
16988         * tests/test-vasprintf-posix.c (strisnan): New function.
16989         (test_function): Use it.
16990         * tests/test-snprintf-posix.h (strisnan): New function.
16991         (test_function): Use it.
16992         * tests/test-sprintf-posix.h (strisnan): New function.
16993         (test_function): Use it.
16994         Reported by Eric Blake.
16995
16996 2007-05-20  Bruno Haible  <bruno@clisp.org>
16997
16998         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
16999         numbers that fails on BeOS.
17000         * doc/functions/frexpl.texi: Update.
17001
17002 2007-05-20  Jim Meyering  <jim@meyering.net>
17003
17004         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
17005         forced upon us by glibc-2.6.
17006
17007 2007-05-20  Bruno Haible  <bruno@clisp.org>
17008
17009         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
17010         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
17011         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
17012         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
17013         NEED_PRINTF_INFINITE.
17014         (is_infinitel): New function.
17015         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
17016         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
17017         gl_PREREQ_VASNPRINTF_INFINITE.
17018         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
17019         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
17020         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
17021         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
17022         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
17023         gl_PREREQ_VASNPRINTF_INFINITE.
17024         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
17025         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17026         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17027         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17028         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17029         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17030         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17031         * doc/functions/fprintf.texi: Update.
17032         * doc/functions/printf.texi: Update.
17033         * doc/functions/snprintf.texi: Update.
17034         * doc/functions/sprintf.texi: Update.
17035         * doc/functions/vfprintf.texi: Update.
17036         * doc/functions/vprintf.texi: Update.
17037         * doc/functions/vsnprintf.texi: Update.
17038         * doc/functions/vsprintf.texi: Update.
17039
17040 2007-05-20  Bruno Haible  <bruno@clisp.org>
17041
17042         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
17043         was not found in libc.
17044         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
17045
17046 2007-05-20  Bruno Haible  <bruno@clisp.org>
17047
17048         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
17049         printed as "-nan" instead of "nan".
17050         * tests/test-vasprintf-posix.c (test_function): Likewise.
17051         * tests/test-snprintf-posix.h (test_function): Likewise.
17052         * tests/test-sprintf-posix.h (test_function): Likewise.
17053         Needed for HP-UX 11.
17054
17055 2007-05-20  Jim Meyering  <jim@meyering.net>
17056
17057         Fix buggy test for the fchownat-deref bug.
17058         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
17059         symlink required for the run-test.  Without it, this test would
17060         always declare that fchownat doesn't work, and client code would
17061         unnecessarily use the replacement function with fixed libc.
17062         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
17063         Reported by Greg Schafer.
17064
17065 2007-05-19  Bruno Haible  <bruno@clisp.org>
17066
17067         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
17068         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
17069         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
17070         Needed for IRIX 6.5 and Solaris 2.5.1.
17071
17072 2007-05-19  Bruno Haible  <bruno@clisp.org>
17073
17074         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
17075         (test_function): Skip tests involving -0.0 on platforms where
17076         -0.0 = 0.0.
17077         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
17078         (test_function): Skip tests involving -0.0 on platforms where
17079         -0.0 = 0.0.
17080         * tests/test-snprintf-posix.h (have_minus_zero): New function.
17081         (test_function): Skip tests involving -0.0 on platforms where
17082         -0.0 = 0.0.
17083         * tests/test-sprintf-posix.h (have_minus_zero): New function.
17084         (test_function): Skip tests involving -0.0 on platforms where
17085         -0.0 = 0.0.
17086         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
17087         tests.
17088         * tests/test-printf-posix.h (test_function): Likewise.
17089         * tests/test-printf-posix.output: Remove all -0.0 related results.
17090         Needed for IRIX 6.5.
17091
17092 2007-05-19  Bruno Haible  <bruno@clisp.org>
17093
17094         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
17095         printed as "nan0x7fffffff" instead of "nan".
17096         * tests/test-vasprintf-posix.c (test_function): Likewise.
17097         * tests/test-snprintf-posix.h (test_function): Likewise.
17098         * tests/test-sprintf-posix.h (test_function): Likewise.
17099         * tests/test-fprintf-posix.h (NaN): Remove macro.
17100         (test_function): Remove all NaN related tests.
17101         * tests/test-printf-posix.h (NaN): Remove macro.
17102         (test_function): Remove all NaN related tests.
17103         * tests/test-printf-posix.output: Remove all NaN related results.
17104         Needed for IRIX 6.5.
17105
17106 2007-05-19  Bruno Haible  <bruno@clisp.org>
17107
17108         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
17109         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
17110
17111 2007-05-19  Bruno Haible  <bruno@clisp.org>
17112
17113         * lib/float_.h: New file.
17114         * m4/float_h.m4: New file.
17115         * modules/float: New file.
17116         * modules/isnanl (Dependencies): Add float.
17117         * modules/isnanl-nolibm (Dependencies): Likewise.
17118         * modules/mathl (Dependencies): Likewise.
17119         * modules/printf-frexpl (Dependencies): Likewise.
17120         * modules/signbit (Dependencies): Likewise.
17121         * modules/vasnprintf (Dependencies): Likewise.
17122         * doc/headers/float.texi: Update.
17123
17124 2007-05-19  Jim Meyering  <jim@meyering.net>
17125
17126         * lib/utimens.c (gl_futimens): Rename from futimens,
17127         now that glibc-2.6 declares futimens.
17128         * lib/utimens.h: Likewise.
17129
17130 2007-05-19  Bruno Haible  <bruno@clisp.org>
17131
17132         Avoid test failures on mingw.
17133         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
17134         * tests/test-printf-posix.sh: Likewise.
17135         * tests/test-vfprintf-posix.sh: Likewise.
17136         * tests/test-vprintf-posix.sh: Likewise.
17137
17138 2007-05-19  Bruno Haible  <bruno@clisp.org>
17139
17140         Fix *printf result for NaN, Inf, -0.0 on mingw.
17141         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
17142         * lib/vasnprintf.c: Include math.h and isnan.h.
17143         (is_infinite_or_zero): New function.
17144         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
17145         values in the %f, %F, %e, %E, %g, %G directives.
17146         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
17147         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
17148         gl_PRINTF_INFINITE and test its result. Invoke
17149         gl_PREREQ_VASNPRINTF_INFINITE.
17150         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
17151         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17152         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17153         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17154         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17155         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17156         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17157         * doc/functions/fprintf.texi: Update.
17158         * doc/functions/printf.texi: Update.
17159         * doc/functions/snprintf.texi: Update.
17160         * doc/functions/sprintf.texi: Update.
17161         * doc/functions/vfprintf.texi: Update.
17162         * doc/functions/vprintf.texi: Update.
17163         * doc/functions/vsnprintf.texi: Update.
17164         * doc/functions/vsprintf.texi: Update.
17165
17166 2007-05-19  Bruno Haible  <bruno@clisp.org>
17167
17168         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
17169         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
17170         Instead of multiplying with 10^k, set extra_zeroes to k.
17171         (scale10_round_long_double): Remove function.
17172
17173 2007-05-18  Bruno Haible  <bruno@clisp.org>
17174
17175         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
17176         introduced on 2007-05-06.
17177
17178 2007-05-18  Bruno Haible  <bruno@clisp.org>
17179
17180         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
17181         %g directives.
17182         * tests/test-vasprintf-posix.c (test_function): Likewise.
17183         * tests/test-snprintf-posix.h (test_function): Likewise.
17184         * tests/test-sprintf-posix.h (test_function): Likewise.
17185
17186 2007-05-18  Bruno Haible  <bruno@clisp.org>
17187
17188         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
17189         (strmatch): New function.
17190         (test_function): Test the %f directive on numbers of various exponents.
17191         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
17192         (strmatch): New function.
17193         (test_function): Test the %f directive on numbers of various exponents.
17194         * tests/test-snprintf-posix.h (strmatch): New function.
17195         (test_function): Test the %f directive on numbers of various exponents.
17196         * tests/test-sprintf-posix.h (strmatch): New function.
17197         (test_function): Test the %f directive on numbers of various exponents.
17198         * tests/test-snprintf-posix.c (SIZEOF): New macro.
17199         * tests/test-sprintf-posix.c (SIZEOF): New macro.
17200         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
17201         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
17202
17203 2007-05-18  Bruno Haible  <bruno@clisp.org>
17204
17205         Add support for 'long double' number output.
17206         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
17207         * lib/vasnprintf.c: Include math.h and float+.h.
17208         (mp_limb_t): New type.
17209         (GMP_LIMB_BITS): New macro.
17210         (mp_twolimb_t): New type.
17211         (GMP_TWOLIMB_BITS): New macro.
17212         (mpn_t): New type.
17213         (multiply, divide, convert_to_decimal, decode_long_double,
17214         scale10_round_long_double, scale10_round_decimal_long_double,
17215         floorlog10l): New functions.
17216         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
17217         for the %f, %F, %e, %E, %g, %G directives.
17218         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
17219         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
17220         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
17221         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
17222         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
17223         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17224         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17225         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17226         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17227         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17228         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17229         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
17230         * modules/snprintf-posix (Depends-on): Likewise.
17231         * modules/sprintf-posix (Depends-on): Likewise.
17232         * modules/vasnprintf-posix (Depends-on): Likewise.
17233         * modules/vasprintf-posix (Depends-on): Likewise.
17234         * modules/vfprintf-posix (Depends-on): Likewise.
17235         * modules/vsnprintf-posix (Depends-on): Likewise.
17236         * modules/vsprintf-posix (Depends-on): Likewise.
17237         * modules/vasnprintf (Files): Add lib/float+.h.
17238         * doc/functions/fprintf.texi: Update.
17239         * doc/functions/printf.texi: Update.
17240         * doc/functions/snprintf.texi: Update.
17241         * doc/functions/sprintf.texi: Update.
17242         * doc/functions/vfprintf.texi: Update.
17243         * doc/functions/vprintf.texi: Update.
17244         * doc/functions/vsnprintf.texi: Update.
17245         * doc/functions/vsprintf.texi: Update.
17246
17247 2007-05-18  Bruno Haible  <bruno@clisp.org>
17248
17249         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
17250
17251 2007-05-18  Bruno Haible  <bruno@clisp.org>
17252
17253         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
17254         for printing 64-bit integers. Needed for mingw.
17255
17256 2007-05-18  Bruno Haible  <bruno@clisp.org>
17257
17258         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
17259         gl_FUNC_FREXPL_WORKS.
17260         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
17261
17262 2007-05-18  Bruno Haible  <bruno@clisp.org>
17263
17264         * modules/frexpl-nolibm-tests: New file.
17265
17266         * modules/frexpl-nolibm: New file.
17267         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
17268
17269 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17270
17271         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
17272         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
17273         GCC 4.2, which otherwise issues a lot of warnings.
17274         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
17275         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
17276         Likewise.
17277         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
17278         * modules/iconv_open (iconv.h): Likewise.
17279         * modules/locale (locale.h): Likewise.
17280         * modules/netinet_in (netinet/in.h): Likewise.
17281         * modules/sys_select (sys_select.h): Likewise.
17282         * modules/sys_socket (sys/socket.h): Likewise.
17283         * modules/sys_stat (sys/stat.h): Likewise.
17284         * modules/sysexits (sysexits.h): Likewise.
17285         * modules/unistd (unistd.h): Likewise.
17286
17287 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17288
17289         * modules/closein-tests (Makefile.am): Distribute
17290         `test-closein.sh'.
17291
17292 2007-05-17  Bruno Haible  <bruno@clisp.org>
17293
17294         * tests/test-printf-posix.output: Renamed from
17295         tests/test-fprintf-posix.out.
17296         * modules/fprintf-posix-tests: Update.
17297         * modules/printf-posix-tests: Update.
17298         * modules/vfprintf-posix-tests: Update.
17299         * modules/vprintf-posix-tests: Update.
17300         * tests/test-fprintf-posix.sh: Update.
17301         * tests/test-printf-posix.sh: Update.
17302         * tests/test-vfprintf-posix.sh: Update.
17303         * tests/test-vprintf-posix.sh: Update.
17304         Reported by Ralf Wildenhues.
17305
17306 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17307
17308         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
17309         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
17310         GCC 4.2, which otherwise issues a lot of warnings.
17311         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
17312         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
17313         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
17314         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
17315         it should no longer be needed.
17316         * lib/string_.h: Likewise.
17317         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
17318         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
17319         * modules/inttypes (inttypes.h): Likewise.
17320         * modules/math (math.h): Likewise.
17321         * modules/search (search.h): Likewise.
17322         * modules/signal (signal.h): Likewise.
17323         * modules/stdint (stdint.h): Likewise.
17324         * modules/stdio (stdio.h): Likewise.
17325         * modules/stdlib (stdlib.h): Likewise.
17326         * modules/string (string.h): Likewise.
17327         * modules/sys_time (sys/time.h): Likewise.
17328         * modules/time (time.h): Likewise.
17329         * modules/wchar (wchar.h): Likewise.
17330         * modules/wctype (wtype.h): Likewise.
17331
17332 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
17333
17334         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
17335
17336 2007-05-13  Bruno Haible  <bruno@clisp.org>
17337
17338         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
17339         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
17340         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
17341         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
17342         (gl_PREREQ_STRTOK_R): Don't require it here.
17343
17344 2007-05-13  Bruno Haible  <bruno@clisp.org>
17345
17346         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
17347         when used in C++ mode.
17348
17349 2007-05-12  Bruno Haible  <bruno@clisp.org>
17350
17351         * lib/linebuffer.h: Tweak doc.
17352         * lib/linebuffer.c: Likewise.
17353
17354 2007-05-12  James Youngman  <jay@gnu.org>
17355
17356         * lib/linebuffer.c (readlinebuffer_delim): New function,
17357         like readlinebuffer, but use a caller-specified delimiter.
17358         (readlinebuffer): Just call readlinebuffer_delim with '\n'
17359         as the delimiter.
17360         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
17361
17362 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
17363
17364         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
17365         * modules/openat (Files): Remove openat-die.c.
17366         (Depends-on): Add openat-die.
17367         * modules/openat-die: New module.
17368
17369 2007-05-06  Bruno Haible  <bruno@clisp.org>
17370
17371         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
17372         Update with info about Cygwin.
17373         * doc/functions/fprintf.texi: Update.
17374         * doc/functions/printf.texi: Update.
17375         * doc/functions/snprintf.texi: Update.
17376         * doc/functions/sprintf.texi: Update.
17377         * doc/functions/vfprintf.texi: Update.
17378         * doc/functions/vprintf.texi: Update.
17379         * doc/functions/vsnprintf.texi: Update.
17380         * doc/functions/vsprintf.texi: Update.
17381         Reported by Eric Blake.
17382
17383 2007-05-06  Bruno Haible  <bruno@clisp.org>
17384
17385         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
17386         padding ourselves for the floating-point directives.
17387         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
17388         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
17389         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
17390         gl_PRINTF_FLAG_ZERO and test its result. Invoke
17391         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
17392         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17393         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
17394         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17395         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17396         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17397         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17398         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17399         * tests/test-snprintf-posix.h (test_function): Also check the width
17400         and some flags in the %f directive.
17401         * tests/test-sprintf-posix.h (test_function): Likewise.
17402         * tests/test-vasnprintf-posix.c (test_function): Likewise.
17403         * tests/test-vasprintf-posix.c (test_function): Likewise.
17404         * doc/functions/fprintf.texi: Update.
17405         * doc/functions/printf.texi: Update.
17406         * doc/functions/snprintf.texi: Update.
17407         * doc/functions/sprintf.texi: Update.
17408         * doc/functions/vfprintf.texi: Update.
17409         * doc/functions/vprintf.texi: Update.
17410         * doc/functions/vsnprintf.texi: Update.
17411         * doc/functions/vsprintf.texi: Update.
17412
17413 2007-05-06  Bruno Haible  <bruno@clisp.org>
17414
17415         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
17416         pass the ' flag character to sprintf or snprintf.
17417         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
17418         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
17419         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
17420         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
17421         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
17422         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
17423         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
17424         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
17425         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
17426         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
17427         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17428         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
17429         * tests/test-snprintf-posix.h (test_function): Also check the grouping
17430         flag.
17431         * tests/test-sprintf-posix.h (test_function): Likewise.
17432         * tests/test-vasnprintf-posix.c (test_function): Likewise.
17433         * tests/test-vasprintf-posix.c (test_function): Likewise.
17434         * doc/functions/fprintf.texi: Update.
17435         * doc/functions/printf.texi: Update.
17436         * doc/functions/snprintf.texi: Update.
17437         * doc/functions/sprintf.texi: Update.
17438         * doc/functions/vfprintf.texi: Update.
17439         * doc/functions/vprintf.texi: Update.
17440         * doc/functions/vsnprintf.texi: Update.
17441         * doc/functions/vsprintf.texi: Update.
17442
17443 2007-05-01  Bruno Haible  <bruno@clisp.org>
17444
17445         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
17446
17447 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
17448
17449         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
17450         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
17451
17452 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
17453
17454         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
17455         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
17456         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
17457
17458 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
17459
17460         * lib/argp-help.c (struct hol_entry): New member `ord'.
17461         (HOL_ENTRY_PTRCMP): Use ord for comparison
17462         (hol_sort): Initialize ord.
17463
17464 2007-05-01  Bruno Haible  <bruno@clisp.org>
17465
17466         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
17467         Reported by Eric Blake.
17468         * doc/gnulib.texi (Function Substitutes): Update.
17469
17470 2007-05-01  Bruno Haible  <bruno@clisp.org>
17471
17472         * doc/functions.texi: Remove file, now redundant through
17473         doc/functions/*.texi.
17474
17475 2007-05-01  Bruno Haible  <bruno@clisp.org>
17476
17477         * modules/argp (Depends-on): Add sleep.
17478
17479 2007-05-01  Bruno Haible  <bruno@clisp.org>
17480
17481         * modules/sleep-tests: New file.
17482         * tests/test-sleep.c: New file.
17483
17484         * modules/sleep: New file.
17485         * lib/sleep.c: New file.
17486         * m4/sleep.m4: New file.
17487         * lib/unistd_.h (sleep): New declaration.
17488         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
17489         HAVE_SLEEP.
17490         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
17491         * doc/functions/sleep.texi: Document the sleep module.
17492
17493 2007-05-01  Bruno Haible  <bruno@clisp.org>
17494
17495         * lib/sigprocmask.h: Remove file.
17496         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
17497         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
17498         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
17499         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
17500         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
17501         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
17502         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
17503         HAVE_SIGSET_T as a shell variable.
17504         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
17505         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
17506         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
17507         (Depends-on): Add signal. Remove verify.
17508         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
17509         (Include): Mention <signal.h> instead of sigprocmask.h.
17510         * NEWS: Mention the change.
17511         * lib/fatal-signal.c: Don't include sigprocmask.h.
17512
17513 2007-05-01  Bruno Haible  <bruno@clisp.org>
17514
17515         * modules/signal: New file.
17516         * lib/signal_.h: New file.
17517         * m4/signal_h.m4: New file.
17518
17519 2007-05-01  Bruno Haible  <bruno@clisp.org>
17520
17521         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
17522         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
17523         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
17524         HAVE_WCTYPE_CTMP_BUG into wctype.h.
17525
17526 2007-05-01  Bruno Haible  <bruno@clisp.org>
17527
17528         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
17529         configure time.
17530         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
17531         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
17532         * modules/sys_stat (Makefile.am): Substitute their values into
17533         sys/stat.h.
17534
17535 2007-05-01  Bruno Haible  <bruno@clisp.org>
17536
17537         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
17538         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
17539         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
17540
17541 2007-05-01  Bruno Haible  <bruno@clisp.org>
17542
17543         * doc/header/assert.texi: Undo last change: don't mention the gnulib
17544         'assert' module here.
17545
17546 2007-05-01  Bruno Haible  <bruno@clisp.org>
17547
17548         * doc/functions/*.texi: New files.
17549         * doc/functions/google-ranking.txt: New file.
17550         * doc/gnulib.texi (Function Substitutes): New chapter.
17551         (ctime, inet_ntoa): Remove sections.
17552         * doc/ctime.texi: Remove file.
17553         * doc/inet_ntoa.texi: Remove file.
17554         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
17555         dependencies.
17556         (%.info): New rule, specifying a --reference-limit.
17557
17558 2007-05-01  Bruno Haible  <bruno@clisp.org>
17559
17560         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
17561
17562 2007-05-01  Bruno Haible  <bruno@clisp.org>
17563
17564         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
17565         the portability of 'mkdir' to mingw systems.
17566
17567 2007-05-01  Bruno Haible  <bruno@clisp.org>
17568
17569         * doc/headers/google-ranking.txt: New file.
17570
17571 2007-04-30  Eric Blake  <ebb9@byu.net>
17572
17573         Prefer fseeko to fseek.
17574         * modules/getpass (Depends-on): Add fseeko.
17575         * lib/getpass.c (getpass): Use fseeko, not fseek.
17576
17577 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
17578
17579         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
17580         assumes the sorting is stable, while most qsort implementations
17581         are not.  Use argument addresses to ensure they never compare as
17582         equal.
17583
17584         * tests/test-argp-2.sh (usage-indent test): Fix output
17585         (func_compare): Restore diff options
17586         * tests/test-argp.c: Restore #include "progname.h"
17587
17588 2007-04-29  Bruno Haible  <bruno@clisp.org>
17589
17590         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
17591         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
17592         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
17593         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
17594         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
17595         (configure.ac): Define CHECK_SNPRINTF_POSIX.
17596         (TESTS, check_PROGRAMS): Add test-snprintf.
17597         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
17598         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
17599         (TESTS, check_PROGRAMS): Add test-vsnprintf.
17600         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
17601         assertions that fail on HP-UX, OSF/1, or IRIX.
17602         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
17603
17604 2007-04-29  Bruno Haible  <bruno@clisp.org>
17605
17606         * MODULES.html.sh (posix_functions): Remove 'contents'.
17607
17608 2007-04-29  Karl Berry  <karl@gnu.org>
17609
17610         * config/srclist.txt (gendocs_template_min): new entry.
17611
17612 2007-04-29  Bruno Haible  <bruno@clisp.org>
17613
17614         Work around fpurge bug on BSD systems.
17615         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
17616         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
17617         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
17618         fpurge to rpl_fpurge if the system already has this function.
17619         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
17620         the case where the system already has this function. Correct invariants
17621         on BSD systems.
17622         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
17623         BSD systems.
17624
17625 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
17626
17627         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
17628         proposed by Sven Verdoolaege.
17629
17630         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
17631         options.
17632         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
17633         (usage and help tests): Update
17634
17635 2007-04-29  Bruno Haible  <bruno@clisp.org>
17636
17637         * tests/test-fflush.c (main): Use a file of size 17, not 10.
17638         Print more information in case of failure. Disable a test on BeOS.
17639
17640 2007-04-29  Bruno Haible  <bruno@clisp.org>
17641
17642         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
17643         This helps debugging on systems on which no gdb is available.
17644
17645 2007-04-29  Bruno Haible  <bruno@clisp.org>
17646
17647         * lib/freading.h: Improve comments.
17648         * lib/fwriting.h: Likewise.
17649         * tests/test-freading.c (main): Don't check freading immediately after
17650         repositioning. Needed for glibc.
17651
17652 2007-04-29  Bruno Haible  <bruno@clisp.org>
17653
17654         * lib/freading.c (freading): Trivial simplification.
17655
17656 2007-04-28  Bruno Haible  <bruno@clisp.org>
17657
17658         * tests/test-fwriting.c (main): Also test the interaction between
17659         fflush and fwriting.
17660         * modules/fwriting-tests (Depends-on): Add fflush.
17661
17662         * tests/test-freading.c (main): Also test the interaction between
17663         fflush and freading.
17664         * modules/freading-tests (Depends-on): Add fflush.
17665
17666 2007-04-28  Bruno Haible  <bruno@clisp.org>
17667
17668         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
17669         fseeko and ftello.
17670         Suggested by Eric Blake.
17671
17672 2007-04-28  Jim Meyering  <jim@meyering.net>
17673
17674         Avoid false-negative in gl_STDINT_H's C99 conformance test.
17675         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
17676         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
17677
17678 2007-04-27  Eric Blake  <ebb9@byu.net>
17679
17680         * doc/headers/assert.texi (assert.h): Document assert module use.
17681
17682 2007-04-27  Bruno Haible  <bruno@clisp.org>
17683
17684         * doc/headers/*.texi: New files.
17685         * doc/gnulib.texi (Header File Substitutes): New chapter.
17686         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
17687         dependencies.
17688         (standards.info ,standards.html, standards.dvi): Update dependencies.
17689         (mostlyclean, clean): New targets.
17690
17691 2007-04-27  Bruno Haible  <bruno@clisp.org>
17692
17693         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
17694         * modules/sysexits (Files, Makefile.am): Update.
17695
17696         * lib/sys_socket_.h: Renamed from lib/socket_.h.
17697         * modules/sys_socket (Files, Makefile.am): Update.
17698
17699         * lib/sys_stat_.h: Renamed from lib/stat_.h.
17700         * modules/sys_stat (Files, Makefile.am): Update.
17701
17702 2007-04-27  Eric Blake  <ebb9@byu.net>
17703
17704         * lib/freading.h: Improve comments.
17705         * lib/fwriting.h: Likewise.
17706         * lib/fflush.c: Likewise.
17707
17708         Fix closein for mingw.
17709         * modules/closein-tests: Add tests for closein.
17710         * tests/test-closein.c: New file.
17711         * tests/test-closein.sh: Likewise.
17712         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
17713         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
17714
17715 2007-04-27  Bruno Haible  <bruno@clisp.org>
17716
17717         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
17718         version is < 6.
17719         * lib/math_.h [__DECC]: Likewise.
17720         * lib/stdio_.h [__DECC]: Likewise.
17721         * lib/stdlib_.h [__DECC]: Likewise.
17722         * lib/string_.h [__DECC]: Likewise.
17723         * lib/time_.h [__DECC]: Likewise.
17724         * lib/wchar_.h [__DECC]: Likewise.
17725         * lib/wctype_.h [__DECC]: Likewise.
17726
17727 2007-04-27  Bruno Haible  <bruno@clisp.org>
17728
17729         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
17730
17731 2007-04-27  Bruno Haible  <bruno@clisp.org>
17732
17733         * lib/fflush.c: Add comments.
17734         * modules/fpurge-tests (Depends-on): Add fflush.
17735         * modules/freadable-tests (Depends-on): Likewise.
17736         * modules/fwritable-tests (Depends-on): Likewise.
17737
17738 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
17739
17740         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
17741         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
17742         Report by Bruno Haible <bruno@clisp.org>.
17743
17744 2007-04-26  Eric Blake  <ebb9@byu.net>
17745
17746         Fix fflush on mingw.
17747         * modules/fflush (Depends-on): Add freading.
17748         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
17749         but unread data.
17750
17751 2007-04-26  Eric Blake  <ebb9@byu.net>
17752         and Bruno Haible  <bruno@clisp.org>
17753
17754         Implement freading and fwriting.
17755         * lib/freading.c: New file.
17756         * lib/freading.h: Likewise.
17757         * m4/freading.m4: Likewise.
17758         * modules/freading: Likewise.
17759         * modules/freading-tests: Likewise.
17760         * tests/test-freading.c: Likewise.
17761         * lib/fwriting.c: New file.
17762         * lib/fwriting.h: Likewise.
17763         * m4/fwriting.m4: Likewise.
17764         * modules/fwriting: Likewise.
17765         * modules/fwriting-tests: Likewise.
17766         * tests/test-fwriting.c: Likewise.
17767         * MODULES.html.sh (File stream based Input/Output): Mention them.
17768
17769 2007-04-26  Bruno Haible  <bruno@clisp.org>
17770
17771         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
17772         'long' when we assume it.
17773         Suggested by Eric Blake.
17774
17775 2007-04-26  Bruno Haible  <bruno@clisp.org>
17776
17777         Ensure fseeko, ftello are declared on glibc systems.
17778         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
17779         * modules/fseeko (configure.ac-early): Likewise.
17780         * modules/ftello (configure.ac-early): Likewise.
17781         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
17782         AC_FUNC_FSEEKO for this.
17783         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
17784         (gl_CHECK_FSEEKO): Remove macro.
17785
17786 2007-04-26  Bruno Haible  <bruno@clisp.org>
17787
17788         * tests/test-fflush.c (main): Also check the ftell result after
17789         fflush and fseek/fseeko.
17790         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
17791         file descriptor position cache in the stream.
17792         * lib/fseeko.c (rpl_fseeko): Likewise.
17793
17794 2007-04-26  Bruno Haible  <bruno@clisp.org>
17795
17796         * modules/fflush-tests (Depends-on): Add fseeko.
17797
17798 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
17799             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17800
17801         * lib/argz_.h: ensure error_t definition is obtained in same
17802         mechanism system argz.h would have.
17803         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
17804         argz facilities are known bad.  Err on the side of caution if
17805         cross-compiling.
17806
17807 2007-04-25  Eric Blake  <ebb9@byu.net>
17808
17809         * lib/fpurge.c (includes): Use stdlib.h for free.
17810         * tests/test-fflush.c (main): Also test fflush-fseeko.
17811
17812 2007-04-25  Bruno Haible  <bruno@clisp.org>
17813
17814         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
17815         * lib/fseeko.c: New file.
17816         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
17817         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
17818         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
17819         gl_FUNC_FSEEKO.
17820         (gl_FUNC_FSEEKO): Invoke it.
17821         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
17822         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
17823         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
17824
17825 2007-04-25  Bruno Haible  <bruno@clisp.org>
17826
17827         * modules/fflush (Depends-on): Add ftello.
17828
17829 2007-04-25  Bruno Haible  <bruno@clisp.org>
17830
17831         * modules/ftello-tests: New file.
17832         * tests/test-ftello.c: New file.
17833
17834         * modules/ftello: New file.
17835         * m4/ftello.m4: New file.
17836         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
17837         HAVE_FTELLO.
17838         * lib/stdio_.h (ftello): New declaration.
17839         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
17840         HAVE_FTELLO.
17841
17842 2007-04-25  Bruno Haible  <bruno@clisp.org>
17843
17844         * modules/fseeko-tests: New file.
17845         * tests/test-fseeko.c: New file.
17846
17847         * modules/fseeko: New file.
17848         * m4/fseeko.m4: New file.
17849         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
17850         HAVE_FSEEKO.
17851         * lib/stdio_.h (fseeko): New declaration.
17852         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
17853         HAVE_FSEEKO.
17854
17855 2007-04-25  Bruno Haible  <bruno@clisp.org>
17856
17857         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
17858
17859 2007-04-25  Bruno Haible  <bruno@clisp.org>
17860
17861         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
17862         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
17863         * tests/test-unistd.c: Likewise.
17864         * tests/test-fcntl.c: Likewise.
17865
17866 2007-04-23  Eric Blake  <ebb9@byu.net>
17867
17868         * lib/fflush.c: Fix missing include.
17869         Reported by Bruno Haible.
17870
17871 2007-04-23  Bruno Haible  <bruno@clisp.org>
17872
17873         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
17874         Reported by Eric Blake.
17875
17876 2007-04-23  Bruno Haible  <bruno@clisp.org>
17877
17878         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
17879
17880 2007-04-23  Bruno Haible  <bruno@clisp.org>
17881
17882         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
17883
17884 2007-04-23  Bruno Haible  <bruno@clisp.org>
17885
17886         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
17887         Needed on HP-UX 11.
17888
17889 2007-04-16  Eric Blake  <ebb9@byu.net>
17890
17891         Make fflush rely on fpurge.
17892         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
17893         open coding all variants.
17894         * modules/fflush (Depends-on): Add fpurge and unistd.
17895         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
17896         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
17897
17898         Fix --with-tests compilation on cygwin.
17899         * modules/argmatch-tests (Makefile.am): List gnulib library first
17900         in LDADD.
17901         * modules/argp-tests (Makefile.am): Likewise.
17902         * modules/array-list-tests (Makefile.am): Likewise.
17903         * modules/array-oset-tests (Makefile.am): Likewise.
17904         * modules/avltree-list-tests (Makefile.am): Likewise.
17905         * modules/avltree-oset-tests (Makefile.am): Likewise.
17906         * modules/avltreehash-list-tests (Makefile.am): Likewise.
17907         * modules/carray-list-tests (Makefile.am): Likewise.
17908         * modules/dirname-tests (Makefile.am): Likewise.
17909         * modules/frexp-tests (Makefile.am): Likewise.
17910         * modules/isnanl-tests (Makefile.am): Likewise.
17911         * modules/linked-list-tests (Makefile.am): Likewise.
17912         * modules/linkedhash-list-tests (Makefile.am): Likewise.
17913         * modules/lock-tests (Makefile.am): Likewise.
17914         * modules/rbtree-list-tests (Makefile.am): Likewise.
17915         * modules/rbtree-oset-tests (Makefile.am): Likewise.
17916         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
17917         * modules/tls-tests (Makefile.am): Likewise.
17918         * modules/tsearch-tests (Makefile.am): Likewise.
17919         * modules/xvasprintf-tests (Makefile.am): Likewise.
17920
17921         Fix fpurge for cygwin.
17922         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
17923         value.
17924         * modules/fpurge-tests (Depends-on): Clean up trash.
17925
17926 2007-04-16  Simon Josefsson  <simon@josefsson.org>
17927
17928         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
17929
17930         * m4/autobuild.m4: Re-indent.
17931
17932 2007-04-13  Bruno Haible  <bruno@clisp.org>
17933
17934         * modules/fpurge-tests: New file.
17935         * tests/test-fpurge.c: New file.
17936
17937         * modules/fpurge: New file.
17938         * lib/fpurge.h: New file.
17939         * lib/fpurge.c: New file.
17940         * m4/fpurge.m4: New file.
17941
17942 2007-04-13  Bruno Haible  <bruno@clisp.org>
17943
17944         * modules/fbufmode-tests: New file.
17945         * tests/test-fbufmode.c: New file.
17946
17947         * modules/fbufmode: New file.
17948         * lib/fbufmode.h: New file.
17949         * lib/fbufmode.c: New file.
17950         * m4/fbufmode.m4: New file.
17951
17952 2007-04-13  Bruno Haible  <bruno@clisp.org>
17953
17954         * modules/fwritable-tests: New file.
17955         * tests/test-fwritable.c: New file.
17956
17957         * modules/fwritable: New file.
17958         * lib/fwritable.h: New file.
17959         * lib/fwritable.c: New file.
17960         * m4/fwritable.m4: New file.
17961
17962 2007-04-13  Bruno Haible  <bruno@clisp.org>
17963
17964         * modules/freadable-tests: New file.
17965         * tests/test-freadable.c: New file.
17966
17967         * modules/freadable: New file.
17968         * lib/freadable.h: New file.
17969         * lib/freadable.c: New file.
17970         * m4/freadable.m4: New file.
17971
17972 2007-04-13  Bruno Haible  <bruno@clisp.org>
17973
17974         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
17975         MOSTLYCLEANFILES.
17976
17977 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
17978
17979         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
17980         gzip bootstrap.conf to avoid dragging in i18n machinery.
17981         (gnulib_tool_option): Use it.
17982
17983 2007-04-13  Bruno Haible  <bruno@clisp.org>
17984
17985         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
17986         %F directives.
17987         * tests/test-vasprintf-posix.c (test_function): Likewise.
17988         * tests/test-snprintf-posix.h (test_function): Likewise.
17989         * tests/test-sprintf-posix.h (test_function): Likewise.
17990         * tests/test-fprintf-posix.h (test_function): Likewise.
17991         * tests/test-printf-posix.h (test_function): Likewise.
17992         * tests/test-fprintf-posix.out: Likewise.
17993
17994 2007-04-13  Bruno Haible  <bruno@clisp.org>
17995
17996         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
17997         * modules/tls-tests (configure.ac): Likewise.
17998         Reported by Arto C. Nirkko <anirkko@insel.ch>.
17999
18000 2007-04-13  Bruno Haible  <bruno@clisp.org>
18001
18002         * lib/tls.c (glthread_tls_get): Fix return type.
18003         Patch by Arto C. Nirkko <anirkko@insel.ch>.
18004
18005 2007-04-12  Eric Blake  <ebb9@byu.net>
18006
18007         * modules/gettime (Depends-on): Remove gettime.
18008         Reported by Dmitry V. Levin.
18009
18010 2007-04-12  Bruno Haible  <bruno@clisp.org>
18011
18012         * modules/fflush (Include): Mention <stdio.h>.
18013         * modules/strtoimax (Include): Mention <inttypes.h>.
18014         * modules/strtoumax (Include): Likewise.
18015
18016 2007-04-12  Eric Blake  <ebb9@byu.net>
18017
18018         * .cvsignore: New file.
18019         * .gitignore: Likewise.
18020
18021 2007-04-12  Bruno Haible  <bruno@clisp.org>
18022
18023         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
18024         not before, since $(LDADD) often contains libgnu.a.
18025         * modules/striconv-tests (test_striconv_LDADD): Likewise.
18026         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
18027         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
18028         Needed on Cygwin.
18029
18030 2007-04-12  Eric Blake  <ebb9@byu.net>
18031
18032         Work around glibc's failure to flush stdin on fclose.
18033         * lib/closein.c (close_stdin): Flush stdin before closing.
18034
18035         Work around glibc's failure to reset seekable stdin on exit.
18036         * modules/closein: New module.
18037         * lib/closein.c: New file.
18038         * lib/closein.h: Likewise.
18039         * m4/closein.m4: Likewise.
18040         * MODULES.html.sh (File stream based Input/Output): Document it.
18041
18042 2007-04-12  Simon Josefsson  <simon@josefsson.org>
18043
18044         * gnulib-tool: Rename generated 'autobuild' script to
18045         'do-autobuild' in --create-megatestdir output.
18046
18047         * doc/gnulib.texi (Build robot for gnulib): Fix.
18048
18049 2007-04-12  Simon Josefsson  <simon@josefsson.org>
18050
18051         * modules/sysexits (Depends-on): Add absolute-header.
18052
18053 2007-04-12  Eric Blake  <ebb9@byu.net>
18054
18055         No need to preserve errno on success.
18056         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
18057         Reported by Bruno Haible.
18058
18059 2007-04-12  Simon Josefsson  <simon@josefsson.org>
18060
18061         * MODULES.html.sh (Support for maintaining and releasing
18062         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
18063
18064 2007-04-12  Simon Josefsson  <simon@josefsson.org>
18065
18066         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
18067
18068 2007-04-12  Simon Josefsson  <simon@josefsson.org>
18069
18070         * modules/autobuild: New module.
18071
18072         * m4/autobuild.m4: New file.
18073
18074 2007-04-11  Bruno Haible  <bruno@clisp.org>
18075
18076         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
18077         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
18078         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
18079         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
18080         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
18081         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18082         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18083         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18084         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18085         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18086         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
18087         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18088         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18089         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
18090         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18091         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18092         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
18093         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18094         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18095         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
18096         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18097         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18098         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
18099         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18100         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18101         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
18102         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
18103         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
18104         Reported by Eric Blake.
18105
18106 2007-04-11  Bruno Haible  <bruno@clisp.org>
18107
18108         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
18109
18110 2007-04-10  Bruno Haible  <bruno@clisp.org>
18111
18112         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
18113         for NaN and Infinity. Needed on FreeBSD 6.1.
18114         * tests/test-vasnprintf-posix.c (test_function): Undo last change
18115         regarding results for "%010a" of Infinity and NaN.
18116         * tests/test-vasprintf-posix.c (test_function): Likewise.
18117         * tests/test-snprintf-posix.h (test_function): Likewise.
18118         * tests/test-sprintf-posix.h (test_function): Likewise.
18119         * tests/test-fprintf-posix.h (test_function): Likewise.
18120         * tests/test-printf-posix.h (test_function): Likewise.
18121         * tests/test-fprintf-posix.out: Likewise.
18122
18123 2007-04-10  Bruno Haible  <bruno@clisp.org>
18124
18125         * modules/locale-tests: New file.
18126         * tests/test-locale.c: New file.
18127
18128         * modules/locale: New file.
18129         * lib/locale_.h: New file.
18130         * m4/locale_h.m4: New file.
18131
18132 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
18133             Bruno Haible  <bruno@clisp.org>
18134
18135         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
18136         be determined, test for availability of the copysignf, copysign,
18137         copysignl functions.
18138         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
18139         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
18140         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
18141
18142 2007-04-09  Eric Blake  <ebb9@byu.net>
18143
18144         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
18145         * modules/stdio (Makefile.am): Support fflush.
18146         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
18147         * modules/fflush: New file.
18148         * lib/fflush.c: Likewise.
18149         * m4/fflush.m4: Likewise.
18150         * modules/fflush-tests: New test.
18151         * tests/test-fflush.c: Likewise.
18152         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
18153
18154 2007-04-06  Bruno Haible  <bruno@clisp.org>
18155
18156         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
18157         (VASNPRINTF): Use signbit for faster determination whether to print a
18158         minus sign.
18159         * modules/vasnprintf (Files): Remove lib/float+.h.
18160         * modules/fprintf-posix (Depends-on): Add signbit.
18161         * modules/snprintf-posix (Depends-on): Likewise.
18162         * modules/sprintf-posix (Depends-on): Likewise.
18163         * modules/vasnprintf-posix (Depends-on): Likewise.
18164         * modules/vasprintf-posix (Depends-on): Likewise.
18165         * modules/vfprintf-posix (Depends-on): Likewise.
18166         * modules/vsnprintf-posix (Depends-on): Likewise.
18167         * modules/vsprintf-posix (Depends-on): Likewise.
18168
18169 2007-04-06  Bruno Haible  <bruno@clisp.org>
18170
18171         * tests/test-frexp.c (main): Test also the sign bit of zero results.
18172         * tests/test-frexpl.c (main): Likewise.
18173         * tests/test-ldexpl.c (main): Likewise.
18174         * modules/frexp-tests (Depends-on): Add signbit.
18175         * modules/frexpl-tests (Depdends-on): Likewise.
18176         * modules/ldexpl-tests (Depdends-on): Likewise.
18177
18178 2007-04-06  Bruno Haible  <bruno@clisp.org>
18179
18180         * modules/signbit-tests: New file.
18181         * tests/test-signbit.c: New file.
18182
18183         * modules/signbit: New file.
18184         * lib/signbitf.c: New file.
18185         * lib/signbitd.c: New file.
18186         * lib/signbitl.c: New file.
18187         * m4/signbit.m4: New file.
18188         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
18189         (signbit): New macro.
18190         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
18191         REPLACE_SIGNBIT.
18192         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
18193         REPLACE_FREXPL into math.h.
18194
18195 2007-04-06  Bruno Haible  <bruno@clisp.org>
18196
18197         * modules/isnanf-nolibm-tests: New file.
18198         * tests/test-isnanf.c: New file.
18199
18200         * modules/isnanf-nolibm: New file.
18201         * lib/isnanf.h: New file.
18202         * lib/isnanf.c: New file.
18203         * lib/isnan.c: Consider the USE_FLOAT macro.
18204         * m4/isnanf.m4: New file.
18205
18206 2007-04-06  Bruno Haible  <bruno@clisp.org>
18207
18208         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
18209         (Link): New section.
18210
18211         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
18212
18213 2007-04-06  Bruno Haible  <bruno@clisp.org>
18214
18215         Assume the 'long double' type.
18216         * m4/longdouble.m4: Remove file.
18217         * config/srclist.txt: Don't mention longdouble.m4.
18218         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
18219         * lib/float+.h: Likewise.
18220         * lib/frexp.c: Likewise.
18221         * lib/printf-args.h: Likewise.
18222         * lib/printf-args.c: Likewise.
18223         * lib/printf-frexp.c: Likewise.
18224         * lib/printf-parse.c: Likewise.
18225         * lib/vasnprintf.c: Likewise.
18226         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
18227         * m4/intl.m4: Likewise.
18228         * m4/isnanl.m4: Likewise.
18229         * m4/printf.m4: Likewise.
18230         * m4/printf-frexpl.m4: Likewise.
18231         * m4/vasnprintf.m4: Likewise.
18232         * modules/allocsa (Files): Remove m4/longdouble.m4.
18233         * modules/gettext (Files): Likewise.
18234         * modules/relocatable-prog-wrapper (Files): Likewise.
18235         * modules/vasnprintf (Files): Likewise.
18236         * modules/isnanl (Files): Likewise.
18237         (Include): Simplify.
18238         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
18239         (Include): Simplify.
18240         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
18241         (Include): Simplify.
18242         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
18243         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18244         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
18245         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18246         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
18247         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18248         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
18249         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18250         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
18251         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18252         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
18253         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
18254         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
18255         * tests/test-isnanl.c: Likewise.
18256         * tests/test-snprintf-posix.h: Likewise.
18257         * tests/test-sprintf-posix.h: Likewise.
18258         * tests/test-vasnprintf-posix.c: Likewise.
18259         * tests/test-vasnprintf-posix2.c: Likewise.
18260         * tests/test-vasprintf-posix.c: Likewise.
18261
18262 2007-04-06  Bruno Haible  <bruno@clisp.org>
18263
18264         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
18265         * lib/math_.h [__DECC]: Include the overridden include file through
18266         #include_next, outside the double-inclusion guard.
18267         * lib/stdio_.h [__DECC]: Likewise.
18268         * lib/stdlib_.h [__DECC]: Likewise.
18269         * lib/string_.h [__DECC]: Likewise.
18270         * lib/time_.h [__DECC]: Likewise.
18271         * lib/wchar_.h [__DECC]: Likewise.
18272         * lib/wctype_.h [__DECC]: Likewise.
18273         * lib/inttypes_.h [__DECC]: Likewise.
18274         Reported by Albert Chin <china@thewrittenword.com> in
18275         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
18276
18277 2007-04-04  Eric Blake  <ebb9@byu.net>
18278
18279         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
18280         1.5.x.
18281
18282 2007-04-04  Bruno Haible  <bruno@clisp.org>
18283
18284         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
18285         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
18286
18287 2007-04-04  Bruno Haible  <bruno@clisp.org>
18288
18289         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
18290         results for "%010a" of Infinity and NaN.
18291         * tests/test-vasprintf-posix.c (test_function): Likewise.
18292         * tests/test-snprintf-posix.h (test_function): Likewise.
18293         * tests/test-sprintf-posix.h (test_function): Likewise.
18294         * tests/test-fprintf-posix.h (test_function): Remove these tests.
18295         * tests/test-printf-posix.h (test_function): Likewise.
18296         * tests/test-fprintf-posix.out: Update.
18297         Needed for FreeBSD 6.1.
18298
18299 2007-04-04  Bruno Haible  <bruno@clisp.org>
18300
18301         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
18302         directly used by the gnulib modules nor by gnulib-tool.
18303
18304 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
18305
18306         * DEPENDENCIES: Give overall description of version dependency
18307         desirability.  Use more-typical names for apps.
18308         Add shell, coreutils, diffutils, grep, tar, gzip.
18309
18310 2007-04-04  Simon Josefsson  <simon@josefsson.org>
18311
18312         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
18313
18314 2007-04-04  Karl Berry  <karl@gnu.org>
18315
18316         * MODULES.html.sh (func_module): missing '.
18317
18318 2007-04-03  Bruno Haible  <bruno@clisp.org>
18319
18320         * modules/argmatch-tests (Makefile.am): New variable
18321         test_argmatch_LDADD.
18322         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
18323         * modules/array-list-tests (Makefile.am): New variable
18324         test_array_list_LDADD.
18325         * modules/array-oset-tests (Makefile.am): New variable
18326         test_array_oset_LDADD.
18327         * modules/avltree-list-tests (Makefile.am): New variable
18328         test_avltree_list_LDADD.
18329         * modules/avltree-oset-tests (Makefile.am): New variable
18330         test_avltree_oset_LDADD.
18331         * modules/avltreehash-list-tests (Makefile.am): New variable
18332         test_avltreehash_list_LDADD.
18333         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
18334         test_canonicalize_lgpl_LDADD.
18335         * modules/carray-list-tests (Makefile.am): New variable
18336         test_carray_list_LDADD.
18337         * modules/dirname-tests (Makefile.am): New variable
18338         test_dirname_LDADD.
18339         * modules/linked-list-tests (Makefile.am): New variable
18340         test_linked_list_LDADD.
18341         * modules/linkedhash-list-tests (Makefile.am): New variable
18342         test_linkedhash_list_LDADD.
18343         * modules/rbtree-list-tests (Makefile.am): New variable
18344         test_rbtree_list_LDADD.
18345         * modules/rbtree-oset-tests (Makefile.am): New variable
18346         test_rbtree_oset_LDADD.
18347         * modules/rbtreehash-list-tests (Makefile.am): New variable
18348         test_rbtreehash_list_LDADD.
18349         * modules/xvasprintf-tests (Makefile.am): New variable
18350         test_xvasprintf_LDADD.
18351         Reported by Eric Blake.
18352
18353 2007-04-03  Eric Blake  <ebb9@byu.net>
18354
18355         * DEPENDENCIES: Weaken m4 requirements.
18356
18357 2007-04-03  Bruno Haible  <bruno@clisp.org>
18358
18359         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
18360         * modules/isnanl-tests (configure.ac): Likewise.
18361
18362 2007-04-03  Ben Pfaff  <blp@gnu.org>
18363
18364         * modules/iconv_open: Add $(srcdir)/ to source directory
18365         references in Makefile fragments that call gperf, to fix VPATH
18366         builds.
18367
18368 2007-04-03  Bruno Haible  <bruno@clisp.org>
18369
18370         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
18371         * lib/ldexpl.c: Undo last change.
18372
18373 2007-04-03  Bruno Haible  <bruno@clisp.org>
18374
18375         * modules/printf-frexpl (Depends-on): Undo last change.
18376         (Files): Add m4/ldexpl.m4.
18377
18378 2007-04-03  Bruno Haible  <bruno@clisp.org>
18379
18380         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
18381         * modules/isnanl (Link): New section.
18382
18383         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
18384         * modules/frexp (Link): New section.
18385
18386         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
18387         * modules/frexpl (Link): New section.
18388
18389         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
18390         * modules/ldexpl (Link): New section.
18391
18392 2007-04-03  Bruno Haible  <bruno@clisp.org>
18393
18394         * modules/TEMPLATE-EXTENDED: New file.
18395         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
18396
18397 2007-04-03  Bruno Haible  <bruno@clisp.org>
18398
18399         * DEPENDENCIES: New file.
18400         Suggested by Simon Josefsson.
18401
18402 2007-04-03  Bruno Haible  <bruno@clisp.org>
18403
18404         * doc/gnulib.texi: Escape @.
18405
18406 2007-04-03  James Youngman  <jay@gnu.org>
18407         and Paul Eggert  <eggert@cs.ucla.edu>
18408
18409         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
18410         birthtime on all systems that have birthtime, not just those which
18411         use st_birthtimensec rather than st_birthtim.  Putting zero in
18412         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
18413         that the birth time is not available for files on an NFS mount.
18414
18415 2007-04-03  Simon Josefsson  <simon@josefsson.org>
18416
18417         * modules/memxor: Move back from crypto/, suggested by Bruno.
18418         * modules/crypto/hmac-sha1: Fix memxor dependency.
18419
18420         * modules/crypto/gc: Moved from ../.
18421
18422 2007-04-02  Eric Blake  <ebb9@byu.net>
18423
18424         * lib/ldexpl.c (includes): Avoid libm.
18425
18426         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
18427
18428 2007-04-02  Bruno Haible  <bruno@clisp.org>
18429
18430         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
18431         on IRIX.
18432
18433 2007-04-02  Bruno Haible  <bruno@clisp.org>
18434
18435         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
18436         x86 or x86_64 platforms running MacOS X.
18437         Reported by Ryan Schmidt <@ryandesign.com>.
18438
18439 2007-04-02  Bruno Haible  <bruno@clisp.org>
18440
18441         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
18442         i386.
18443
18444 2007-04-01  Simon Josefsson  <simon@josefsson.org>
18445
18446         * modules/crypto/arcfour: Moved from ../.
18447         * modules/crypto/arcfour-tests: Moved from ../.
18448         * modules/crypto/arctwo: Moved from ../.
18449         * modules/crypto/arctwo-tests: Moved from ../.
18450         * modules/crypto/des: Moved from ../.
18451         * modules/crypto/des-tests: Moved from ../.
18452         * modules/crypto/gc-arcfour: Moved from ../.
18453         * modules/crypto/gc-arcfour-tests: Moved from ../.
18454         * modules/crypto/gc-arctwo: Moved from ../.
18455         * modules/crypto/gc-arctwo-tests: Moved from ../.
18456         * modules/crypto/gc-des: Moved from ../.
18457         * modules/crypto/gc-des-tests: Moved from ../.
18458         * modules/crypto/gc-hmac-md5: Moved from ../.
18459         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
18460         * modules/crypto/gc-hmac-sha1: Moved from ../.
18461         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
18462         * modules/crypto/gc-md2: Moved from ../.
18463         * modules/crypto/gc-md2-tests: Moved from ../.
18464         * modules/crypto/gc-md4: Moved from ../.
18465         * modules/crypto/gc-md4-tests: Moved from ../.
18466         * modules/crypto/gc-md5: Moved from ../.
18467         * modules/crypto/gc-md5-tests: Moved from ../.
18468         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
18469         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
18470         * modules/crypto/gc-random: Moved from ../.
18471         * modules/crypto/gc-rijndael: Moved from ../.
18472         * modules/crypto/gc-rijndael-tests: Moved from ../.
18473         * modules/crypto/gc-sha1: Moved from ../.
18474         * modules/crypto/gc-sha1-tests: Moved from ../.
18475         * modules/crypto/gc-tests: Moved from ../.
18476         * modules/crypto/hmac-md5: Moved from ../.
18477         * modules/crypto/hmac-md5-tests: Moved from ../.
18478         * modules/crypto/hmac-sha1: Moved from ../.
18479         * modules/crypto/hmac-sha1-tests: Moved from ../.
18480         * modules/crypto/md2: Moved from ../.
18481         * modules/crypto/md2-tests: Moved from ../.
18482         * modules/crypto/md4: Moved from ../.
18483         * modules/crypto/md4-tests: Moved from ../.
18484         * modules/crypto/md5: Moved from ../.
18485         * modules/crypto/md5-tests: Moved from ../.
18486         * modules/crypto/memxor: Moved from ../.
18487         * modules/crypto/rijndael: Moved from ../.
18488         * modules/crypto/rijndael-tests: Moved from ../.
18489         * modules/crypto/sha1: Moved from ../.
18490
18491 2007-03-30  James Youngman  <jay@gnu.org>
18492
18493         * tests/test-stat-time.c (prepare_test): use chmod() rather than
18494         rename() to change the ctime of a file (because ctime is unaffected
18495         by rename on jfs2 on AIX 5.1).
18496         (main): Start by doing cleanup, in case a previous run failed leaving
18497         test files behind.
18498
18499 2007-03-31  Bruno Haible  <bruno@clisp.org>
18500
18501         Support old proprietary implementations of iconv.
18502         * modules/iconv_open: New file.
18503         * lib/iconv_.h: New file.
18504         * m4/iconv_h.m4: New file.
18505         * lib/iconv_open.c: New file.
18506         * lib/iconv_open-aix.gperf: New file.
18507         * lib/iconv_open-hpux.gperf: New file.
18508         * lib/iconv_open-irix.gperf: New file.
18509         * lib/iconv_open-osf.gperf: New file.
18510         * m4/iconv_open.m4: New file.
18511         * modules/linebreak (Depends-on): Add iconv_open.
18512         * modules/striconv (Depends-on): Likewise.
18513         * modules/striconveh (Depends-on): Likewise.
18514         * modules/unicodeio (Depends-on): Likewise.
18515         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
18516         (iconv_t)(-1).
18517         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
18518         conversion if cd is (iconv_t)(-1).
18519         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
18520         is not possible.
18521
18522 2007-03-31  Bruno Haible  <bruno@clisp.org>
18523
18524         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
18525         work on Solaris either. Protect also second use of "autodetect_jp".
18526
18527 2007-03-31  Bruno Haible  <bruno@clisp.org>
18528
18529         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
18530         the function is not present.
18531
18532 2007-03-31  Bruno Haible  <bruno@clisp.org>
18533
18534         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
18535         the function is not present.
18536
18537 2007-03-31  Bruno Haible  <bruno@clisp.org>
18538
18539         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
18540         a bug in HP-UX iconv_open().
18541
18542 2007-03-31  Bruno Haible  <bruno@clisp.org>
18543
18544         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
18545         (Mathematics <math.h>): New section, add fpieee.
18546         (Input/output <stdio.h>): Add fseterr.
18547         (Mathematics <math.h>): New section, add printf-frexp.
18548         (Container data structures): Add sublist.
18549         (Core language properties): Add fpucw, inline.
18550         (Functions for greatest-width integer types <inttypes.h>): Add
18551         imaxabs, imaxdiv, inttypes.
18552         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
18553         isnanl-nolibm, ldexp.
18554         (Mathematics <math.h>): New section, add printf-frexpl.
18555         (Support for systems lacking POSIX:2001): Add fprintf-posix,
18556         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
18557         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
18558         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
18559         (Unicode string functions): Add unistr/u*-mbtoucr.
18560         (Java): Add javacomp-script, javaexec-script.
18561         (C#): Add csharpcomp-script, csharpexec-script.
18562         (Support for building libraries and executables): Add havelib,
18563         relocatable-*.
18564         (Support for maintaining and releasing projects): Renamed from
18565         'Support for maintaining and release projects'. Add announce-gen.
18566
18567 2007-03-31  Bruno Haible  <bruno@clisp.org>
18568
18569         * README: Talk primarily about git.
18570         (git and CVS): Renamed from CVS.
18571         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
18572         gnulib is available through git.
18573         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
18574
18575 2007-03-30  Bruno Haible  <bruno@clisp.org>
18576
18577         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
18578         * lib/poll_.h: Likewise.
18579         * lib/stat_.h: Likewise.
18580         * lib/sys_time_.h: Likewise.
18581         * lib/sysexit_.h: Likewise.
18582         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
18583         * lib/stdbool_.h: Likewise.
18584         * lib/byteswap_.h: Add double-inclusion guard.
18585
18586 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
18587
18588         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
18589
18590 2007-03-30  Karl Berry  <karl@gnu.org>
18591
18592         * config/srclist-update: double space after USA in the license
18593         substitution, since that's how it's usually (?) written.
18594
18595 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
18596
18597         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
18598         reported by Bruno Haible.
18599
18600 2007-03-29  Bruno Haible  <bruno@clisp.org>
18601
18602         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
18603         a bug in AIX iconv().
18604
18605 2007-03-29  Bruno Haible  <bruno@clisp.org>
18606
18607         * modules/ldexpl-tests: New file.
18608         * tests/test-ldexpl.c: New file.
18609
18610 2007-03-29  Bruno Haible  <bruno@clisp.org>
18611
18612         * lib/ldexpl.c: Include fpucw.h.
18613         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
18614         multiplication.
18615         * modules/ldexpl (Depends-on): Add fpucw.
18616
18617 2007-03-29  Bruno Haible  <bruno@clisp.org>
18618
18619         * modules/ldexpl: New file.
18620         * m4/ldexpl.m4: New file.
18621         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
18622         set.
18623         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
18624         REPLACE_LDEXPL.
18625         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
18626         REPLACE_LDEXPL.
18627         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
18628         gl_FUNC_LDEXPL_WORKS.
18629         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
18630         * modules/mathl (Files): Remove lib/ldexpl.c.
18631         (Depends-on): Add ldexpl.
18632
18633 2007-03-29  Bruno Haible  <bruno@clisp.org>
18634
18635         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
18636
18637 2007-03-29  Bruno Haible  <bruno@clisp.org>
18638
18639         * tests/test-striconveh.c (main): Don't assume that a direct conversion
18640         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
18641         and possibly also HP-UX.
18642         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
18643         work on AIX, IRIX, HP-UX, OSF/1.
18644         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
18645         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
18646         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
18647         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
18648         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
18649         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
18650
18651 2007-03-29  Bruno Haible  <bruno@clisp.org>
18652
18653         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
18654
18655 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
18656
18657         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
18658         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
18659
18660 2007-03-29  Eric Blake  <ebb9@byu.net>
18661
18662         * lib/acl-internal.h: Remove redundant include.
18663         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
18664         Cygwin when a file is locked.
18665
18666 2007-03-29  Bruno Haible  <bruno@clisp.org>
18667
18668         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
18669         file.
18670         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
18671
18672 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
18673
18674         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
18675         try to remove a parent directory if the child couldn't be removed
18676         (except for the first rmdir, which could fail because the child
18677         doesn't exist).  Problem reported by Jeff Blaine in
18678         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
18679
18680 2007-03-28  Bruno Haible  <bruno@clisp.org>
18681
18682         * lib/striconveh.c (utf8conv_carefully): New function.
18683         (mem_cd_iconveh_internal): Invoke it.
18684
18685 2007-03-28  Bruno Haible  <bruno@clisp.org>
18686
18687         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
18688         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
18689         input.
18690         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
18691         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
18692         unistr/u8-uctomb.
18693
18694 2007-03-28  Bruno Haible  <bruno@clisp.org>
18695
18696         * modules/unistr/u8-mbtoucr: New file.
18697         * lib/unistr/u8-mbtoucr.c: New file.
18698         * modules/unistr/u16-mbtoucr: New file.
18699         * lib/unistr/u16-mbtoucr.c: New file.
18700         * modules/unistr/u16-mbtoucr: New file.
18701         * lib/unistr/u16-mbtoucr.c: New file.
18702         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
18703
18704 2007-03-27  Simon Josefsson  <simon@josefsson.org>
18705             Bruno Haible  <bruno@clisp.org>
18706
18707         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
18708         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
18709         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
18710
18711         * m4/stdio_h.m4: Add stubs for vasprintf too.
18712
18713         * modules/stdio: Support vasprintf in sed command.
18714
18715         * modules/vasprintf: Depend on stdio for prototypes.  Remove
18716         vasprintf.h.  Add stdio module indicator.
18717
18718         * lib/stdio_.h: Declare asprintf and vasprintf, based on
18719         vasprintf.h.
18720
18721         * lib/vasprintf.h: File removed.
18722
18723         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
18724         * lib/vasprintf.c: Ditto.
18725         * lib/xvasprintf.c: Ditto.
18726         * tests/test-vasprintf-posix.c: Ditto.
18727         * tests/test-vasprintf.c: Ditto.
18728
18729 2007-03-27  Bruno Haible  <bruno@clisp.org>
18730
18731         Make vasnprintf multithread-safe.
18732         * lib/vasnprintf.c (decimal_point_char): New function.
18733         (VASNPRINTF): Use it.
18734         Suggested by Simon Josefsson.
18735
18736 2007-03-27  Eric Blake  <ebb9@byu.net>
18737
18738         Support sub-second birthtime on cygwin.
18739         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
18740         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
18741         (get_stat_birthtime): Also work with st_birthtim.
18742
18743 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
18744
18745         * lib/stat-time.h (USE_BIRTHTIME): Remove.
18746         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
18747         (get_stat_birthtime_ns): Do not try to use "spare" fields.
18748         (get_stat_birthtime_ns): Simplify compile-time tests.
18749         (get_stat_birthtime): Change the API to look like
18750         get_stat_mtime etc., except return a negative tv_nsec on error.
18751         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
18752         Don't check for "spare" fields.
18753         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
18754         or for struct stat.st_birthtime, as these tests aren't used.
18755         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
18756
18757 2007-03-27  Bruno Haible  <bruno@clisp.org>
18758
18759         * lib/stat-time.h: Include <sys/stat.h>.
18760
18761 2007-03-27  James Youngman  <jay@gnu.org>
18762
18763         * lib/stat-time.h (get_stat_birthtime): New function for
18764           retrieving st_birthtime as provided by UFS2 (hence *BSD).
18765         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
18766           and its variants.
18767         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
18768         * modules/stat-time-test: New file.
18769         * tests/test-stat-time.c: New test, devised by Bruno Haible.
18770
18771 2007-03-26  Bruno Haible  <bruno@clisp.org>
18772
18773         Better support of signalling NaNs.
18774         * lib/atanl.c: Include isnanl.h.
18775         (atanl): Perform test for NaN at the beginning of the function and
18776         through a call to isnanl.
18777         * lib/cosl.c: Include isnanl.h.
18778         (cosl): Perform test for NaN at the beginning of the function and
18779         through a call to isnanl.
18780         * lib/ldexpl.c: Include isnanl.h.
18781         (ldexpl): Perform test for NaN through a call to isnanl.
18782         * lib/logl.c: Include isnanl.h.
18783         (logl): Perform test for NaN at the beginning of the function and
18784         through a call to isnanl.
18785         * lib/sinl.c: Include isnanl.h.
18786         (sinl): Perform test for NaN at the beginning of the function and
18787         through a call to isnanl.
18788         * lib/sqrtl.c: Include isnanl.h.
18789         (sqrtl): Perform test for NaN at the beginning of the function and
18790         through a call to isnanl.
18791         * lib/tanl.c: Include isnanl.h.
18792         (tanl): Perform test for NaN at the beginning of the function and
18793         through a call to isnanl.
18794         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
18795         * modules/mathl (Depends-on): Add isnanl.
18796
18797 2007-03-26  Eric Blake  <ebb9@byu.net>
18798
18799         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
18800         regression in logic sense of previous patch.
18801
18802 2007-03-26  Bruno Haible  <bruno@clisp.org>
18803
18804         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
18805         unportable shell command "if ! ...".
18806         Reported by Ralf Wildenhues.
18807
18808 2007-03-25  Bruno Haible  <bruno@clisp.org>
18809
18810         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
18811         <sysexits.h> file, and only add EX_CONFIG.
18812         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
18813         absolute file name and whether it is sufficient. Substitute also
18814         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
18815         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
18816         ABSOLUTE_SYSEXITS_H into sysexits.h.
18817
18818 2007-03-25  Bruno Haible  <bruno@clisp.org>
18819
18820         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
18821         hints is NULL.
18822
18823 2007-03-25  Bruno Haible  <bruno@clisp.org>
18824
18825         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
18826         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
18827
18828 2007-03-25  Bruno Haible  <bruno@clisp.org>
18829
18830         * lib/vasnprintf.c: Include langinfo.h.
18831         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
18832         multithread-safe.
18833         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
18834         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
18835         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
18836         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
18837         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
18838         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
18839         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
18840         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
18841         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
18842         Reported by Simon Josefsson.
18843
18844 2007-03-25  Bruno Haible  <bruno@clisp.org>
18845
18846         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
18847         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
18848         * modules/vasnprintf (Depends-on): Add stdint.
18849
18850 2007-03-25  Bruno Haible  <bruno@clisp.org>
18851
18852         * modules/fpieee: New file.
18853         * m4/fpieee.m4: New file.
18854         * modules/isnan-nolibm (Depends-on): Add fpieee.
18855         * modules/isnanl-nolibm (Depends-on): Add fpieee.
18856         * modules/isnanl (Depends-on): Add fpieee.
18857
18858 2007-03-25  Bruno Haible  <bruno@clisp.org>
18859
18860         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
18861
18862 2007-03-25  Bruno Haible  <bruno@clisp.org>
18863
18864         Avoid test failures on IRIX 6.5.
18865         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
18866         (main): Use it.
18867         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
18868         macros.
18869         (main): Use them.
18870
18871 2007-03-25  Bruno Haible  <bruno@clisp.org>
18872
18873         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
18874         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
18875         exists but doesn't work.
18876         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
18877         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
18878         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
18879         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
18880
18881 2007-03-25  Bruno Haible  <bruno@clisp.org>
18882
18883         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
18884         returns inf. Needed on IRIX 6.5.
18885
18886 2007-03-25  Bruno Haible  <bruno@clisp.org>
18887
18888         * tests/test-frexpl.c: Include isnanl-nolibm.h.
18889         (main): Use isnanl instead of x != x idiom.
18890         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
18891
18892         * tests/test-frexp.c: Include isnan.h.
18893         (main): Use isnan instead of x != x idiom.
18894         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
18895
18896 2007-03-25  Bruno Haible  <bruno@clisp.org>
18897
18898         * tests/test-frexp.c (NaN): New function/macro.
18899         (main): Use it instead of 0.0 / 0.0.
18900         * tests/test-isnan.c (NaN): New function/macro.
18901         (main): Use it instead of 0.0 / 0.0.
18902         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
18903         (test_function): Use it instead of 0.0 / 0.0.
18904         * tests/test-vasprintf-posix.c (NaN): New function/macro.
18905         (test_function): Use it instead of 0.0 / 0.0.
18906         * tests/test-snprintf-posix.h (NaN): New function/macro.
18907         (test_function): Use it instead of 0.0 / 0.0.
18908         * tests/test-sprintf-posix.h (NaN): New function/macro.
18909         (test_function): Use it instead of 0.0 / 0.0.
18910         * tests/test-fprintf-posix.h (NaN): New function/macro.
18911         (test_function): Use it instead of 0.0 / 0.0.
18912         * tests/test-printf-posix.h (NaN): New function/macro.
18913         (test_function): Use it instead of 0.0 / 0.0.
18914
18915         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
18916
18917 2007-03-25  Bruno Haible  <bruno@clisp.org>
18918
18919         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
18920
18921 2007-03-25  Bruno Haible  <bruno@clisp.org>
18922
18923         * lib/regexec.c (merge_state_with_log): Make static.
18924
18925 2007-03-25  Bruno Haible  <bruno@clisp.org>
18926
18927         * lib/trigl.c (kernel_rem_pio2): Make static.
18928
18929 2007-03-25  Bruno Haible  <bruno@clisp.org>
18930
18931         * lib/sincosl.c (sincosl_table): Make static.
18932
18933 2007-03-25  Bruno Haible  <bruno@clisp.org>
18934
18935         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
18936         if the compiler does not support C99.
18937
18938 2007-03-25  Bruno Haible  <bruno@clisp.org>
18939
18940         * modules/time (Makefile.am): Ensure all rule action lines start with a
18941         tab.
18942
18943 2007-03-24  Bruno Haible  <bruno@clisp.org>
18944
18945         * modules/tsearch-tests: New file.
18946         * tests/test-tsearch.sh: New file.
18947         * tests/test-tsearch.c: New file, mostly copied from glibc.
18948
18949         * modules/search-tests: New file.
18950         * tests/test-search.c: New file.
18951
18952         * modules/search: New file.
18953         * lib/search_.h: New file, incorporating lib/tsearch.h.
18954         * m4/search_h.m4: New file.
18955         * lib/tsearch.h: Remove file.
18956         * lib/tsearch.c: Include search.h instead of tsearch.h.
18957         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
18958         HAVE_TSEARCH.
18959         * modules/tsearch (Files): Remove lib/tsearch.h.
18960         (Depends-on): Add search.
18961         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
18962         (Include): Change tsearch.h into search.h.
18963
18964 2007-03-24  Bruno Haible  <bruno@clisp.org>
18965
18966         * modules/fpucw: New file.
18967         * lib/fpucw.h: New file.
18968         * lib/frexp.c: Include fpucw.h.
18969         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
18970         (FUNC): Use them.
18971         * lib/printf-frexp.c: Include fpucw.h.
18972         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
18973         (FUNC): Use them.
18974         * lib/vasnprintf.c: Include fpucw.h.
18975         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
18976         'long double' calculations.
18977         * tests/test-frexpl.c: Include fpucw.h.
18978         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
18979         * tests/test-printf-frexpl.c: Include fpucw.h.
18980         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
18981         * modules/frexpl (Depends-on): Add fpucw.
18982         * modules/printf-frexpl (Depends-on): Likewise.
18983         * modules/fprintf-posix (Depends-on): Likewise.
18984         * modules/snprintf-posix (Depends-on): Likewise.
18985         * modules/sprintf-posix (Depends-on): Likewise.
18986         * modules/vasnprintf-posix (Depends-on): Likewise.
18987         * modules/vasprintf-posix (Depends-on): Likewise.
18988         * modules/vfprintf-posix (Depends-on): Likewise.
18989         * modules/vsnprintf-posix (Depends-on): Likewise.
18990         * modules/vsprintf-posix (Depends-on): Likewise.
18991         * modules/frexpl-tests (Depends-on): Likewise.
18992         * modules/printf-frexpl-tests (Depends-on): Likewise.
18993
18994 2007-03-24  Bruno Haible  <bruno@clisp.org>
18995
18996         * lib/float+.h: New file.
18997         * lib/isnan.c: Include float+.h.
18998         (SIZE): New macro.
18999         (FUNC): Compare only SIZE bytes of the value.
19000         * lib/vasnprintf.c: Include float+.h.
19001         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
19002         SIZEOF_LDBL or SIZEOF_DBL bytes.
19003         * modules/isnan-nolibm (Files): Add lib/float+.h.
19004         * modules/isnanl-nolibm (Files): Add lib/float+.h.
19005         * modules/isnanl (Files): Add lib/float+.h.
19006         * modules/vasnprintf (Files): Add lib/float+.h.
19007
19008 2007-03-24  Bruno Haible  <bruno@clisp.org>
19009
19010         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
19011         include isnanl-nolibm.h.
19012
19013 2007-03-24  Bruno Haible  <bruno@clisp.org>
19014
19015         * tests/test-read-file.c (main): Don't produce spurious output for
19016         expected situations. Make the test fail if it encountered unexpected
19017         results.
19018
19019 2007-03-24  Bruno Haible  <bruno@clisp.org>
19020
19021         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
19022         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
19023
19024 2007-03-24  Bruno Haible  <bruno@clisp.org>
19025
19026         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
19027
19028 2007-03-24  Bruno Haible  <bruno@clisp.org>
19029
19030         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
19031         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
19032
19033         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
19034         * modules/utf8-ucs4: Turn into a symbolic link to module
19035         unistr/u8-mbtouc.
19036
19037         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
19038         utf8-ucs4-unsafe.
19039         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
19040         unistr/u8-mbtouc-unsafe.
19041
19042         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
19043         * modules/utf16-ucs4: Turn into a symbolic link to module
19044         unistr/u16-mbtouc.
19045
19046         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
19047         utf16-ucs4-unsafe.
19048         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
19049         unistr/u16-mbtouc-unsafe.
19050
19051         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
19052         * modules/ucs4-utf8: Turn into a symbolic link to module
19053         unistr/u8-ubtomb.
19054
19055         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
19056         * modules/ucs4-utf16: Turn into a symbolic link to module
19057         unistr/u16-ubtomb.
19058
19059 2007-03-24  Bruno Haible  <bruno@clisp.org>
19060
19061         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
19062         Enable the function only if HAVE_INLINE.
19063         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
19064         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
19065         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
19066         Enable the function only if HAVE_INLINE.
19067         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
19068         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
19069         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
19070         Enable the function only if HAVE_INLINE.
19071         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
19072         Enable the function only if HAVE_INLINE.
19073         * modules/utf8-ucs4: Update.
19074         * modules/utf8-ucs4-unsafe: Update.
19075         * modules/utf16-ucs4: Update.
19076         * modules/utf16-ucs4-unsafe: Update.
19077         * modules/ucs4-utf8: Update.
19078         * modules/ucs4-utf16: Update.
19079
19080 2007-03-24  Bruno Haible  <bruno@clisp.org>
19081
19082         * lib/utf8-ucs4.h: Remove file.
19083         * lib/utf8-ucs4-unsafe.h: Remove file.
19084         * lib/utf16-ucs4.h: Remove file.
19085         * lib/utf16-ucs4-unsafe.h: Remove file.
19086         * lib/ucs4-utf8.h: Remove file.
19087         * lib/ucs4-utf16.h: Remove file.
19088         * lib/unistr.h: Include their previous contents.
19089         * m4/utf-ucs4.m4: Remove file.
19090         * m4/ucs4-utf.m4: Remove file.
19091         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
19092         (Depends-on): Add unistr/base.
19093         (configure.ac): Remove gl_UTF_UCS4.
19094         (Makefile.am): Update.
19095         (Include): Change to unistr.h.
19096         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
19097         (Depends-on): Add unistr/base.
19098         (configure.ac): Remove gl_UTF_UCS4.
19099         (Makefile.am): Update.
19100         (Include): Change to unistr.h.
19101         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
19102         (Depends-on): Add unistr/base.
19103         (configure.ac): Remove gl_UTF_UCS4.
19104         (Makefile.am): Update.
19105         (Include): Change to unistr.h.
19106         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
19107         (Depends-on): Add unistr/base.
19108         (configure.ac): Remove gl_UTF_UCS4.
19109         (Makefile.am): Update.
19110         (Include): Change to unistr.h.
19111         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
19112         (Depends-on): Add unistr/base.
19113         (configure.ac): Remove gl_UCS4_UTF.
19114         (Makefile.am): Update.
19115         (Include): Change to unistr.h.
19116         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
19117         (Depends-on): Add unistr/base.
19118         (configure.ac): Remove gl_UCS4_UTF.
19119         (Makefile.am): Update.
19120         (Include): Change to unistr.h.
19121         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
19122         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
19123         utf8-ucs4-unsafe.h.
19124         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
19125         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
19126         utf16-ucs4-unsafe.h.
19127         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
19128         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
19129         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
19130         * lib/unistr/u8-strchr.c: Likewise.
19131         * lib/unistr/u8-strrchr.c: Likewise.
19132         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
19133         * lib/unistr/u16-strchr.c: Likewise.
19134         * lib/unistr/u16-strrchr.c: Likewise.
19135         * lib/striconveh.c: Update.
19136         * lib/linebreak.c: Update.
19137
19138 2007-03-24  Bruno Haible  <bruno@clisp.org>
19139
19140         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
19141         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
19142
19143 2007-03-22  Bruno Haible  <bruno@clisp.org>
19144
19145         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
19146
19147 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
19148
19149         * MODULES.html.sh (File system functions): New module write-any-file.
19150         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
19151         * m4/write-any-file.m4: New files.
19152
19153 2007-03-23  Eric Blake  <ebb9@byu.net>
19154
19155         * gnulib-tool: Rearrange space-tab sequences, since some editors
19156         like to eat them.
19157
19158 2007-03-23  Eric Blake  <ebb9@byu.net>
19159
19160         * lib/version-etc.c (version_etc_va): Update license wording to
19161         be more concise.  Recommended by Richard Stallman.
19162
19163 2007-03-22  Bruno Haible  <bruno@clisp.org>
19164
19165         * lib/poll.c (MSG_PEEK): New fallback definition.
19166
19167 2007-03-22  Bruno Haible  <bruno@clisp.org>
19168
19169         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
19170         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
19171         (main): Update.
19172         Fixes a compilation error on BeOS.
19173
19174 2007-03-22  Bruno Haible  <bruno@clisp.org>
19175
19176         * modules/frexpl-tests: New file.
19177         * tests/test-frexpl.c: New file.
19178
19179         * modules/frexpl: New file.
19180         * m4/frexpl.m4: New file.
19181         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
19182         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
19183         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
19184         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
19185         (Depends-on): Add frexpl. Remove isnanl-nolibm.
19186         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
19187
19188 2007-03-22  Bruno Haible  <bruno@clisp.org>
19189
19190         * lib/frexpl.c: Share code with lib/frexp.c.
19191         * modules/mathl (Files): Add lib/frexp.c.
19192         (Depends-on): Add isnanl-nolibm.
19193
19194 2007-03-22  Bruno Haible  <bruno@clisp.org>
19195
19196         * modules/printf-frexp (Files): Add m4/frexp.m4.
19197         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
19198         only if the found frexp function actually works.
19199
19200 2007-03-22  Bruno Haible  <bruno@clisp.org>
19201
19202         * lib/frexp.c: Remove older implementation that uses divisions.
19203
19204 2007-03-21  Bruno Haible  <bruno@clisp.org>
19205
19206         * modules/frexp-tests: New file.
19207         * tests/test-frexp.c: New file.
19208
19209         * modules/frexp: New file.
19210         * lib/frexp.c: New file.
19211         * m4/frexp.m4: New file.
19212         * lib/math_.h (frexp): New declaration.
19213         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
19214         REPLACE_FREXP.
19215         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
19216
19217 2007-03-21  Bruno Haible  <bruno@clisp.org>
19218
19219         * modules/isnanl-tests: New file.
19220         * tests/test-isnanl.c: New file.
19221
19222         * modules/isnanl: New file.
19223         * lib/isnanl.h: New file.
19224         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
19225         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
19226         gl_FUNC_ISNANL_WORKS.
19227         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
19228         New macros.
19229
19230 2007-03-21  Bruno Haible  <bruno@clisp.org>
19231
19232         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
19233         lib/isnanl.h.
19234         (Include): Update.
19235         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
19236         * lib/vasnprintf.c: Update.
19237         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
19238         tests/test-isnanl.h, remove tests/test-isnanl.c.
19239         (Makefile.am): Update.
19240         * tests/test-isnanl-nolibm.c: New file.
19241         * tests/test-isnanl.h: New file.
19242         * tests/test-isnanl.c: Remove file.
19243
19244 2007-03-21  Jim Meyering  <jim@meyering.net>
19245
19246         When trying to open ".", treat ESTALE like EACCES.
19247         * lib/savewd.c (savewd_save): Resort to forking not just upon
19248         failure with EACCES, but also when errno is ESTALE.
19249
19250 2007-03-20  Bruno Haible  <bruno@clisp.org>
19251
19252         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
19253         Needed on AIX 5.1. Reported by Matthew Woehlke.
19254
19255 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
19256
19257         Suggestions by Bruno Haible:
19258         * lib/acl-internal.h: Include "gettext.h" rather than rolling
19259         our own.
19260         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
19261         * modules/acl (Depends-on): Add gettext.
19262
19263 2007-03-19  Bruno Haible  <bruno@clisp.org>
19264
19265         * modules/iconvme: Remove file.
19266         * lib/iconvme.h: Remove file.
19267         * lib/iconvme.c: Remove file.
19268         * m4/iconvme.m4: Remove file.
19269
19270 2007-03-19  Bruno Haible  <bruno@clisp.org>
19271
19272         * doc/relocatable-maint.texi: Break long shell script line.
19273         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
19274
19275 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
19276
19277         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
19278         handle file_has_acl.
19279         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
19280         * lib/acl.c: Move header inclusions and related macro defns into
19281         lib/acl-internal.h.
19282         (S_ISLNK): Remove defn, since that's now done for us.
19283         (file_has_acl): Move to lib/file-has-acl.c.
19284         Call acl_trivial if available.  This is the crucial part of the fix.
19285         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
19286         shared within the library.  Rewrite a bit, partly to make it compatible
19287         with the GNU coding style.
19288         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
19289         Remove unnecessary double-quotes.
19290         Don't test for acl_to_text; the build will catch that.
19291         Replace acl_entries if it doesn't exist and it is needed.
19292         Check for -lsec and acl_trivial (as used on Solaris 10).
19293         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
19294         lib/file-has-acl.c.
19295         (Depends-on): Add sys_stat, for S_ISLNK.
19296
19297 2007-03-19  Ben Pfaff  <blp@gnu.org>
19298
19299         * doc/gnulib.texi: Fix typos.
19300         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
19301
19302 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
19303
19304         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
19305         If size is zero here, buf must be zero.
19306
19307 2007-03-19  Simon Josefsson  <simon@josefsson.org>
19308
19309         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
19310         <bruno@clisp.org>.
19311
19312 2007-03-18  Bruno Haible  <bruno@clisp.org>
19313
19314         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
19315         Suggested by Eric Blake.
19316
19317 2007-03-18  Ben Pfaff  <blp@gnu.org>
19318
19319         * doc/relocatable.texi: Recommend using as prefix a directory
19320         that does not exist and will never be created.  Based on
19321         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
19322         and others.
19323
19324 2007-03-17  Bruno Haible  <bruno@clisp.org>
19325
19326         * lib/fchownat.c: Include lchown.h.
19327
19328 2007-03-17  Bruno Haible  <bruno@clisp.org>
19329
19330         Fix endless loop when the given allocated size was > INT_MAX.
19331         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
19332         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
19333         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
19334         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
19335         * lib/sprintf.c (sprintf): Likewise.
19336
19337 2007-03-17  Bruno Haible  <bruno@clisp.org>
19338
19339         * tests/test-argp-2.sh (func_compare): Output a context diff.
19340
19341 2007-03-17  Bruno Haible  <bruno@clisp.org>
19342
19343         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
19344         locale's decimal-point character.
19345
19346 2007-03-17  Bruno Haible  <bruno@clisp.org>
19347
19348         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
19349         before comparing it. Needed because on some platforms (e.g. x86) a
19350         'long double' occupies less bytes than sizeof (long double).
19351
19352 2007-03-17  Bruno Haible  <bruno@clisp.org>
19353
19354         * tests/test-crc.c (main): Make printf statements 64-bit clean.
19355         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
19356         * tests/test-getaddrinfo.c (simple): Likewise.
19357         * tests/test-read-file.c (main): Likewise.
19358
19359 2007-03-17  Bruno Haible  <bruno@clisp.org>
19360
19361         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
19362
19363 2007-03-17  Bruno Haible  <bruno@clisp.org>
19364
19365         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
19366         unused variable.
19367
19368 2007-03-17  Bruno Haible  <bruno@clisp.org>
19369
19370         * tests/test-c-strcasecmp.c: Include c-strcase.h.
19371         * tests/test-c-strncasecmp.c: Likewise.
19372
19373 2007-03-17  Bruno Haible  <bruno@clisp.org>
19374
19375         * modules/stdlib (Depends-on): Add unistd.
19376         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
19377         Needed for MacOS X 10.3.
19378
19379 2007-03-17  Bruno Haible  <bruno@clisp.org>
19380
19381         * lib/unistr/u-strdup.h: Include <stdlib.h>.
19382
19383 2007-03-17  Bruno Haible  <bruno@clisp.org>
19384
19385         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
19386
19387 2007-03-17  Bruno Haible  <bruno@clisp.org>
19388
19389         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
19390         to reflect files copied from gnulib (with or without modifications).
19391         Suggested by Jim Meyering.
19392
19393 2007-03-17  Eric Blake  <ebb9@byu.net>
19394
19395         * NEWS: Document stdlib change from 2007-02-18.
19396
19397 2007-03-17  Jim Meyering  <jim@meyering.net>
19398
19399         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
19400         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
19401         someone uses a name containing shell meta-characters.
19402         Reported by Alfred M. Szmidt.
19403
19404         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
19405
19406 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
19407
19408         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
19409         and copy gettext configuration files only if configure.ac contains
19410         a use of AM_GNU_GETTEXT_VERSION.
19411
19412 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
19413
19414         * build-aux/bootstrap (gnulib_name): New variable.
19415         (gnulib_tool_options): Use it.
19416
19417 2007-03-13  Simon Josefsson  <simon@josefsson.org>
19418
19419         * tests/test-des.c: Use new namespace.
19420
19421 2007-03-15  Bruno Haible  <bruno@clisp.org>
19422
19423         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
19424         Reported by James Youngman <jay@gnu.org>.
19425
19426 2007-03-15  Bruno Haible  <bruno@clisp.org>
19427
19428         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
19429         declared prototype. Needed with cc on OSF/1 5.1.
19430
19431 2007-03-15  Bruno Haible  <bruno@clisp.org>
19432
19433         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
19434         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
19435         (struct gl_list_implementation): Add dispose_fn argument to the
19436         'create_empty', 'create' methods.
19437         (struct gl_list_impl_base): Add field 'dispose_fn'.
19438         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
19439         argument.
19440         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
19441         dispose_fn argument.
19442         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
19443         dispose_fn on the dropped values.
19444         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
19445         dispose_fn argument.
19446         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
19447         dropped values.
19448         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
19449         (gl_tree_remove_node): Call dispose_fn on the dropped value.
19450         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
19451         (gl_tree_remove_node): Call dispose_fn on the dropped value.
19452         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
19453         argument.
19454         (gl_tree_list_free): Call dispose_fn on the dropped values.
19455         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
19456         the dropped values.
19457         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
19458         Add dispose_fn argument.
19459         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
19460         Call dispose_fn on the dropped values.
19461         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
19462         Add dispose_fn argument.
19463         (gl_sublist_create): Initialize the 'dispose_fn' field.
19464         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
19465         * tests/test-array_list.c (main): Update.
19466         * tests/test-carray_list.c (main): Update.
19467         * tests/test-avltree_list.c (main): Update.
19468         * tests/test-rbtree_list.c (main): Update.
19469         * tests/test-avltreehash_list.c (main): Update.
19470         * tests/test-rbtreehash_list.c (main): Update.
19471         * tests/test-linked_list.c (main): Update.
19472         * tests/test-linkedhash_list.c (main): Update.
19473         * tests/test-array_oset.c (main): Update.
19474
19475 2007-03-15  Bruno Haible  <bruno@clisp.org>
19476
19477         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
19478         (gl_oset_create_empty): Add dispose_fn argument.
19479         (struct gl_oset_implementation): Add dispose_fn argument to
19480         'create_empty' method.
19481         (struct gl_oset_impl_base): Add dispose_fn field.
19482         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
19483         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
19484         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
19485         values.
19486         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
19487         (gl_tree_oset_free): Call dispose_fn on the dropped values.
19488         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
19489         dropped value.
19490         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
19491         dropped value.
19492         * tests/test-array_oset.c (main): Update.
19493         * tests/test-avltree_oset.c (main): Update.
19494         * tests/test-rbtree_oset.c (main): Update.
19495         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
19496
19497 2007-03-13  Bruno Haible  <bruno@clisp.org>
19498
19499         * tests/test-stdbool.c (i): Update after last patch.
19500
19501 2007-03-12  Bruno Haible  <bruno@clisp.org>
19502
19503         * lib/quotearg.c: Include <wctype.h> early, before the definition of
19504         the iswprint macro. Needed on Solaris 2.5.1.
19505
19506 2007-03-12  Bruno Haible  <bruno@clisp.org>
19507
19508         * tests/test-printf-frexp.c (main): Declare x as volatile.
19509
19510 2007-03-12  Simon Josefsson  <simon@josefsson.org>
19511
19512         * doc/gnulib.texi (Build robot for gnulib): New section.
19513
19514 2007-03-12  Jim Meyering  <jim@meyering.net>
19515
19516         * build-aux/bootstrap: New file.
19517         * build-aux/bootstrap.conf: New file, from coreutils.
19518
19519 2007-03-11  Bruno Haible  <bruno@clisp.org>
19520
19521         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
19522
19523 2007-03-12  Simon Josefsson  <simon@josefsson.org>
19524
19525         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
19526         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
19527         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
19528
19529 2007-03-11  Bruno Haible  <bruno@clisp.org>
19530
19531         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
19532         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
19533
19534 2007-03-11  Bruno Haible  <bruno@clisp.org>
19535
19536         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
19537         formula. Needed for SunPRO C 5.0.
19538
19539 2007-03-11  Bruno Haible  <bruno@clisp.org>
19540
19541         * modules/long-options (Depends-on): Add getopt.
19542
19543 2007-03-11  Bruno Haible  <bruno@clisp.org>
19544
19545         * modules/modechange (Depends-on): Add stdbool.
19546
19547 2007-03-11  Bruno Haible  <bruno@clisp.org>
19548
19549         * modules/i-ring (Depends-on): Add stdbool.
19550
19551 2007-03-11  Bruno Haible  <bruno@clisp.org>
19552
19553         * modules/gc-des (Depends-on): Add stdbool.
19554
19555 2007-03-11  Bruno Haible  <bruno@clisp.org>
19556
19557         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
19558
19559 2007-03-11  Bruno Haible  <bruno@clisp.org>
19560
19561         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
19562
19563 2007-03-11  Bruno Haible  <bruno@clisp.org>
19564
19565         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
19566
19567 2007-03-11  Bruno Haible  <bruno@clisp.org>
19568
19569         * lib/vasnprintf.c (sprintf): Undefine.
19570
19571 2007-03-11  Bruno Haible  <bruno@clisp.org>
19572
19573         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
19574         initializers in SunPRO C and Compaq C compilers.
19575
19576 2007-03-11  Bruno Haible  <bruno@clisp.org>
19577
19578         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
19579         decrementing code ANSI C compliant.
19580
19581 2007-03-11  Bruno Haible  <bruno@clisp.org>
19582
19583         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
19584         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
19585
19586 2007-03-11  Bruno Haible  <bruno@clisp.org>
19587
19588         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
19589         <stdbool.h> substitute doesn't pass.
19590
19591 2007-03-11  Bruno Haible  <bruno@clisp.org>
19592
19593         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
19594
19595 2007-03-11  Bruno Haible  <bruno@clisp.org>
19596
19597         * gnulib-tool (func_create_megatestdir): Create also an autobuild
19598         script, for submission to autobuild.josefsson.org.
19599
19600 2007-03-10  Bruno Haible  <bruno@clisp.org>
19601
19602         * modules/canonicalize-lgpl-tests: New file.
19603         * tests/test-canonicalize-lgpl.sh: New file.
19604         * tests/test-canonicalize-lgpl.c: New file.
19605
19606         * modules/c-strcase-tests: New file.
19607         * tests/test-c-strcase.sh: New file.
19608         * tests/test-c-strcasecmp.c: New file.
19609         * tests/test-c-strncasecmp.c: New file.
19610
19611         * modules/atexit-tests: New file.
19612         * tests/test-atexit.sh: New file.
19613         * tests/test-atexit.c: New file.
19614
19615 2007-03-10  Bruno Haible  <bruno@clisp.org>
19616
19617         * tests/test-binary-io.sh: Use temporary filenames that are not so
19618         likely to clash with those of other tests (in a parallel make).
19619         * tests/test-binary-io.c: Likewise.
19620
19621 2007-03-10  Bruno Haible  <bruno@clisp.org>
19622
19623         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
19624         fallback; use #error instead.
19625         Suggested by Simon Josefsson.
19626
19627 2007-03-10  Bruno Haible  <bruno@clisp.org>
19628
19629         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
19630         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
19631         first and the last.
19632
19633 2007-03-10  Bruno Haible  <bruno@clisp.org>
19634
19635         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
19636
19637 2007-03-10  Bruno Haible  <bruno@clisp.org>
19638
19639         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
19640         "make distcheck".
19641         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
19642         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
19643         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
19644
19645 2007-03-10  Bruno Haible  <bruno@clisp.org>
19646
19647         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
19648         variable.
19649         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
19650         variable.
19651
19652 2007-03-09  Eric Blake  <ebb9@byu.net>
19653         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
19654
19655         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
19656         types are not being provided by gnulib.
19657         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
19658         types are supported.
19659
19660 2007-03-10  Bruno Haible  <bruno@clisp.org>
19661
19662         * lib/stdio_.h (__attribute__): New macro.
19663         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
19664         vsprintf): Specify __attribute__ __format__ for GCC.
19665         Suggested by Eric Blake.
19666
19667 2007-03-09  Bruno Haible  <bruno@clisp.org>
19668
19669         * modules/printf-posix-tests: New file.
19670         * tests/test-printf-posix.sh: New file.
19671         * tests/test-printf-posix.c: New file.
19672
19673         * modules/printf-posix: New file.
19674         * lib/printf.c: New file.
19675         * m4/printf-posix-rpl.m4: New file.
19676         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
19677         REPLACE_PRINTF.
19678         * lib/stdio_.h (printf): New declaration.
19679         (format, __format__, ____printf____, ____scanf____, ____strftime____,
19680         ____strfmon____): New macros.
19681         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
19682         REPLACE_PRINTF.
19683
19684 2007-03-09  Bruno Haible  <bruno@clisp.org>
19685
19686         * tests/test-vasnprintf-posix2.sh: New file.
19687         * tests/test-vasnprintf-posix2.c: New file.
19688         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
19689         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
19690         (Makefile.am): Activate test-vasnprintf-posix2.sh.
19691
19692         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
19693         a locale dependent decimal point, rather than always '.'.
19694
19695 2007-03-09  Eric Blake  <ebb9@byu.net>
19696
19697         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
19698         spite of platforms like Tandem/NSK that define it to -1.
19699
19700 2007-03-08  Bruno Haible  <bruno@clisp.org>
19701
19702         * modules/vprintf-posix-tests: New file.
19703         * tests/test-vprintf-posix.sh: New file.
19704         * tests/test-vprintf-posix.c: New file.
19705         * tests/test-printf-posix.h: New file.
19706
19707         * modules/vprintf-posix: New file.
19708         * lib/vprintf.c: New file.
19709         * m4/vprintf-posix.m4: New file.
19710         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
19711         REPLACE_VPRINTF.
19712         * lib/stdio_.h (vprintf): New declaration.
19713         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
19714         REPLACE_VPRINTF.
19715
19716 2007-03-08  Bruno Haible  <bruno@clisp.org>
19717
19718         * modules/fprintf-posix-tests: New file.
19719         * tests/test-fprintf-posix.sh: New file.
19720         * tests/test-fprintf-posix.c: New file.
19721
19722         * modules/fprintf-posix: New file.
19723         * lib/fprintf.c: New file.
19724         * m4/fprintf-posix.m4: New file.
19725         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
19726         REPLACE_FPRINTF.
19727         * lib/stdio_.h (fprintf): New declaration.
19728         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
19729         REPLACE_FPRINTF.
19730
19731 2007-03-08  Bruno Haible  <bruno@clisp.org>
19732
19733         * modules/vfprintf-posix-tests: New file.
19734         * tests/test-vfprintf-posix.sh: New file.
19735         * tests/test-vfprintf-posix.c: New file.
19736         * tests/test-fprintf-posix.h: New file.
19737         * tests/test-fprintf-posix.out: New file.
19738
19739         * modules/vfprintf-posix: New file.
19740         * lib/vfprintf.c: New file.
19741         * m4/vfprintf-posix.m4: New file.
19742         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
19743         REPLACE_VFPRINTF.
19744         * lib/stdio_.h (vfprintf): New declaration.
19745         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
19746         REPLACE_VFPRINTF.
19747
19748 2007-03-08  Bruno Haible  <bruno@clisp.org>
19749
19750         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
19751
19752 2007-03-08  Bruno Haible  <bruno@clisp.org>
19753
19754         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
19755         instead of 'expr' invocations.
19756         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
19757         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
19758         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
19759         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
19760         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
19761         Suggested by Paul Eggert.
19762
19763 2007-03-08  Bruno Haible  <bruno@clisp.org>
19764
19765         * modules/fseterr-tests: New file.
19766         * tests/test-fseterr.c: New file.
19767
19768         * modules/fseterr: New file.
19769         * lib/fseterr.h: New file.
19770         * lib/fseterr.c: New file.
19771
19772 2007-03-08  Bruno Haible  <bruno@clisp.org>
19773
19774         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
19775         * lib/getopt_.h: Likewise.
19776         * lib/mbswidth.h: Likewise.
19777         * lib/setenv.h: Likewise.
19778         * lib/vasnprintf.h: Likewise.
19779         * lib/vasprintf.h: Likewise.
19780         * lib/verror.h: Likewise.
19781         * lib/xsetenv.h: Likewise.
19782         * lib/xvasprintf.h: Likewise.
19783
19784 2007-03-08  Jim Meyering  <jim@meyering.net>
19785
19786         * users.txt: Add parted.
19787
19788         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
19789
19790 2007-03-07  Bruno Haible  <bruno@clisp.org>
19791
19792         * m4/printf.m4: Make the shell script snippets copy&pastable.
19793
19794 2007-03-02  Bruno Haible  <bruno@clisp.org>
19795
19796         * lib/netinet_in_.h: New file.
19797         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
19798         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
19799         * modules/netinet_in (Files): Add lib/netinet_in_.h.
19800         (Depends-on): Add absolute-header.
19801         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
19802         into netinet/in.h.
19803
19804 2007-03-03  Bruno Haible  <bruno@clisp.org>
19805
19806         * lib/sys_select_.h: New file.
19807         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
19808         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
19809         * modules/sys_select (Files): Add lib/sys_select_.h.
19810         (Depends-on): Add absolute-header.
19811         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
19812         into sys/select.h.
19813
19814 2007-03-02  Bruno Haible  <bruno@clisp.org>
19815
19816         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
19817         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
19818         values.
19819         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
19820         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
19821         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
19822         * modules/sys_socket (Depends-on): Add absolute-header.
19823         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
19824         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
19825         (Include): Remove requirement of inclusion of <sys/types.h>.
19826
19827 2007-03-02  Bruno Haible  <bruno@clisp.org>
19828
19829         * lib/byteswap_.h (bswap_32): Fix formula.
19830
19831 2007-03-06  Bruno Haible  <bruno@clisp.org>
19832
19833         * modules/sprintf-posix-tests: New file.
19834         * tests/test-sprintf-posix.c: New file.
19835
19836         * modules/sprintf-posix: New file.
19837         * lib/sprintf.c: New file.
19838         * m4/sprintf-posix.m4: New file.
19839         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
19840         REPLACE_SPRINTF.
19841         * lib/stdio_.h (sprintf): New declaration.
19842         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
19843         REPLACE_SPRINTF.
19844
19845 2007-03-06  Bruno Haible  <bruno@clisp.org>
19846
19847         * modules/vsprintf-posix-tests: New file.
19848         * tests/test-vsprintf-posix.c: New file.
19849         * tests/test-sprintf-posix.h: New file.
19850
19851         * modules/vsprintf-posix: New file.
19852         * lib/vsprintf.c: New file.
19853         * m4/vsprintf-posix.m4: New file.
19854         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
19855         REPLACE_VSPRINTF.
19856         * lib/stdio_.h (vsprintf): New declaration.
19857         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
19858         REPLACE_VSPRINTF.
19859
19860 2007-03-06  Bruno Haible  <bruno@clisp.org>
19861
19862         * modules/vsnprintf (Depend-on): Remove minmax.
19863
19864 2007-03-06  Bruno Haible  <bruno@clisp.org>
19865
19866         * modules/snprintf-posix-tests: New file.
19867         * tests/test-snprintf-posix.c: New file.
19868
19869         * modules/snprintf-posix: New file.
19870         * m4/snprintf-posix.m4: New file.
19871         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
19872         gl_FUNC_SNPRINTF.
19873         (gl_FUNC_SNPRINTF): Invoke it.
19874         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
19875         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
19876         is set.
19877         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
19878
19879 2007-03-06  Bruno Haible  <bruno@clisp.org>
19880
19881         * modules/vsnprintf-posix-tests: New file.
19882         * tests/test-vsnprintf-posix.c: New file.
19883         * tests/test-snprintf-posix.h: New file.
19884
19885         * modules/vsnprintf-posix: New file.
19886         * m4/vsnprintf-posix.m4: New file.
19887         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
19888         gl_FUNC_VSNPRINTF.
19889         (gl_FUNC_VSNPRINTF): Invoke it.
19890         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
19891         * lib/stdio_.h (vsnprintf): Define as a replacement if
19892         REPLACE_VSNPRINTF is set.
19893         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
19894
19895 2007-03-06  Bruno Haible  <bruno@clisp.org>
19896
19897         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
19898         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
19899
19900 2007-03-06  Bruno Haible  <bruno@clisp.org>
19901
19902         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
19903         (asinl): Declare also if HAVE_DECL_ASINL is set.
19904         (atanl): Declare also if HAVE_DECL_ATANL is set.
19905         (ceill): Declare also if HAVE_DECL_CEILL is set.
19906         (cosl): Declare also if HAVE_DECL_COSL is set.
19907         (expl): Declare also if HAVE_DECL_EXPL is set.
19908         (floorl): Declare also if HAVE_DECL_FLOORL is set.
19909         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
19910         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
19911         (logl): Declare also if HAVE_DECL_LOGL is set.
19912         (sinl): Declare also if HAVE_DECL_SINL is set.
19913         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
19914         (tanl): Declare also if HAVE_DECL_TANL is set.
19915         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
19916         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
19917         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
19918         declaration of frexpl, ldexpl.
19919         * modules/printf-frexpl (Depends-on): Add math.
19920         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
19921
19922 2007-03-05  Bruno Haible  <bruno@clisp.org>
19923
19924         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
19925         frexpl and ldexpl are declared.
19926         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
19927
19928 2007-03-05  Bruno Haible  <bruno@clisp.org>
19929
19930         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
19931         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
19932
19933 2007-03-05  Bruno Haible  <bruno@clisp.org>
19934
19935         * lib/stdio_.h: Include <stddef.h>.
19936
19937 2007-03-05  Bruno Haible  <bruno@clisp.org>
19938
19939         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
19940
19941 2007-03-05  Bruno Haible  <bruno@clisp.org>
19942
19943         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
19944         NetBSD 4, from Ralf Wildenhues.
19945
19946 2007-03-04  Bruno Haible  <bruno@clisp.org>
19947
19948         * lib/vasprintf.h: Update #if logic for the case when the functions
19949         exist but are overridden.
19950
19951 2007-03-04  Bruno Haible  <bruno@clisp.org>
19952
19953         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
19954         implementations: glibc-2.4 and MacOS X 10.3.
19955         * tests/test-vasnprintf-posix.c (test_function): Test also the case
19956         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
19957         * tests/test-vasprintf-posix.c (test_function): Likewise.
19958
19959 2007-03-04  Bruno Haible  <bruno@clisp.org>
19960
19961         * modules/vasprintf-posix-tests: New file.
19962         * tests/test-vasprintf-posix.c: New file.
19963
19964         * modules/vasprintf-posix: New file.
19965         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
19966         defined.
19967         * m4/vasprintf-posix.m4: New file.
19968         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
19969         gl_FUNC_VASPRINTF.
19970         (gl_FUNC_VASPRINTF): Invoke it.
19971         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
19972         here.
19973         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
19974
19975 2007-03-04  Bruno Haible  <bruno@clisp.org>
19976
19977         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
19978         REPLACE_GETTIMEOFDAY.
19979         * modules/sys_time (Makefile.am): Likewise.
19980         * m4/sys_time_h.m4: Likewise.
19981         * m4/gettimeofday.m4: Likewise.
19982
19983 2007-03-04  Bruno Haible  <bruno@clisp.org>
19984
19985         * modules/vasnprintf-posix-tests: New file.
19986         * tests/test-vasnprintf-posix.c: New file.
19987
19988         * modules/vasnprintf-posix: New file.
19989         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
19990         printf-frexpl.h.
19991         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
19992         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
19993         REPLACE_VASNPRINTF is defined.
19994         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
19995         gl_FUNC_VASNPRINTF.
19996         (gl_FUNC_VASNPRINTF): Invoke it.
19997         * m4/vasnprintf-posix.m4: New file.
19998         * m4/printf.m4: New file.
19999
20000 2007-03-04  Bruno Haible  <bruno@clisp.org>
20001
20002         Compile progreloc.c only if --enable-relocatable is specified.
20003         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
20004         if --enable-relocatable was specified.
20005         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
20006         lib_SOURCES.
20007
20008 2007-03-04  Jim Meyering  <jim@meyering.net>
20009
20010         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
20011         Use it consistently, rather than enumerating errno constants.
20012
20013 2007-03-04  Bruno Haible  <bruno@clisp.org>
20014
20015         * modules/xvasprintf-tests: New file.
20016         * tests/test-xvasprintf.c: New file.
20017
20018         * modules/vasprintf-tests: New file.
20019         * tests/test-vasprintf.c: New file.
20020
20021         * modules/vasnprintf-tests: New file.
20022         * tests/test-vasnprintf.c: New file.
20023
20024         * modules/vsnprintf-tests: New file.
20025         * tests/test-vsnprintf.c: New file.
20026
20027         * modules/snprintf-tests: New file.
20028         * tests/test-snprintf.c: New file.
20029
20030 2007-03-04  Bruno Haible  <bruno@clisp.org>
20031
20032         Compile relocatable.c only if --enable-relocatable is specified.
20033         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
20034         gl_RELOCATABLE_LIBRARY.
20035         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
20036         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
20037         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
20038         gl_RELOCATABLE_LIBRARY.
20039         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
20040         (Makefile.am): Remove lib_SOURCES.
20041         * modules/relocatable-lib-lgpl (configure.ac): Invoke
20042         gl_RELOCATABLE_LIBRARY.
20043         (Makefile.am): Remove lib_SOURCES.
20044         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
20045         always.
20046         * modules/relocatable-prog-wrapper (configure.ac): Invoke
20047         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
20048
20049 2007-03-04  Bruno Haible  <bruno@clisp.org>
20050
20051         * modules/argmatch-tests: New file.
20052         * tests/test-argmatch.c: New file.
20053
20054         * tests/test-allocsa.c (main): Halve the number of loop runs.
20055
20056         * modules/alloca-opt-tests: New file.
20057         * tests/test-alloca-opt.c: New file.
20058
20059 2007-03-04  Jim Meyering  <jim@meyering.net>
20060
20061         Work around difference between Linux ACLs and Solaris 10 ZFS.
20062         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
20063         for EINVAL.
20064
20065 2007-03-03  Bruno Haible  <bruno@clisp.org>
20066
20067         * modules/relocatable-prog (Depends-on): Add back progreloc's
20068         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
20069
20070 2007-03-03  Bruno Haible  <bruno@clisp.org>
20071
20072         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
20073         * modules/relocatable-lib: New file.
20074
20075 2007-03-03  Bruno Haible  <bruno@clisp.org>
20076
20077         * modules/relocatable-prog: Renamed from modules/relocatable.
20078         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
20079
20080 2007-03-03  Bruno Haible  <bruno@clisp.org>
20081
20082         * modules/relocatable-script (Files): Add doc/relocatable.texi,
20083         m4/relocatable-lib.m4.
20084         (Depends-on): Remove 'relocatable'.
20085         (configure.ac): Add gl_RELOCATABLE_NOP.
20086
20087 2007-03-03  Bruno Haible  <bruno@clisp.org>
20088
20089         * modules/relocatable-prog-wrapper: New file.
20090         * modules/relocatable (Depends-on): Add it. Remove all other
20091         dependencies except progname.
20092         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
20093
20094         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
20095         (gl_FUNC_STRERROR): Nop.
20096         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
20097
20098         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
20099         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
20100
20101         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
20102         (gl_FUNC_READLINK): Update.
20103
20104         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
20105
20106 2007-03-03  Bruno Haible  <bruno@clisp.org>
20107
20108         * lib/xreadlink.c: Include <unistd.h> unconditionally.
20109         * modules/xreadlink (Depends-on): Add unistd.
20110         * modules/xreadlink-with-size (Depends-on): Likewise.
20111
20112 2007-03-03  Bruno Haible  <bruno@clisp.org>
20113
20114         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
20115         extracted from gt_FUNC_SETENV.
20116         (gt_FUNC_SETENV): Remove macro.
20117         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
20118         remove gt_FUNC_SETENV.
20119
20120 2007-03-03  Bruno Haible  <bruno@clisp.org>
20121
20122         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
20123         ENABLE_RELOCATABLE here.
20124         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
20125
20126 2007-03-03  Bruno Haible  <bruno@clisp.org>
20127
20128         * modules/rbtreehash-list-tests (Depends-on): Add progname.
20129         * tests/test-rbtreehash_list.c: Include progname.h.
20130         (main): Call set_program_name.
20131
20132         * modules/rbtree-oset-tests (Depends-on): Add progname.
20133         * tests/test-rbtree_oset.c: Include progname.h.
20134         (main): Call set_program_name.
20135
20136         * modules/rbtree-list-tests (Depends-on): Add progname.
20137         * tests/test-rbtree_list.c: Include progname.h.
20138         (main): Call set_program_name.
20139
20140         * modules/linked-list-tests (Depends-on): Add progname.
20141         * tests/test-linked_list.c: Include progname.h.
20142         (main): Call set_program_name.
20143
20144 2007-03-03  Bruno Haible  <bruno@clisp.org>
20145
20146         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
20147         All uses of __restrict changed to _Restrict_.
20148         * lib/glob_.h (__restrict): Remove macro.
20149
20150 2007-03-02  Bruno Haible  <bruno@clisp.org>
20151
20152         * modules/gettext (configure.ac): Require gettext infrastructure
20153         from version 0.16.1.
20154
20155 2007-03-02  Bruno Haible  <bruno@clisp.org>
20156
20157         * modules/linkedhash-list-tests (Depends-on): Add progname.
20158         * tests/test-linkedhash_list.c: Include progname.h.
20159         (main): Call set_program_name.
20160
20161         * modules/carray-list-tests (Depends-on): Add progname.
20162         * tests/test-carray_list.c: Include progname.h.
20163         (main): Call set_program_name.
20164
20165         * modules/avltreehash-list-tests (Depends-on): Add progname.
20166         * tests/test-avltreehash_list.c: Include progname.h.
20167         (main): Call set_program_name.
20168
20169         * modules/avltree-oset-tests (Depends-on): Add progname.
20170         * tests/test-avltree_oset.c: Include progname.h.
20171         (main): Call set_program_name.
20172
20173         * modules/avltree-list-tests (Depends-on): Add progname.
20174         * tests/test-avltree_list.c: Include progname.h.
20175         (main): Call set_program_name.
20176
20177         * modules/array-oset-tests (Depends-on): Add progname.
20178         * tests/test-array_oset.c: Include progname.h.
20179         (main): Call set_program_name.
20180
20181         * modules/array-list-tests (Depends-on): Add progname.
20182         * tests/test-array_list.c: Include progname.h.
20183         (main): Call set_program_name.
20184
20185         * modules/argp-tests (Depends-on): Add progname.
20186         * tests/test-argp.c: Include argp.h first. Include progname.h.
20187         (main): Call set_program_name.
20188
20189 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
20190
20191         * doc/gnulib-tool.texi (Initial import): Reword description of
20192         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
20193         limited effect even if defined after the first system include.
20194
20195 2007-03-01  Bruno Haible  <bruno@clisp.org>
20196
20197         * build-aux/config.libpath: Update to libtool-1.5.22.
20198         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
20199
20200 2007-03-01  Bruno Haible  <bruno@clisp.org>
20201
20202         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
20203         foo_CFLAGS.
20204         Reported by Ralf Wildenhues.
20205
20206 2007-03-01  Bruno Haible  <bruno@clisp.org>
20207
20208         * build-aux/install-reloc: Remove object files left over by some
20209         compilers.
20210         Reported by Ralf Wildenhues.
20211
20212 2007-03-01  Bruno Haible  <bruno@clisp.org>
20213
20214         * build-aux/install-reloc: Break long lines.
20215
20216 2007-03-01  Bruno Haible  <bruno@clisp.org>
20217
20218         * doc/relocatable.texi: Document that it may not work on OpenBSD.
20219         Reported by Ralf Wildenhues.
20220
20221 2007-03-01  Bruno Haible  <bruno@clisp.org>
20222
20223         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
20224         include ordering constraints.
20225
20226 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20227
20228         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
20229         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
20230         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
20231         as another example.
20232         * lib/time_.h: Fix misspelling.
20233         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
20234         Require gl_HEADER_TIME_H_DEFAULTS.
20235         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
20236         * m4/time_r.m4 (gl_TIME_R): Likewise.
20237         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
20238
20239 2007-03-01  Bruno Haible  <bruno@clisp.org>
20240
20241         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
20242         * m4/utimens.m4 (gl_UTIMENS): Likewise.
20243
20244 2007-03-01  Jim Meyering  <jim@meyering.net>
20245
20246         * modules/xreadlink (Maintainer): Add my name.
20247         * modules/xreadlink-with-size (Depends-on): Alphabetize.
20248
20249 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
20250             Bruno Haible  <bruno@clisp.org>
20251
20252         * build-aux/install-reloc: Compile also c-ctype.c.
20253         * build-aux/relocatable.sh.in: New file.
20254         * doc/relocatable.texi: New file.
20255         * doc/relocatable-maint.texi: New file.
20256         * doc/gnulib.texi: Include relocatable-maint.texi.
20257         * lib/progreloc.c: Include unistd.h unconditionally.
20258         * lib/relocwrapper.c: Include unistd.h unconditionally.
20259         Include c-ctype.h.
20260         (add_dotbin): Use c_tolower.
20261         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
20262         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
20263         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
20264         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
20265         to m4/relocatable-lib.m4.
20266         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
20267         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
20268         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
20269         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
20270         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
20271         * modules/relocatable: New file.
20272         * modules/relocatable-lib: New file.
20273         * modules/relocatable-script: New file.
20274
20275 2007-02-28  Bruno Haible  <bruno@clisp.org>
20276
20277         Import --enable-relocatable infrastructure.
20278         * build-aux/config.libpath: New file, from GNU gettext.
20279         * build-aux/install-reloc: New file, from GNU gettext.
20280         * build-aux/reloc-ldflags: New file, from GNU gettext.
20281         * lib/relocatable.h: New file, from GNU gettext.
20282         * lib/relocatable.c: New file, from GNU gettext.
20283         * lib/relocwrapper.c: New file, from GNU gettext.
20284         * m4/relocatable.m4: New file, from GNU gettext.
20285
20286 2007-02-28  Bruno Haible  <bruno@clisp.org>
20287
20288         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
20289
20290         * modules/xreadlink: New file, from GNU gettext with modifications.
20291         * lib/xreadlink.c: New file, from GNU gettext.
20292         * lib/xreadlink.h: Add comments.
20293         (xreadlink): New declaration.
20294
20295         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
20296         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
20297         lib/xreadlink-with-size.c.
20298         (configure.ac): Remove gl_XREADLINK invocation.
20299         (Makefile.am): Augment lib_SOURCES.
20300         * m4/xreadlink.m4: Remove file.
20301         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
20302         (xreadlink_with_size): Renamed from xreadink.
20303         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
20304         * modules/canonicalize (Depends-on): Replace xreadlink with
20305         xreadlink-with-size.
20306         * lib/canonicalize.c (canonicalize_filename_mode): Update.
20307
20308 2007-02-25  Jim Meyering  <jim@meyering.net>
20309
20310         * build-aux/announce-gen: When complaining about excess arguments,
20311         list them.
20312
20313 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
20314
20315         * README: Document signed integer overflow situation more
20316         accurately.
20317
20318 2007-02-25  Bruno Haible  <bruno@clisp.org>
20319
20320         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
20321         'a' or 'A' conversion.
20322
20323 2007-02-25  Bruno Haible  <bruno@clisp.org>
20324
20325         * modules/filename: Renamed from modules/pathname.
20326         (Files): Replace lib/pathname.h with lib/filename.h. Replace
20327         lib/concatpath.c with lib/concat-filename.c.
20328         (Makefile.am): Update.
20329         (Include): Replace pathname.h with filename.h.
20330         * lib/filename.h: Renamed from lib/pathname.h.
20331         (concatenated_filename): Renamed from concatenated_pathname.
20332         * lib/concat-filename.c: Renamed from lib/concatpath.c.
20333         (concatenated_filename): Renamed from concatenated_pathname.
20334         * lib/findprog.c: Include filename.h instead of pathname.h.
20335         (find_in_path): Update.
20336         * lib/javacomp.c: Include filename.h instead of pathname.h.
20337         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
20338         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
20339         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
20340         is_oldgcj_14_13_usable, is_javac_usable): Update.
20341         * lib/javaexec.c: Include filename.h instead of pathname.h.
20342         (execute_java_class): Update.
20343         * modules/findprog: Update.
20344         * modules/javacomp: Update.
20345         * modules/javaexec: Update.
20346         * MODULES.html.sh (File system functions): Add 'filename', remove
20347         'pathname'.
20348
20349 2007-02-25  Bruno Haible  <bruno@clisp.org>
20350
20351         * modules/printf-frexpl-tests: New file.
20352         * tests/test-printf-frexpl.c: New file.
20353
20354         * modules/printf-frexpl: New file.
20355         * lib/printf-frexpl.h: New file.
20356         * lib/printf-frexpl.c: New file.
20357         * m4/printf-frexpl.m4: New file.
20358
20359 2007-02-25  Bruno Haible  <bruno@clisp.org>
20360
20361         * modules/printf-frexp-tests: New file.
20362         * tests/test-printf-frexp.c: New file.
20363
20364         * modules/printf-frexp: New file.
20365         * lib/printf-frexp.h: New file.
20366         * lib/printf-frexp.c: New file.
20367         * m4/printf-frexp.m4: New file.
20368
20369 2007-02-25  Bruno Haible  <bruno@clisp.org>
20370
20371         Assume automake >= 1.10 for the tests.
20372         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
20373         * modules/arctwo-tests: Likewise.
20374         * modules/argp-tests: Likewise.
20375         * modules/avltree-list-tests: Likewise.
20376         * modules/avltree-oset-tests: Likewise.
20377         * modules/avltreehash-list-tests: Likewise.
20378         * modules/carray-list-tests: Likewise.
20379         * modules/crc-tests: Likewise.
20380         * modules/des-tests: Likewise.
20381         * modules/gc-arcfour-tests: Likewise.
20382         * modules/gc-arctwo-tests: Likewise.
20383         * modules/gc-des-tests: Likewise.
20384         * modules/gc-hmac-md5-tests: Likewise.
20385         * modules/gc-hmac-sha1-tests: Likewise.
20386         * modules/gc-md2-tests: Likewise.
20387         * modules/gc-md4-tests: Likewise.
20388         * modules/gc-md5-tests: Likewise.
20389         * modules/gc-pbkdf2-sha1-tests: Likewise.
20390         * modules/gc-rijndael-tests: Likewise.
20391         * modules/gc-sha1-tests: Likewise.
20392         * modules/gc-tests: Likewise.
20393         * modules/getaddrinfo-tests: Likewise.
20394         * modules/hmac-md5-tests: Likewise.
20395         * modules/hmac-sha1-tests: Likewise.
20396         * modules/linked-list-tests: Likewise.
20397         * modules/linkedhash-list-tests: Likewise.
20398         * modules/lock-tests: Likewise.
20399         * modules/md2-tests: Likewise.
20400         * modules/md4-tests: Likewise.
20401         * modules/md5-tests: Likewise.
20402         * modules/rbtree-list-tests: Likewise.
20403         * modules/rbtree-oset-tests: Likewise.
20404         * modules/rbtreehash-list-tests: Likewise.
20405         * modules/read-file-tests: Likewise.
20406         * modules/rijndael-tests: Likewise.
20407         * modules/stdint-tests: Likewise.
20408         * modules/tls-tests: Likewise.
20409
20410 2007-02-24  Bruno Haible  <bruno@clisp.org>
20411
20412         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
20413         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
20414         function; instead check whether isnan with a double argument links.
20415         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
20416         function; instead check whether isnan with a 'long double' argument
20417         links.
20418         Reported by Eric Blake <ebb9@byu.net>.
20419
20420 2007-02-24  Bruno Haible  <bruno@clisp.org>
20421
20422         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
20423         defined.
20424         * lib/isnanl.c: Remove all code. Just include isnan.c.
20425         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
20426
20427 2007-02-25  Jim Meyering  <jim@meyering.net>
20428
20429         Avoid conflicting types for 'unsetenv' on FreeBSD.
20430         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
20431         conflicting with FreeBSD's (5.0 and 6.1) function declaration
20432         in stdlib.h.
20433
20434 2007-02-24  Bruno Haible  <bruno@clisp.org>
20435
20436         * modules/isnanl-nolibm-tests: New file.
20437         * tests/test-isnanl.c: New file.
20438
20439         * modules/isnanl-nolibm: New file.
20440         * lib/isnanl.h: New file.
20441         * lib/isnanl.c: New file.
20442         * m4/isnanl.m4: New file.
20443
20444 2007-02-24  Bruno Haible  <bruno@clisp.org>
20445
20446         * modules/isnan-nolibm-tests: New file.
20447         * tests/test-isnan.c: New file.
20448
20449         * modules/isnan-nolibm: New file.
20450         * lib/isnan.h: New file.
20451         * lib/isnan.c: New file.
20452         * m4/isnan.m4: New file.
20453
20454 2007-02-24  Bruno Haible  <bruno@clisp.org>
20455
20456         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
20457         assume that an exponent fits in 20 bits.
20458
20459 2007-02-24  Jim Meyering  <jim@meyering.net>
20460
20461         * m4/regex.m4: Update the description of the configure-time option,
20462         --without-included-regex, to state accurately what the defaults are,
20463         and perhaps to give people an idea why using this option is risky.
20464
20465 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
20466
20467         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
20468         loops on small arguments.  This attempts to avoid the problem
20469         Bruno Haible reported for AIX 4.3.2 in
20470         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
20471
20472 2007-02-23  Bruno Haible  <bruno@clisp.org>
20473
20474         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
20475         Needed for help2man.
20476
20477 2007-02-23  Karl Berry  <karl@gnu.org>
20478
20479         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
20480         exists, foo.h should be cvs-ignored, not committed.
20481
20482 2007-02-23  Eric Blake  <ebb9@byu.net>
20483
20484         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
20485         * lib/stat-time.h (includes): Likewise.
20486         * lib/utimecmp.c (includes): Likewise.
20487         * lib/utimens.h (includes): Likewise.
20488         * lib/getdate.y (includes): Also include "timespec.h" for use
20489         internal to the module.
20490         * modules/utimens (Depends-on): Revert yesterday's patch.
20491         * modules/nanosleep (Depends-on): Add missing dependency.
20492
20493 2007-02-22  Bruno Haible  <bruno@clisp.org>
20494
20495         * lib/glob.c: Don't include getlogin_r.h.
20496
20497 2007-02-22  Jim Meyering  <jim@meyering.net>
20498
20499         * modules/utimens (Depends-on): Add timespec, required for
20500         utimens.h's inclusion of timespec.h.
20501
20502 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
20503
20504         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
20505         long unreadable paths in GNU/Linux.  Problem reported by Andreas
20506         Schwab in
20507         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
20508         I'll try to think of a better way to fix the Solaris problem.
20509
20510         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
20511         like glibc; on Solaris 10, it fails with errno == EINVAL.
20512         POSIX says the behavior is unspecified if the first argument is NULL,
20513         so play it safe and never pass NULL to the system getcwd.
20514
20515 2007-02-21  Jim Meyering  <jim@meyering.net>
20516
20517         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
20518         of gettimeofday.  It would conflict with the one now always
20519         provided via sys_time_.h.  Reported by Matthew Woehlke, as
20520         an IRIX 6.5 build failure.
20521
20522 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
20523
20524         Minor fixups to port to Solaris 10 with Sun C 5.8.
20525         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
20526         * modules/getcwd (Depends-on): Add dirfd.
20527         * lib/putenv.c (putenv): #undef it.
20528         (rpl_putenv): New decl.
20529         (malloc, free): Include <stdlib.h> rather than prototyping separately.
20530
20531 2007-02-20  Bruno Haible  <bruno@clisp.org>
20532
20533         * modules/stdio-tests: New file.
20534         * tests/test-stdio.c: New file.
20535
20536         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
20537         (Depends-on): Add stdio.
20538         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
20539         (Include): Use <stdio.h> instead of vsnprintf.h.
20540         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
20541         HAVE_DECL_VSNPRINTF.
20542         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
20543
20544         * modules/snprintf (Files): Remove lib/snprintf.h.
20545         (Depends-on): Add stdio.
20546         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
20547         (Include): Use <stdio.h> instead of snprintf.h.
20548         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
20549         HAVE_DECL_SNPRINTF.
20550         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
20551         * lib/getaddrinfo.c: Likewise.
20552
20553         * modules/stdio: New file.
20554         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
20555         * lib/snprintf.h: Remove file.
20556         * lib/vsnprintf.h: Remove file.
20557         * lib/.cppi-disable: Remove snprintf.h.
20558         * m4/stdio_h.m4: New file.
20559         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
20560
20561 2007-02-20  Jim Meyering  <jim@meyering.net>
20562
20563         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
20564         used by e.g., mingw.  From Bruno Haible.
20565
20566 2007-02-19  Bruno Haible  <bruno@clisp.org>
20567
20568         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
20569         warnings.
20570         Reported by Ben Pfaff <blp@cs.stanford.edu>.
20571
20572 2007-02-19  Bruno Haible  <bruno@clisp.org>
20573
20574         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
20575         from mingw users.
20576
20577 2007-02-19  Bruno Haible  <bruno@clisp.org>
20578
20579         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
20580         warnings.
20581         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
20582
20583 2007-02-19  Jim Meyering  <jim@meyering.net>
20584
20585         Don't use FD after a successful "fdopendir (fd)".
20586         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
20587         Reset it by calling dirfd on the just-obtained DIR*.
20588
20589         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
20590         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
20591
20592 2007-02-18  Bruno Haible  <bruno@clisp.org>
20593
20594         * lib/readlink.c: Include <unistd.h>.
20595         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
20596         HAVE_READLINK.
20597         * modules/readlink (Depends-on): Add unistd.
20598         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20599         (Include): Add <unistd.h>.
20600
20601         * lib/getlogin_r.h: Remove file.
20602         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
20603         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
20604         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
20605         HAVE_DECL_GETLOGIN_R.
20606         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
20607         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20608         (Include): Use <unistd.h> instead of getlogin_r.h.
20609
20610         * lib/getcwd.h: Remove file.
20611         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
20612         * lib/xgetcwd.c: Likewise.
20613         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
20614         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
20615         * modules/getcwd (Files): Remove lib/getcwd.h.
20616         (Depends-on): Add unistd.
20617         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20618         (Include): Use <unistd.h> instad of getcwd.h.
20619
20620         * lib/ftruncate.c: Include <unistd.h> first.
20621         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
20622         Set HAVE_FTRUNCATE.
20623         * modules/ftruncate (Depends-on): Add unistd.
20624         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20625
20626         * lib/fchdir.c: Include <unistd.h> first.
20627         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
20628         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
20629         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
20630         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20631         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
20632
20633         * lib/dup2.c: Include <unistd.h> first.
20634         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
20635         HAVE_DUP2.
20636         * modules/dup2 (Depends-on): Add unistd.
20637         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20638
20639         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
20640         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
20641         REPLACE_CHOWN. Don't define chown as a macro here.
20642         * modules/chown (Depends-on): Add unistd.
20643         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20644
20645         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
20646         Add definition for GL_LINK_WARNING.
20647         (chown, dup2): New declarations.
20648         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
20649         link warning.
20650         (ftruncate): New declaration.
20651         (getcwd): New declaration, taken from old getcwd.h.
20652         (getlogin_r): New declaration, taken from old getlogin_r.h.
20653         (readlink): New declaration.
20654         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
20655         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
20656         (gl_PREREQ_UNISTD): Remove macro.
20657         (gl_UNISTD_MODULE_INDICATOR): New macro.
20658         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
20659         many new variables. Don't set UNISTD_H.
20660         * modules/unistd (Description): Change.
20661         (Depends-on): Add link-warning.
20662         (configure.ac): Update.
20663         (Makefile.am): Create unistd.h always. Substitute many new variables
20664         into it.
20665
20666 2007-02-18  Bruno Haible  <bruno@clisp.org>
20667
20668         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
20669         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
20670         HAVE_GETSUBOPT.
20671         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
20672         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
20673         * lib/getsubopt.h: Remove file.
20674         * modules/getsubopt (Files): Remove lib/getsubopt.h.
20675         (Depends-on): Add stdlib.
20676         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20677         (Includes): Use <stdlib.h> instead of getsubopt.h.
20678         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
20679         Set HAVE_GETSUBOPT.
20680         * lib/getsubopt.c: Don't include getsubopt.h.
20681
20682 2007-02-18  Bruno Haible  <bruno@clisp.org>
20683
20684         * modules/fchdir (Depends-on): Add dup2.
20685
20686 2007-02-18  Bruno Haible  <bruno@clisp.org>
20687
20688         * lib/stdlib_.h: Handle glibc's special invocation convention
20689         specially.
20690
20691 2007-02-18  Bruno Haible  <bruno@clisp.org>
20692
20693         * modules/stdlib-tests: New file.
20694         * tests/test-stdlib.c: New file.
20695
20696         * modules/mkstemp (Files): Remove lib/mkstemp.h.
20697         (Depends-on): Add stdlib.
20698         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20699         (Includes): Use <stdlib.h> instead of mkstemp.h.
20700         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
20701         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
20702         * lib/mkstemp.c: Don't include mkstemp.h.
20703         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
20704         * lib/stdlib--.h: Don't include mkstemp.h.
20705
20706         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
20707         (Depends-on): Add stdlib.
20708         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20709         (Includes): Use <stdlib.h> instead of mkdtemp.h.
20710         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
20711         HAVE_MKDTEMP.
20712         * lib/mkdtemp.c: Don't include mkdtemp.h.
20713         * lib/clean-temp.c: Don't include mkdtemp.h.
20714
20715         * modules/exit (Files): Remove lib/exit.h.
20716         (Depends-on): Add stdlib.
20717         (Makefile.am): Remove lib_SOURCES.
20718         (Include): Use <stdlib.h> instead of exit.h.
20719         * lib/argmatch.c: Don't include exit.h.
20720         * lib/execute.c: Likewise.
20721         * lib/pagealign_alloc.c: Likewise.
20722         * lib/pipe.c: Likewise.
20723         * lib/wait-process.c: Likewise.
20724         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
20725         * lib/exitfail.c: Likewise.
20726         * lib/savewd.c: Likewise.
20727         * lib/xsetenv.c: Likewise.
20728
20729         * modules/stdlib: New file.
20730         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
20731         and extra comments about mkstemp().
20732         * lib/exit.h: Remove file.
20733         * lib/mkdtemp.h: Remove file.
20734         * lib/mkstemp.h: Remove file.
20735         * m4/stdlib_h.m4: New file.
20736         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
20737
20738 2007-02-18  Bruno Haible  <bruno@clisp.org>
20739
20740         * modules/math-tests: New file.
20741         * tests/test-math.c: New file.
20742
20743         * modules/math: New file.
20744         * modules/mathl (Files): Remove lib/mathl.h.
20745         (Depends-on): Add math.
20746         (Makefile.am): Don't mention mathl.h.
20747         (Include): Use <math.h> instead of mathl.h.
20748         * lib/math_.h: New file.
20749         * lib/mathl.h: Remove file.
20750         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
20751         mathl.h.
20752         * lib/asinl.c: Likewise.
20753         * lib/atanl.c: Likewise.
20754         * lib/ceill.c: Likewise.
20755         * lib/cosl.c: Likewise.
20756         * lib/expl.c: Likewise.
20757         * lib/floorl.c: Likewise.
20758         * lib/frexpl.c: Likewise.
20759         * lib/ldexpl.c: Likewise.
20760         * lib/logl.c: Likewise.
20761         * lib/sincosl.c: Likewise.
20762         * lib/sinl.c: Likewise.
20763         * lib/sqrtl.c: Likewise.
20764         * lib/tanl.c: Likewise.
20765         * lib/trigl.c: Likewise.
20766         * m4/math_h.m4: New file.
20767         * MODULES.html.sh (Mathematics): Add math.
20768
20769 2007-02-17  Bruno Haible  <bruno@clisp.org>
20770
20771         * modules/wctype-tests: New file.
20772         * tests/test-wctype.c: New file.
20773
20774         * modules/wchar-tests: New file.
20775         * tests/test-wchar.c: New file.
20776
20777         * modules/unistd-tests: New file.
20778         * tests/test-unistd.c: New file.
20779
20780         * modules/time-tests: New file.
20781         * tests/test-time.c: New file.
20782
20783         * modules/sysexits-tests: New file.
20784         * tests/test-sysexits.c: New file.
20785
20786         * modules/sys_time-tests: New file.
20787         * tests/test-sys_time.c: New file.
20788
20789         * modules/sys_stat-tests: New file.
20790         * tests/test-sys_stat.c: New file.
20791
20792         * modules/sys_socket-tests: New file.
20793         * tests/test-sys_socket.c: New file.
20794
20795         * modules/sys_select-tests: New file.
20796         * tests/test-sys_select.c: New file.
20797
20798         * modules/string-tests: New file.
20799         * tests/test-string.c: New file.
20800
20801         * modules/stdbool-tests: New file.
20802         * tests/test-stdbool.c: New file.
20803
20804         * modules/netinet_in-tests: New file.
20805         * tests/test-netinet_in.c: New file.
20806
20807         * modules/inttypes-tests: New file.
20808         * tests/test-inttypes.c: New file.
20809
20810         * modules/fcntl-tests: New file.
20811         * tests/test-fcntl.c: New file.
20812
20813         * modules/byteswap-tests: New file.
20814         * tests/test-byteswap.c: New file.
20815
20816         * modules/arpa_inet-tests: New file.
20817         * tests/test-arpa_inet.c: New file.
20818
20819 2007-02-17  Bruno Haible  <bruno@clisp.org>
20820
20821         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
20822         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
20823         if the corresponding module is not enabled. Emit link warnings if
20824         the function is used nevertheless.
20825         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
20826         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
20827         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
20828         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
20829         * modules/inttypes (Depends-on): Add link-warning.
20830         (Makefile.am): Copy the contents of build-aux/link-warning.h into
20831         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
20832         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
20833         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
20834         * modules/imaxdiv (configure.ac): Likewise.
20835         * modules/strtoimax (configure.ac): Likewise.
20836         * modules/strtoumax (configure.ac): Likewise.
20837
20838 2007-02-17  Bruno Haible  <bruno@clisp.org>
20839
20840         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
20841         gl_STRING_MODULE_INDICATOR_DEFAULTS.
20842         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
20843         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
20844
20845 2007-02-17  Bruno Haible  <bruno@clisp.org>
20846
20847         * modules/link-warning: New file.
20848         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
20849         * lib/string_.h (GL_LINK_WARNING): Remove definition.
20850         * modules/string (Depends-on): Add link-warning.
20851         (Makefile.am): Copy the contents of build-aux/link-warning.h into
20852         string.h.
20853         * MODULES.html.sh (Support for building libraries and executables): Add
20854         link-warning.
20855
20856 2007-02-17  Bruno Haible  <bruno@clisp.org>
20857
20858         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
20859         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
20860         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
20861         long lines.
20862
20863 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
20864             Bruno Haible  <bruno@clisp.org>
20865
20866         * modules/tmpfile: New file.
20867         * lib/tmpfile.c: New file.
20868         * m4/tmpfile.m4: New file.
20869         * MODULES.html.sh (func_all_modules): New section "Input/output".
20870
20871 2007-02-15  Bruno Haible  <bruno@clisp.org>
20872
20873         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
20874         (supports_delete_on_close): New function.
20875         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
20876
20877 2007-02-14  Bruno Haible  <bruno@clisp.org>
20878
20879         * modules/mbspcasecmp-tests: New file.
20880         * tests/test-mbspcasecmp.sh: New file.
20881         * tests/test-mbspcasecmp.c: New file.
20882
20883         New module mbspcasecmp.
20884         * modules/mbspcasecmp: New file.
20885         * lib/mbspcasecmp.c: New file.
20886         * lib/string_.h (strncasecmp): Change warning message.
20887         (mbspcasecmp): New declaration.
20888         * m4/mbspcasecmp.m4: New file.
20889         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
20890         GNULIB_MBSPCASECMP.
20891         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
20892         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
20893
20894 2007-02-14  Bruno Haible  <bruno@clisp.org>
20895
20896         * modules/mbsncasecmp-tests: New file.
20897         * tests/test-mbsncasecmp.sh: New file.
20898         * tests/test-mbsncasecmp.c: New file.
20899
20900         New module mbsncasecmp.
20901         * modules/mbsncasecmp: New file.
20902         * lib/mbsncasecmp.c: New file.
20903         * lib/string_.h (mbsncasecmp): New declaration.
20904         * m4/mbsncasecmp.m4: New file.
20905         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
20906         GNULIB_MBSNCASECMP.
20907         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
20908         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
20909
20910 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
20911
20912         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
20913         Verify that it doesn't overlap with our flags.
20914         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
20915         do not have the desired effect in multibyte locales; instead, use
20916         mbscasecmp.
20917         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
20918         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
20919         we don't require GNU fnmatch ourselves (if our users require it, they
20920         should do so explicitly).
20921
20922         Fix regex code so it doesn't rely on strcasecmp.
20923         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
20924         Otherwise, include gnulib's langinfo.h.
20925         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
20926         undesirable behavior in non-C locales.  Instead, rely on localecharset.
20927         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
20928         * modules/regex (FILES): Remove m4/codeset.m4.
20929         (Depends-on): Add localcharset.  Remove strcase.
20930
20931 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20932
20933         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
20934         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
20935
20936 2007-02-13  Bruno Haible  <bruno@clisp.org>
20937
20938         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
20939         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20940
20941 2007-02-12  Bruno Haible  <bruno@clisp.org>
20942
20943         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
20944         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
20945         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
20946         time warning rather than a link error.
20947
20948 2007-02-12  Bruno Haible  <bruno@clisp.org>
20949
20950         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
20951         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
20952         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20953
20954 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
20955
20956         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
20957         args, not 2.
20958
20959 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
20960
20961         New module 'time', so that apps can include <time.h> as per
20962         POSIX and GNU instead of separate include files like time_r.h
20963         and timegm.h.  This implementation tries out a simpler approach
20964         for replacing decls in standard include files (as compared to
20965         the string module), somewhat as an experiment.
20966
20967         * config/srclist.txt: Comment out mktime.c for now.
20968         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
20969         since it doesn't apply any more.  Use generic wording instead.
20970         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
20971         'time'.
20972         * lib/time_.h, m4/time_h.m4, modules/time: New files.
20973         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
20974         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
20975         Don't include <sys/types.h>; no longer needed since we assume C89.
20976         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
20977         * lib/strftime.c: Likewise.
20978         * lib/time_r.c: Likewise.
20979         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
20980         * lib/nanosleep.c: Include <time.h> first, to check interface.
20981         * lib/strptime.c: Likewise.
20982         * lib/time_r.c: Likewise.
20983         * lib/timegm.c: Likewise.
20984         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
20985         needed.
20986         * lib/timegm.c: Don't include timegm.h; no longer needed.
20987         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
20988         time.h now handles any problems in that area.
20989         (struct timespec, nanosleep): Remove; time.h now arranges for these.
20990         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
20991         that time.h defines struct timespec.
20992         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
20993         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
20994         handles that.
20995         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
20996         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
20997         needed.  Set REPLACE_LOCALTIME.
20998         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
20999         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
21000         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
21001         nanosleep; time_h.m4 now does that.  Don't require
21002         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
21003         module handles this now.
21004         * modules/getdate (Depends-on): Remove timespec.  Add time.
21005         * modules/nanosleep (Depends-on): Likewise.
21006         * modules/stat-time (Depends-on): Likewise.
21007         * modules/nanosleep (Include): Include time.h, not timespec.h.
21008         * modules/strptime (Files): Remove lib/strptime.h.
21009         (Depends-on): Add extensions, time.
21010         (Include): Include time.h, not strptime.h.
21011         * modules/time_r (Files): Remove lib/time_r.h.
21012         (Depends-on): Add time.
21013         (Include): Include time.h, not time_r.h.
21014         * modules/timegm: Likewise.
21015         * modules/timespec (Description): Now does timespec-related decls
21016         of our own, instead of struct timespec itself.
21017         (Depends-on): Add time; remove extensions.
21018         (Maintainer): Add self.
21019         * modules/utimecmp (Depends-on): Add time; remove timespec.
21020         * modules/utimens (Depends-on): Likewise.
21021         * modules/xnanosleep (Depends-on): Likewise.
21022
21023 2007-02-11  Bruno Haible  <bruno@clisp.org>
21024
21025         * lib/c-strstr.c: Include allocsa.h.
21026         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
21027         * lib/c-strcasestr.c: Include allocsa.h.
21028         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
21029         * lib/strcasestr.c: Include allocsa.h.
21030         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
21031         * lib/mbsstr.c: Include allocsa.h.
21032         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
21033         allocsa/freesa instead of malloc/free.
21034         * lib/mbscasestr.c: Include allocsa.h.
21035         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
21036         allocsa/freesa instead of malloc/free.
21037         * modules/c-strstr (Depends-on): Add allocsa.
21038         * modules/c-strcasestr (Depends-on): Likewise.
21039         * modules/strcasestr (Depends-on): Likewise.
21040         * modules/mbsstr (Depends-on): Likewise.
21041         * modules/mbscasestr (Depends-on): Likewise.
21042
21043 2007-02-11  Bruno Haible  <bruno@clisp.org>
21044
21045         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
21046
21047         * modules/mbsspn-tests: New file.
21048         * tests/test-mbsspn.sh: New file.
21049         * tests/test-mbsspn.c: New file.
21050
21051 2007-02-11  Bruno Haible  <bruno@clisp.org>
21052
21053         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
21054
21055         * modules/mbspbrk-tests: New file.
21056         * tests/test-mbspbrk.sh: New file.
21057         * tests/test-mbspbrk.c: New file.
21058
21059 2007-02-11  Bruno Haible  <bruno@clisp.org>
21060
21061         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
21062         unneeded cast.
21063
21064         * modules/mbscspn-tests: New file.
21065         * tests/test-mbscspn.sh: New file.
21066         * tests/test-mbscspn.c: New file.
21067
21068 2007-02-11  Bruno Haible  <bruno@clisp.org>
21069
21070         * modules/mbscasecmp-tests: New file.
21071         * tests/test-mbscasecmp.sh: New file.
21072         * tests/test-mbscasecmp.c: New file.
21073
21074 2007-02-11  Bruno Haible  <bruno@clisp.org>
21075
21076         Ensure O(n) worst-case complexity of mbscasestr.
21077         * lib/mbscasestr.c: Include stdbool.h.
21078         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
21079         functions.
21080         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
21081         the bookkeeping indicates that it's worth it.
21082         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
21083
21084         * modules/mbscasestr-tests: New file.
21085         * tests/test-mbscasestr1.c: New file.
21086         * tests/test-mbscasestr2.sh: New file.
21087         * tests/test-mbscasestr2.c: New file.
21088         * tests/test-mbscasestr3.sh: New file.
21089         * tests/test-mbscasestr3.c: New file.
21090         * tests/test-mbscasestr4.sh: New file.
21091         * tests/test-mbscasestr4.c: New file.
21092         * m4/locale-tr.m4: New file.
21093
21094 2007-02-11  Bruno Haible  <bruno@clisp.org>
21095
21096         Ensure O(n) worst-case complexity of mbsstr.
21097         * lib/mbsstr.c: Include stdbool.h.
21098         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
21099         functions.
21100         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
21101         bookkeeping indicates that it's worth it.
21102         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
21103
21104         * modules/mbsstr-tests: New file.
21105         * tests/test-mbsstr1.c: New file.
21106         * tests/test-mbsstr2.sh: New file.
21107         * tests/test-mbsstr2.c: New file.
21108         * tests/test-mbsstr3.sh: New file.
21109         * tests/test-mbsstr3.c: New file.
21110         * m4/locale-fr.m4: New file.
21111
21112 2007-02-11  Bruno Haible  <bruno@clisp.org>
21113
21114         * lib/mbsrchr.c (mbsrchr): Fix bug.
21115
21116         * modules/mbsrchr-tests: New file.
21117         * tests/test-mbsrchr.sh: New file.
21118         * tests/test-mbsrchr.c: New file.
21119
21120 2007-02-11  Bruno Haible  <bruno@clisp.org>
21121
21122         * lib/mbschr.c (mbschr): Fix bug.
21123
21124         * modules/mbschr-tests: New file.
21125         * tests/test-mbschr.sh: New file.
21126         * tests/test-mbschr.c: New file.
21127         * m4/locale-zh.m4: New file.
21128
21129 2007-02-11  Bruno Haible  <bruno@clisp.org>
21130
21131         Support for copying multibyte string iterators.
21132         * lib/mbiter.h: Include <string.h>.
21133         (mbiter_multi_copy): New function.
21134         (mbi_copy): New macro.
21135         * lib/mbuiter.h: Include <string.h>.
21136         (mbuiter_multi_copy): New function.
21137         (mbui_copy): New macro.
21138
21139 2007-02-11  Bruno Haible  <bruno@clisp.org>
21140
21141         New module mbslen.
21142         * modules/mbslen: New file.
21143         * lib/mbslen.c: New file.
21144         * lib/string_.h (mbslen): New declaration.
21145         * m4/mbslen.m4: New file.
21146         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21147         GNULIB_MBSLEN.
21148         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
21149         * MODULES.html.sh (Internationalization functions): Add mbslen.
21150
21151 2007-02-11  Bruno Haible  <bruno@clisp.org>
21152
21153         Ensure O(n) worst-case complexity of strcasestr substitute.
21154         * lib/strcasestr.c: Include stdbool.h.
21155         (knuth_morris_pratt): New function.
21156         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
21157         bookkeeping indicates that it's worth it.
21158         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
21159
21160         * modules/strcasestr-tests: New file.
21161         * tests/test-strcasestr.c: New file.
21162
21163 2007-02-11  Bruno Haible  <bruno@clisp.org>
21164
21165         Ensure O(n) worst-case complexity of c_strcasestr.
21166         * lib/c-strcasestr.c: Include stdbool.h, string.h.
21167         (knuth_morris_pratt): New function.
21168         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
21169         the bookkeeping indicates that it's worth it.
21170         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
21171
21172         * modules/c-strcasestr-tests: New file.
21173         * tests/test-c-strcasestr.c: New file.
21174
21175 2007-02-11  Bruno Haible  <bruno@clisp.org>
21176
21177         Ensure O(n) worst-case complexity of c_strstr.
21178         * lib/c-strstr.c: Include stdbool.h, string.h.
21179         (knuth_morris_pratt): New function.
21180         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
21181         bookkeeping indicates that it's worth it.
21182         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
21183
21184         * lib/c-strstr.c: Complete rewrite for maintainability.
21185
21186         * modules/c-strstr-tests: New file.
21187         * tests/test-c-strstr.c: New file.
21188
21189 2007-02-11  Bruno Haible  <bruno@clisp.org>
21190
21191         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
21192         5.2.1 and earlier, whereby \055 was treated just like the range
21193         delimiter '-'.
21194         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
21195
21196 2007-02-08  Bruno Haible  <bruno@clisp.org>
21197
21198         * modules/regex (Depends-on): Add stdbool.
21199         Reported by Dalibor Topic <robilad@kaffe.org>.
21200
21201 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
21202
21203         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
21204         Prefer returning from main to exiting from it.
21205         Remove unnecessary parens after sizeof.
21206
21207 2007-02-05  Bruno Haible  <bruno@clisp.org>
21208
21209         New module mbssep.
21210         * modules/mbssep: New file.
21211         * lib/mbssep.c: New file.
21212         * lib/string_.h (strsep): Add a conditional link warning.
21213         (mbssep): New declaration.
21214         * m4/mbssep.m4: New file.
21215         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21216         GNULIB_MBSSEP.
21217         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
21218         * MODULES.html.sh (Internationalization functions): Add mbssep.
21219
21220 2007-02-05  Bruno Haible  <bruno@clisp.org>
21221
21222         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
21223         Optimize search in case of 1 delimiter.
21224
21225 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
21226
21227         * lib/acl.h: Include sys/types.h before sys/acl.h.
21228
21229 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
21230
21231         Merge upstream fix for glibc bugzilla #3957:
21232
21233         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
21234
21235         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
21236         bit for RE_HAT_LISTS_NOT_NEWLINE.
21237         (build_charclass_op): Remove bogus comment.
21238
21239 2007-02-05  Simon Josefsson  <simon@josefsson.org>
21240
21241         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
21242
21243 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
21244
21245         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
21246         * lib/memmem.c [!defined _LIBC]: Include config.h.
21247
21248 2007-02-04  Bruno Haible  <bruno@clisp.org>
21249
21250         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
21251         warning message.
21252
21253 2007-02-04  Bruno Haible  <bruno@clisp.org>
21254
21255         New module mbstok_r.
21256         * modules/mbstok_r: New file.
21257         * lib/mbstok_r.c: New file.
21258         * lib/string_.h (strtok_r): Change argument names to match the
21259         comments. Add a conditional link warning.
21260         (mbstok_r): New declaration.
21261         * m4/mbstok_r.m4: New file.
21262         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21263         GNULIB_MBSTOK_R.
21264         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
21265         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
21266
21267 2007-02-04  Bruno Haible  <bruno@clisp.org>
21268
21269         New module mbsspn.
21270         * modules/mbsspn: New file.
21271         * lib/mbsspn.c: New file.
21272         * lib/string_.h (strspn): Add a conditional link warning.
21273         (mbsspn): New declaration.
21274         * m4/mbsspn.m4: New file.
21275         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21276         GNULIB_MBSSPN.
21277         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
21278         * MODULES.html.sh (Internationalization functions): Add mbsspn.
21279
21280 2007-02-04  Bruno Haible  <bruno@clisp.org>
21281
21282         New module mbspbrk.
21283         * modules/mbspbrk: New file.
21284         * lib/mbspbrk.c: New file.
21285         * lib/string_.h (strpbrk): Add a conditional link warning.
21286         (mbspbrk): New declaration.
21287         * m4/mbspbrk.m4: New file.
21288         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21289         GNULIB_MBSPBRK.
21290         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
21291         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
21292
21293 2007-02-04  Bruno Haible  <bruno@clisp.org>
21294
21295         New module mbscspn.
21296         * modules/mbscspn: New file.
21297         * lib/mbscspn.c: New file.
21298         * lib/string_.h (strcspn): Add a conditional link warning.
21299         (mbscspn): New declaration.
21300         * m4/mbscspn.m4: New file.
21301         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21302         GNULIB_MBSCSPN.
21303         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
21304         * MODULES.html.sh (Internationalization functions): Add mbscspn.
21305
21306 2007-02-04  Bruno Haible  <bruno@clisp.org>
21307
21308         New module mbscasestr, reduced goal of strcasestr.
21309         * modules/mbscasestr: New file.
21310         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
21311         (mbscasestr): Renamed from strcasestr.
21312         * lib/strcasestr.c: Don't include mbuiter.h.
21313         (strcasestr): Remove support for multibyte locales.
21314         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
21315         Change the conditional link warning.
21316         (mbscasestr): New declaration.
21317         * m4/mbscasestr.m4: New file.
21318         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
21319         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
21320         REPLACE_STRCASESTR.
21321         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
21322         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21323         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
21324         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
21325         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
21326         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
21327         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
21328         (Depends-on): Remove mbuiter.
21329         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
21330
21331 2007-02-04  Bruno Haible  <bruno@clisp.org>
21332
21333         Simplify handling of strncasecmp.
21334         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
21335         the conditional link warning.
21336         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21337         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
21338         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
21339         * modules/strcase (configure.ac): Don't invoke
21340         gl_STRING_MODULE_INDICATOR.
21341         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
21342
21343 2007-02-04  Bruno Haible  <bruno@clisp.org>
21344
21345         New module mbscasecmp, reduced goal of strcasecmp.
21346         * modules/mbscasecmp: New file.
21347         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
21348         (mbscasecmp): Renamed from strcasecmp.
21349         * lib/strcasecmp.c: Don't include mbuiter.h.
21350         (strcasecmp): Remove support for multibyte locales.
21351         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
21352         Change the conditional link warning.
21353         (mbscasecmp): New declaration.
21354         * m4/mbscasecmp.m4: New file.
21355         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
21356         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
21357         REPLACE_STRCASECMP.
21358         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
21359         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21360         GNULIB_MBSCASECMP.
21361         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
21362         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
21363         * modules/strcase (Files): Remove m4/mbrtowc.m4.
21364         (Depends-on): Remove mbuiter.
21365         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
21366
21367 2007-02-04  Bruno Haible  <bruno@clisp.org>
21368
21369         New module mbsstr. Remove module strstr.
21370         * modules/mbsstr: New file.
21371         * modules/strstr: Remove file.
21372         * lib/mbsstr.c: Renamed from lib/strstr.c.
21373         (mbsstr): Renamed from strstr.
21374         * lib/string_.h (strstr): Remove declaration. Change the conditional
21375         link warning.
21376         (mbsstr): New declaration.
21377         * m4/mbsstr.m4: New file.
21378         * m4/strstr.m4: Remove file.
21379         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
21380         REPLACE_STRSTR.
21381         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
21382         Don't initialize GNULIB_STRSTR.
21383         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
21384         substitute GNULIB_STRSTR and REPLACE_STRSTR.
21385         * MODULES.html.sh (Internationalization functions): Add mbsstr.
21386         (Support for systems lacking ANSI C 89): Remove strstr.
21387
21388 2007-02-04  Bruno Haible  <bruno@clisp.org>
21389
21390         New module mbsrchr.
21391         * modules/mbsrchr: New file.
21392         * lib/mbsrchr.c: New file.
21393         * lib/string_.h (strrchr): Add a conditional link warning.
21394         (mbsrchr): New declaration.
21395         * m4/mbsrchr.m4: New file.
21396         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21397         GNULIB_MBSRCHR.
21398         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
21399         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
21400
21401 2007-02-04  Bruno Haible  <bruno@clisp.org>
21402
21403         New module mbschr.
21404         * modules/mbschr: New file.
21405         * lib/mbschr.c: New file.
21406         * lib/string_.h (strchr): Add a conditional link warning.
21407         (mbschr): New declaration.
21408         * m4/mbschr.m4: New file.
21409         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
21410         GNULIB_MBSCHR.
21411         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
21412         * MODULES.html.sh (Internationalization functions): Add mbschr.
21413
21414 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
21415
21416         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
21417
21418         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
21419
21420 2007-02-04  Bruno Haible  <bruno@clisp.org>
21421
21422         New module description section 'configure.ac-early'.
21423         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
21424         (func_get_autoconf_early_snippet): New function.
21425         (func_import, func_create_testdir): Use it. Remove special cases for
21426         modules 'extensions' and 'lock'.
21427         * modules/extensions (configure.ac-early): Require
21428         gl_USE_SYSTEM_EXTENSIONS.
21429         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
21430
21431 2007-02-04  Bruno Haible  <bruno@clisp.org>
21432
21433         Make use of gcj-4.3's -fsource and -ftarget option.
21434         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
21435         and if so try the options -fsource and -ftarget.
21436         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
21437         source_version, ftarget_option, target_version arguments.
21438         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
21439         (is_envjavac_oldgcj_14_14_usable): Renamed from
21440         is_envjavac_gcj_14_14_usable.
21441         (is_envjavac_oldgcj_14_13_usable): Renamed from
21442         is_envjavac_gcj_14_13_usable.
21443         (is_gcj_present): Update.
21444         (is_gcj_43, is_gcj43_usable): New functions.
21445         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
21446         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
21447         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
21448         try the options -fsource and -ftarget.
21449
21450 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
21451
21452         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
21453         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
21454         larger value.
21455
21456 2007-02-03  Jim Meyering  <jim@meyering.net>
21457
21458         Give tools a better chance to allocate space for very large buffers.
21459         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
21460
21461         Make pwd and readlink work also when run with an unreadable parent dir
21462         on systems with openat support.
21463         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
21464         provided getcwd function, even when we have openat support.
21465         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
21466
21467 2007-02-02  Bruno Haible  <bruno@clisp.org>
21468
21469         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
21470         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
21471         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
21472         portability problems if one of these functions is only used on specific
21473         platforms.
21474         Reported by Paul Eggert.
21475
21476 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
21477
21478         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
21479         is causing more trouble than it's curing.
21480         * lib/regex_internal.h (__mempcpy): Remove.
21481         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
21482         (and make the code a tad smaller to boot).
21483         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
21484
21485 2007-02-02  Jim Meyering  <jim@meyering.net>
21486
21487         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
21488         section, not in the Makefile.am: one.
21489
21490 2007-02-02  Eric Blake  <ebb9@byu.net>
21491
21492         * lib/strchrnul.c: Always include config.h first.
21493
21494         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
21495         gnulib strstr is not necessary here.
21496
21497 2007-02-02  Simon Josefsson  <simon@josefsson.org>
21498
21499         * m4/socklen.m4: Fix typo.
21500
21501 2007-02-02  Eric Blake  <ebb9@byu.net>
21502
21503         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
21504         * modules/netinet_in (Makefile.am): Likewise.
21505
21506 2007-02-01  Bruno Haible  <bruno@clisp.org>
21507
21508         * lib/string_.h (GL_LINK_WARNING): New macro.
21509         (strcasecmp, strstr, strcasestr): If provided by the system,
21510         conditionally define as a macro that leads to a warning instead of to
21511         an error.
21512         (strncasecmp): Conditionally define as a macro that leads to a warning.
21513
21514 2007-02-01  Karl Berry  <karl@gnu.org>
21515
21516         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
21517
21518 2007-02-01  Bruno Haible  <bruno@clisp.org>
21519
21520         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
21521         renamings.
21522
21523 2007-02-01  Eric Blake  <ebb9@byu.net>
21524
21525         * modules/regex (Depends-on): Revert dependence on mempcpy.
21526         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
21527         module's definition of mempcpy.
21528         Reported by Paul Eggert.
21529
21530 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
21531
21532         * lib/string_.h: If the gnulib module XYZ is not present, undefine
21533         the symbol XYZ before redefining it.  This fixes a problem with
21534         programs that don't use XYZ, when compiled on systems that define
21535         XYZ to something else.
21536
21537 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
21538
21539         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
21540         occurs when "mkdir -m foo" creates a setgid directory that is (1)
21541         writeable to group or other and (2) is intended to have a special
21542         mode bit that is set or cleared.  In such a case, the directory
21543         should be neither group- nor other-writeable until the special
21544         mode bits are right.
21545
21546 2007-01-31  Eric Blake  <ebb9@byu.net>
21547
21548         * modules/mountlist (Depends-on): Add strstr.
21549
21550         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
21551         bug.
21552         * modules/string (Makefile.am): Remove redundant replacement.
21553         * modules/regex (Depends-on): Add mempcpy.
21554
21555 2007-01-31  Bruno Haible  <bruno@clisp.org>
21556
21557         New module description field 'Link'.
21558         * gnulib-tool (func_usage): Document --extract-link-directive.
21559         (sed_extract_prog): Recognize 'Link' directive.
21560         (func_get_link_directive): New function.
21561         (func_import): Show summary of link directives.
21562         Handle --extract-link-directive option.
21563         * modules/acl (Link): New section.
21564         * modules/clock-time (Link): New section.
21565         * modules/euidaccess (Link): New section.
21566         * modules/gettext (Link): New section.
21567         * modules/iconv (Link): New section.
21568         * modules/lock (Link): New section.
21569         * modules/nanosleep (Link): New section.
21570         * modules/readline (Link): New section.
21571
21572 2007-01-27  Bruno Haible  <bruno@clisp.org>
21573
21574         Enforce the use of gnulib modules for unportable <string.h> functions.
21575         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
21576         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
21577         (gl_HEADER_STRING_H_BODY): Require it.
21578         * lib/string_.h: If the gnulib module XYZ is not present, redefine
21579         the symbol XYZ to one that gives a link error.
21580         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
21581         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
21582         * modules/mempcpy (configure.ac): Likewise.
21583         * modules/memrchr (configure.ac): Likewise.
21584         * modules/stpcpy (configure.ac): Likewise.
21585         * modules/stpncpy (configure.ac): Likewise.
21586         * modules/strcase (configure.ac): Likewise.
21587         * modules/strcasestr (configure.ac): Likewise.
21588         * modules/strchrnul (configure.ac): Likewise.
21589         * modules/strdup (configure.ac): Likewise.
21590         * modules/strndup (configure.ac): Likewise.
21591         * modules/strnlen (configure.ac): Likewise.
21592         * modules/strpbrk (configure.ac): Likewise.
21593         * modules/strsep (configure.ac): Likewise.
21594         * modules/strstr (configure.ac): Likewise.
21595         * modules/strtok_r (configure.ac): Likewise.
21596
21597 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
21598
21599         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
21600
21601 2007-01-30  Jim Meyering  <jim@meyering.net>
21602
21603         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
21604
21605 2007-01-29  Bruno Haible  <bruno@clisp.org>
21606
21607         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
21608         * lib/execute.c: Likewise.
21609         * lib/pipe.c: Likewise.
21610         * lib/printf-args.h: Likewise.
21611         * lib/printf-args.c: Likewise.
21612         * lib/printf-parse.c: Likewise.
21613         * lib/vasnprintf.c: Likewise.
21614
21615 2007-01-29  Eric Blake  <ebb9@byu.net>
21616
21617         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
21618         declaration.
21619
21620 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
21621
21622         * lib/strptime.h (strptime): Use 'restrict' for args where
21623         POSIX requires this.
21624         * lib/strptime.c (strptime): Likewise.
21625         Change license notice from LGPL to GPL, since gnulib-tool will
21626         change this as needed.
21627         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
21628         defined.
21629         Include "strptime.h" first, to check interface.
21630         Do not #undef _LIBC and _NL_CURRENT.
21631         Do not include <stdlib.h>; no longer needed.
21632         Include "time_r.h" and declare ptime_locale_status
21633         only if _LIBC is not defined.
21634         (__P): Remove unused macro.
21635         (match_string): Bring back glibc version, but use it only if _LIBC
21636         is defined.
21637         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
21638         Remove unnecessary assertion and abort() call.
21639         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
21640         * m4/strptime.m4: Fix serial number comment.
21641         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
21642         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
21643         (Depends-on): Add time_r.
21644
21645 2007-01-29  Bruno Haible  <bruno@clisp.org>
21646
21647         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21648         strptime.
21649         * modules/strptime (Depends-on): Add stdbool.
21650         * lib/strptime.h: Include <time.h> always. Add comments.
21651
21652 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21653
21654         * modules/strptime: New file.
21655         * lib/strptime.h: New file.
21656         * lib/strptime.c: New file.
21657         * m4/strptime.m4: New file.
21658
21659 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
21660
21661         * MODULES.html.sh: New module mpsort.
21662         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
21663
21664         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
21665         a circularity problem with HP-UX ia64 reported by Bob Proulx in
21666         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
21667         All uses changed.
21668         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
21669         All uses changed.
21670         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
21671         to _Restrict_.
21672         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
21673         the parameter matches the prototype.
21674
21675 2007-01-28  Jim Meyering  <jim@meyering.net>
21676
21677         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
21678         sys/time.h here, reverting that part of the previous patch:
21679         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
21680
21681 2007-01-28  Bruno Haible  <bruno@clisp.org>
21682
21683         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
21684         value of $(SYS_TIME_H).
21685         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
21686         remove it conditionally, too. [added by Jim Meyering]
21687         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
21688         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
21689         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
21690         GETTIMEOFDAY_REPLACEMENT to 1.
21691
21692 2007-01-28  Bruno Haible  <bruno@clisp.org>
21693
21694         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
21695         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
21696         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
21697         Set UNISTD_H instead of UNISTD_H2.
21698         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
21699
21700 2007-01-28  Bruno Haible  <bruno@clisp.org>
21701
21702         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
21703         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
21704
21705 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21706
21707         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
21708         (func_create_testdir): Ensure C locale for `grep' and `tr'
21709         character ranges.
21710         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
21711         ACLOCAL_AMFLAGS parsing state machine.
21712
21713 2007-01-27  Bruno Haible  <bruno@clisp.org>
21714
21715         * modules/unistr/base: Update.
21716
21717 2007-01-27  Bruno Haible  <bruno@clisp.org>
21718
21719         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
21720         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
21721         * modules/unistr/u32-mbtouc-unsafe: Renamed from
21722         modules/unistr/u32-mbtouc.
21723         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
21724         * lib/unistr.h: Update.
21725         * lib/linebreak.c: Update.
21726         * modules/unistr/u32-mbtouc: Renamed from
21727         modules/unistr/u32-mbtouc-safe.
21728         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
21729         * lib/unistr.h: Update.
21730         * lib/unistr/u32-to-u8.c: Update.
21731         * lib/unistr/u32-to-u16.c: Update.
21732
21733 2007-01-27  Bruno Haible  <bruno@clisp.org>
21734
21735         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
21736         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
21737         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
21738         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
21739         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
21740         * modules/unistr/u16-mbtouc-unsafe: Renamed from
21741         modules/unistr/u16-mbtouc.
21742         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
21743         * lib/unistr.h: Update.
21744         * lib/linebreak.c: Update.
21745         * modules/linebreak: Update.
21746         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
21747         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
21748         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
21749         * modules/unistr/u16-mbtouc: Renamed from
21750         modules/unistr/u16-mbtouc-safe.
21751         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
21752         * lib/unistr.h: Update.
21753         * lib/unistr/u16-to-u8.c: Update.
21754         * modules/unistr/u16-to-u8: Update.
21755         * lib/unistr/u16-to-u32.c: Update.
21756         * modules/unistr/u16-to-u32: Update.
21757
21758 2007-01-27  Bruno Haible  <bruno@clisp.org>
21759
21760         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
21761         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
21762         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
21763         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
21764         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
21765         * modules/unistr/u8-mbtouc-unsafe: Renamed from
21766         modules/unistr/u8-mbtouc.
21767         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
21768         * lib/unistr.h: Update.
21769         * lib/striconveh.c: Update.
21770         * modules/striconveh: Update.
21771         * lib/linebreak.c: Update.
21772         * modules/linebreak: Update.
21773         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
21774         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
21775         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
21776         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
21777         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
21778         * lib/unistr.h: Update.
21779         * lib/striconveh.c: Update.
21780         * modules/striconveh: Update.
21781         * lib/unistr/u8-to-u16.c: Update.
21782         * modules/unistr/u8-to-u16: Update.
21783         * lib/unistr/u8-to-u32.c: Update.
21784         * modules/unistr/u8-to-u32: Update.
21785
21786 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21787
21788         Sync from Libtool.
21789         * lib/argz.c: Do not include strings.h nor memory.h, include
21790         string.h unconditionally.  Patch by Simon Josefsson.
21791
21792 2007-01-27  Bruno Haible  <bruno@clisp.org>
21793
21794         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
21795         from gl_HEADER_STRING_H_BODY.
21796         (gl_HEADER_STRING_H_BODY): Require it.
21797         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
21798         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
21799         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
21800         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
21801         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
21802         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
21803         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
21804         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
21805         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
21806         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
21807         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
21808         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
21809         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
21810         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
21811         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
21812
21813 2007-01-27  Bruno Haible  <bruno@clisp.org>
21814
21815         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
21816         check_PROGRAMS into noinst_PROGRAMS.
21817         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
21818         check_PROGRAMS in this case.
21819         (func_import): Set for_test to false.
21820         (func_create_testdir): Set for_test to true.
21821
21822 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
21823             Bruno Haible  <bruno@clisp.org>
21824
21825         * modules/strcasestr (Files): Remove lib/strcasestr.h.
21826         (Depends-on): Add string.
21827         (Includes): Use <string.h> instead of strcasestr.h.
21828         * modules/string (Makefile.am): Also substitute the value of
21829         REPLACE_STRCASESTR.
21830         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
21831         assume strcasestr is declared in <string.h> not <strings.h>. Also
21832         set REPLACE_STRCASESTR.
21833         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
21834         REPLACE_STRCASESTR.
21835         * lib/strcasestr.h: Remove file.
21836         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
21837         * lib/string_.h (strcasestr): New declaration.
21838
21839 2007-01-27  Bruno Haible  <bruno@clisp.org>
21840
21841         * lib/string_.h: Use 'extern'.
21842
21843 2007-01-27  Jim Meyering  <jim@meyering.net>
21844
21845         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
21846         of set-but-not-used local, "q".
21847
21848         * lib/mempcpy.c: Include <config.h> before <string.h>.
21849         This fixes a compilation error on HP-UX, due to the system's
21850         "restrict"-using mempcpy prototype.
21851
21852 2007-01-26  Bruno Haible  <bruno@clisp.org>
21853
21854         Small optimization.
21855         * lib/javacomp.c: Include c-strstr.h.
21856          (is_envjavac_gcj): Use c_strstr instead of strstr.
21857         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
21858
21859 2007-01-26  Bruno Haible  <bruno@clisp.org>
21860
21861         * MODULES.html.sh (Unicode string functions): Add the new modules.
21862
21863         * modules/uniconv/u32-strconv-to-locale: New file.
21864         * lib/uniconv/u32-strconv-to-locale.c: New file.
21865
21866         * modules/uniconv/u16-strconv-to-locale: New file.
21867         * lib/uniconv/u16-strconv-to-locale.c: New file.
21868
21869         * modules/uniconv/u8-strconv-to-locale: New file.
21870         * lib/uniconv/u8-strconv-to-locale.c: New file.
21871
21872         * modules/uniconv/u32-strconv-from-locale: New file.
21873         * lib/uniconv/u32-strconv-from-locale.c: New file.
21874
21875         * modules/uniconv/u16-strconv-from-locale: New file.
21876         * lib/uniconv/u16-strconv-from-locale.c: New file.
21877
21878         * modules/uniconv/u8-strconv-from-locale: New file.
21879         * lib/uniconv/u8-strconv-from-locale.c: New file.
21880
21881         * modules/uniconv/u32-strconv-to-enc: New file.
21882         * lib/uniconv/u32-strconv-to-enc.c: New file.
21883         * modules/uniconv/u32-strconv-to-enc-tests: New file.
21884         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
21885
21886         * modules/uniconv/u16-strconv-to-enc: New file.
21887         * lib/uniconv/u16-strconv-to-enc.c: New file.
21888         * lib/uniconv/u-strconv-to-enc.h: New file.
21889         * modules/uniconv/u16-strconv-to-enc-tests: New file.
21890         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
21891
21892         * modules/uniconv/u8-strconv-to-enc: New file.
21893         * lib/uniconv/u8-strconv-to-enc.c: New file.
21894         * modules/uniconv/u8-strconv-to-enc-tests: New file.
21895         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
21896
21897         * modules/uniconv/u32-strconv-from-enc: New file.
21898         * lib/uniconv/u32-strconv-from-enc.c: New file.
21899         * modules/uniconv/u32-strconv-from-enc-tests: New file.
21900         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
21901
21902         * modules/uniconv/u16-strconv-from-enc: New file.
21903         * lib/uniconv/u16-strconv-from-enc.c: New file.
21904         * modules/uniconv/u16-strconv-from-enc-tests: New file.
21905         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
21906
21907         * modules/uniconv/u8-strconv-from-enc: New file.
21908         * lib/uniconv/u8-strconv-from-enc.c: New file.
21909         * lib/uniconv/u-strconv-from-enc.h: New file.
21910         * modules/uniconv/u8-strconv-from-enc-tests: New file.
21911         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
21912
21913         * modules/uniconv/u32-conv-from-enc: New file.
21914         * lib/uniconv/u32-conv-from-enc.c: New file.
21915         * modules/uniconv/u32-conv-from-enc-tests: New file.
21916         * tests/uniconv/test-u32-conv-from-enc.c: New file.
21917
21918         * modules/uniconv/u16-conv-from-enc: New file.
21919         * lib/uniconv/u16-conv-from-enc.c: New file.
21920         * lib/uniconv/u-conv-from-enc.h: New file.
21921         * modules/uniconv/u16-conv-from-enc-tests: New file.
21922         * tests/uniconv/test-u16-conv-from-enc.c: New file.
21923
21924         * modules/uniconv/u8-conv-from-enc: New file.
21925         * lib/uniconv/u8-conv-from-enc.c: New file.
21926         * modules/uniconv/u8-conv-from-enc-tests: New file.
21927         * tests/uniconv/test-u8-conv-from-enc.c: New file.
21928
21929         * modules/uniconv/base: New file.
21930         * lib/uniconv.h: New file.
21931
21932 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
21933
21934         * doc/gnulib-tool.texi (Initial import): Update to match current
21935         behavior with strdup module.
21936         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
21937         * lib/memmem.h: Remove; all uses removed.  This is now done
21938         by <string.h>.
21939         * lib/mempcpy.h: Likewise.
21940         * lib/memrchr.h: Likewise.
21941         * lib/stpcpy.h: Likewise.
21942         * lib/stpncpy.h: Likewise.
21943         * lib/strcase.h: Likewise.
21944         * lib/strchrnul.h: Likewise.
21945         * lib/strdup.h: Likewise.
21946         * lib/strndup.h: Likewise.
21947         * lib/strnlen.h: Likewise.
21948         * lib/strpbrk.h: Likewise.
21949         * lib/strsep.h: Likewise.
21950         * lib/strstr.h: Likewise.
21951         * lib/strtok_r.h: Likewise.
21952         * lib/string_.h: New file.
21953         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
21954         Rely on <string.h> instead.
21955         * lib/canon-host.c: Likewise.
21956         * lib/chdir-long.c: Likewise.
21957         * lib/concatpath.c: Likewise.
21958         * lib/exclude.c: Likewise.
21959         * lib/fchdir.c: Likewise.
21960         * lib/getaddrinfo.c: Likewise.
21961         * lib/getcwd.c: Likewise.
21962         * lib/getsubopt.c: Likewise.
21963         * lib/glob.c: Likewise.
21964         * lib/hard-locale.c: Likewise.
21965         * lib/iconvme.c: Likewise.
21966         * lib/javacomp.c: Likewise.
21967         * lib/mempcpy.c: Likewise.
21968         * lib/memrchr.c: Likewise.
21969         * lib/regex_internal.h: Likewise.
21970         * lib/stpncpy.c: Likewise.
21971         * lib/strcasecmp.c: Likewise.
21972         * lib/strchrnul.c: Likewise.
21973         * lib/strdup.c: Likewise.
21974         * lib/striconv.c: Likewise.
21975         * lib/striconveh.c: Likewise.
21976         * lib/striconveha.c: Likewise.
21977         * lib/strncasecmp.c: Likewise.
21978         * lib/strndup.c: Likewise.
21979         * lib/strnlen.c: Likewise.
21980         * lib/strsep.c: Likewise.
21981         * lib/strstr.c: Likewise.
21982         * lib/strtok_r.c: Likewise.
21983         * lib/userspec.c: Likewise.
21984         * lib/w32spawn.h: Likewise.
21985         * lib/xstrndup.c: Likewise.
21986         * lib/mountlist.c (strstr): Remove decl.
21987         * m4/string_h.m4: New file.
21988         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
21989         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
21990         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
21991         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
21992         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
21993         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
21994         Set REPLACE_STRCASECMP if necessary.
21995         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
21996         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
21997         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
21998         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
21999         HAVE_DECL_STRDUP if necessary.
22000         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
22001         since gl_FUNC_STRNDUP does that now.
22002         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
22003         Check for decl here...
22004         (gl_PREREQ_STRNLEN): ... not here.
22005         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
22006         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
22007         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
22008         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
22009         necessary.
22010         * modules/string: New file.
22011         * modules/memmem (Files): Remove special-purpose include file.
22012         (Depends-on): Add string.
22013         (Include): Include <string.h>, not the removed file.
22014         * modules/mempcpy: Likewise.
22015         * modules/memrchr: Likewise.
22016         * modules/stpcpy: Likewise.
22017         * modules/stpncpy: Likewise.
22018         * modules/strcase: Likewise.
22019         * modules/strchrnul: Likewise.
22020         * modules/strdup: Likewise.
22021         * modules/strndup: Likewise.
22022         * modules/strnlen: Likewise.
22023         * modules/strpbrk: Likewise.
22024         * modules/strsep: Likewise.
22025         * modules/strstr: Likewise.
22026         * modules/strtok_r: Likewise.
22027         * tests/test-dirname.c: Don't include "strdup.h", since
22028         <string.h> now suffices.
22029         * tests/test-memmem.c: Don't include "memmem.h", since
22030         <string.h> now suffices.
22031
22032 2007-01-25  Bruno Haible  <bruno@clisp.org>
22033
22034         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
22035         *resultp is 0.
22036
22037         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
22038         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
22039         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
22040         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
22041
22042         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
22043         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
22044         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
22045         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
22046         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
22047         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
22048
22049 2007-01-24  Bruno Haible  <bruno@clisp.org>
22050
22051         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
22052         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
22053         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
22054         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
22055         gl_FUNC_FTS_CORE.
22056         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
22057         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
22058         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
22059         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
22060         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
22061         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
22062         gl_FUNC_FCHOWNAT.
22063         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
22064         gl_FUNC_STRFTIME.
22065         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
22066         Reported by Ralf Wildenhues.
22067
22068 2007-01-24  Bruno Haible  <bruno@clisp.org>
22069
22070         Drop AC_REQUIRE calls that are redundant with the module dependencies.
22071         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
22072         gl_GETADDRINFO.
22073         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
22074         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
22075         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
22076
22077 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
22078
22079         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
22080         Don't use 'exit'; just return from 'main'.
22081         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
22082
22083         * lib/fnmatch_.h: Readjust white space and comments to match
22084         glibc, to avoid spurious diffs.
22085
22086 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22087
22088         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
22089         2004-12-01 change by Jakub Jelinek, since this code won't compile
22090         if !LIBC.  Problem reported by Bob Proulx.
22091
22092 2007-01-23  Bruno Haible  <bruno@clisp.org>
22093
22094         * lib/striconveh.c: Include c-strcaseeq.h.
22095         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
22096         * modules/striconveh (Depends-on): Add c-strcaseeq.
22097
22098 2007-01-23  Bruno Haible  <bruno@clisp.org>
22099
22100         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
22101
22102         * modules/c-strcaseeq: New file.
22103         * lib/c-strcaseeq.h: New file.
22104
22105         * modules/streq: New file.
22106         * lib/streq.h: New file.
22107
22108 2007-01-23  Bruno Haible  <bruno@clisp.org>
22109
22110         * modules/striconveha-tests: New file.
22111         * tests/test-striconveha.c: New file.
22112
22113         * lib/striconveha.h: Include <stdbool.h>.
22114         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
22115         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
22116         (mem_iconveha_notranslit): Renamed from mem_iconveha.
22117         (mem_iconveha): New function.
22118         (str_iconveha_notranslit): Renamed from str_iconveha.
22119         (str_iconveha): New function.
22120         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
22121         c-strcase.
22122
22123 2007-01-23  Bruno Haible  <bruno@clisp.org>
22124
22125         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
22126         encodings without forgiving before trying any encoding with handler.
22127         (str_iconveha): Try all encodings without forgiving before trying any
22128         encoding with handler.
22129
22130 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22131
22132         Import the following changes from libc.
22133
22134         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
22135
22136         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
22137
22138         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
22139
22140         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
22141         normal_bracket label.
22142
22143         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
22144
22145         [BZ #361]
22146         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
22147         to normal_bracket after fetching the next character.
22148
22149 2007-01-22  Bruno Haible  <bruno@clisp.org>
22150
22151         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
22152         argument.
22153         * lib/striconveh.c (iconv_carefully_1): New function.
22154         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
22155         argument.
22156         (str_cd_iconveh): Update.
22157         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
22158         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
22159         * tests/test-striconveh.c (MAGIC): New macro.
22160         (new_offsets): New function.
22161         (main): Test call with and without offsets.
22162
22163 2007-01-22  Bruno Haible  <bruno@clisp.org>
22164
22165         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
22166         * modules/sys_select (Makefile.am): Likewise.
22167         * modules/sys_socket (Makefile.am): Likewise.
22168         * modules/sys_time (Makefile.am): Likewise.
22169
22170 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
22171
22172         * modules/gettimeofday (License): Change from GPL to LGPL, since
22173         gettimeofday is a library function.
22174
22175 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22176
22177         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
22178
22179 2007-01-21  Bruno Haible  <bruno@clisp.org>
22180
22181         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
22182
22183 2007-01-21  Bruno Haible  <bruno@clisp.org>
22184
22185         * modules/striconveha: New file.
22186         * lib/striconveha.h: New file.
22187         * lib/striconveha.c: New file.
22188         * MODULES.html.sh (Internationalization functions): Add striconveha.
22189         * lib/striconv.c (str_iconv): Optimize the case of an empty input
22190         string.
22191         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
22192
22193 2007-01-21  Bruno Haible  <bruno@clisp.org>
22194
22195         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
22196         * lib/striconveh.c (str_iconveh): Likewise.
22197
22198 2007-01-21  Bruno Haible  <bruno@clisp.org>
22199
22200         * lib/striconveh.h (mem_iconveh): New declaration.
22201         * lib/striconveh.c (mem_iconveh): New function.
22202         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
22203
22204 2007-01-21  Bruno Haible  <bruno@clisp.org>
22205
22206         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
22207
22208         * lib/striconveh.h (mem_cd_iconveh): Change specification.
22209         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
22210         original result buffer.
22211         (str_cd_iconveh): Update.
22212         * tests/test-striconveh.c (main): Update.
22213
22214         * lib/striconv.h (mem_cd_iconv): Change specification.
22215         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
22216         result buffer.
22217         (str_cd_iconv): Update.
22218         * tests/test-striconv.c (main): Update.
22219
22220 2007-01-21  Bruno Haible  <bruno@clisp.org>
22221
22222         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
22223
22224 2007-01-20  Jim Meyering  <jim@meyering.net>
22225
22226         * lib/userspec.c (parse_with_separator): If a user or group string
22227         starts with "+", skip the corresponding name-to-ID look-up, since
22228         such a look-up must fail: user and group names may not include "+".
22229
22230 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
22231
22232         * lib/poll.c: Include sys/time.h and time.h unconditionally,
22233         since we now assume the sys_time module.
22234         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
22235         check for sys/time.h; no longer needed.
22236         * modules/poll (Depends-on): Depend on sys_time.
22237
22238 2007-01-18  Bruno Haible  <bruno@clisp.org>
22239
22240         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
22241         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
22242
22243         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
22244         gettimeofday.
22245
22246         * tests/test-gettimeofday.c: Include <time.h>.
22247         (dummy): Remove variable.
22248
22249         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
22250         gl_HEADER_SYS_TIME_H.
22251         (gl_HEADER_SYS_TIME_H): New macro.
22252
22253         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
22254         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22255         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
22256         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
22257         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22258         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
22259         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
22260         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22261         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
22262         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
22263         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22264
22265         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
22266         last change; it caused a compilation error when cross-compiling to
22267         Cygwin.
22268
22269 2007-01-18  Jim Meyering  <jim@meyering.net>
22270
22271         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
22272         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
22273         than the race-prone "test -d sys || mkdir sys".
22274         (configure.ac): Use AC_PROG_MKDIR_P.
22275         * modules/sys_select: Likewise.
22276         * modules/sys_socket: Likewise.
22277         * modules/sys_time: Likewise.
22278
22279 2007-01-18  Eric Blake  <ebb9@byu.net>
22280
22281         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
22282         replace gettimeofday.
22283         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
22284         name, to avoid infinite recursion.
22285
22286 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
22287
22288         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
22289         module sys_time.
22290         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
22291         assume timespec.h defines struct timeval.
22292         * lib/settime.c: Likewise.
22293         * lib/utimens.c: Likewise.
22294         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
22295         since we now assume the gettimeofday module.
22296         * lib/tempname.c (__gen_tempname): Likewise.
22297         * lib/gettimeofday.h: Remove.
22298         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
22299         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
22300         Include <time.h>, for 'time()'.
22301         (localtime_buffer_addr): Also use this workaround if
22302         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
22303         to simplify the uses.  All uses changed.
22304         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
22305         that #undef is inside {}, and 'const' follows type name consistently.
22306         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
22307         (gettimeofday): Do not use the maximum possible value for
22308         tv->tv_usec, since that might break usages other than ls.c.
22309         Instead, we'll leave ls.c alone.  This undoes today's patch
22310         by Bruno.  Add a compile-time warning for 1s-clock resolution;
22311         we've never observed the problem but might as well keep the
22312         canary.
22313         * lib/nanosleep.c: Include timespec.h first, for interface check.
22314         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
22315         now assume the sys_time module.
22316         * lib/tempname.c: Likewise.
22317         * lib/timespec.h: Likewise.
22318         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
22319         needed.
22320         * lib/strftime.c: Likewise.
22321         * lib/timespec.h: Likewise.
22322         * lib/posixtm.c: Include posixtm.h first, for interface check.
22323         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
22324         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
22325         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
22326         * lib/sys_time_.h: New file.
22327         * lib/timespec.h (struct timespec): Use long int, not long.
22328         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
22329         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
22330         Remove obsolescent call to AC_HEADER_TIME.
22331         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
22332         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
22333         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
22334         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
22335         Likewise.
22336         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
22337         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
22338         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
22339         into the sys_time module.  Check for gettimeofday just once.
22340         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
22341         for gettimeofday signature to just check the signature.  Merely
22342         compile it, since linking doesn't test signature.  Improve test for
22343         whether gettimeofday.o is actually needed.
22344         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
22345         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
22346         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
22347         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22348         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
22349         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
22350         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
22351         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
22352         than worrying about sys/time.h.
22353         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
22354         Don't bother worrying about TIME_WITH_SYS_TIME.
22355         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
22356         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
22357         * m4/sys_time_h.m4: New file.
22358         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
22359         Don't include sys/time.h.  Return from main rather than exiting.
22360         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
22361         all uses changed.
22362         * modules/gethrxtime (Depends-on): Add sys_time.
22363         * modules/gettime (Depends-on): Likewise.
22364         * modules/gettimeofday (Depends-on): Likewise.
22365         * modules/nanosleep (Depends-on): Likewise.
22366         * modules/settime (Depends-on): Likewise.
22367         * modules/tempname (Depends-on): Likewise.
22368         * modules/utimens (Depends-on): Likewise.
22369         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
22370         (Include:) Change back to <sys/time.h>.
22371         (Maintainer:) Add self.
22372         * modules/sys_time: New file.
22373         * modules/tempname (Depends-on): Add gettimeofday.
22374         * tests/test-gettimeofday.c: Include <sys/time.h>
22375         rather than gettimeofday.h.
22376
22377 2007-01-17  Bruno Haible  <bruno@clisp.org>
22378
22379         * gnulib-tool (func_get_license): Revert last patch. Instead, let
22380         the license default to GPL.
22381         (func_create_testdir): Don't complain if a module is LGPL and its
22382         tests module depends on GPLed modules.
22383
22384 2007-01-17  Bruno Haible  <bruno@clisp.org>
22385
22386         * lib/gettimeofday.c (gettimeofday): Add code for the case
22387         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
22388         maximum possible value for tv->tv_usec, rather than the minimum one.
22389
22390 2005-10-08  Martin Lambers  <marlam@marlam.de>
22391 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
22392 2007-01-16  Bruno Haible  <bruno@clisp.org>
22393
22394         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
22395         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
22396         gl_FUNC_GETTIMEOFDAY.
22397         (Include): Add gettimeofday.h.
22398         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
22399         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
22400         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
22401         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
22402         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
22403         * lib/gettimeofday.h: New file.
22404         * lib/gettimeofday.c: Include <sys/timeb.h>.
22405         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
22406         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
22407         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
22408         fall back on time().
22409
22410         * tests/test-gettimeofday.c: New file.
22411         * modules/gettimeofday-tests: New file.
22412
22413 2007-01-16  Eric Blake  <ebb9@byu.net>
22414
22415         * modules/fnmatch (Depends-on): Depend on wchar.
22416         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
22417         * m4/fnmatch.m4: Likewise.
22418         * modules/mbchar (Makefile.am): Assume <wchar.h>.
22419         * m4/mbchar.m4: Likewise.
22420         * modules/mbswidth (Depends-on): Depend on wchar.
22421         * lib/mbswidth.c: Assume <wchar.h>.
22422         * m4/mbswidth.m4: Likewise.
22423         * modules/quotearg (Depends-on): Depend on wchar.
22424         * lib/quotearg.c: Assume <wchar.h>.
22425         * m4/quotearg.m4: Likewise.
22426         * modules/regex (Depends-on): Depend on wchar.
22427         * lib/regex_internal.h: Assume <wchar.h>.
22428         * m4/regex.m4: Likewise.
22429         * modules/stdint (Depends-on): Depend on wchar.
22430         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
22431         * m4/stdint.m4: Likewise.
22432         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
22433         * modules/strftime (Depends-on): Depend on wchar.
22434         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
22435         * modules/strtol (Depends-on): Depend on wchar.
22436         * lib/strtol.c: Assume <wchar.h>.
22437         * modules/wcwidth (Depends-on): Depend on wchar.
22438         * lib/wcwidth.h: Assume <wchar.h>.
22439         * m4/wcwidth.m4: Likewise.
22440
22441 2007-01-16  Bruno Haible  <bruno@clisp.org>
22442
22443         * modules/csharpexec-script: New, created from...
22444         * modules/csharpexec: ... this.
22445
22446 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
22447
22448         * modules/javaexec-script: New, created from...
22449         * modules/javaexec: ... this.
22450
22451 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22452
22453         * modules/poll (Dependencies): Add sys_select.
22454
22455 2007-01-15  Jim Meyering  <jim@meyering.net>
22456
22457         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
22458         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
22459         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
22460         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
22461
22462 2007-01-15  Bruno Haible  <bruno@clisp.org>
22463
22464         * modules/striconveh: New file.
22465         * lib/striconveh.h: New file.
22466         * lib/striconveh.c: New file.
22467         * MODULES.html.sh (Internationalization functions): Add striconveh.
22468
22469         * modules/striconveh-tests: New file.
22470         * tests/test-striconveh.c: New file.
22471
22472 2007-01-15  Bruno Haible  <bruno@clisp.org>
22473
22474         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
22475         not from GNU libiconv or GNU libc.
22476
22477 2007-01-15  Bruno Haible  <bruno@clisp.org>
22478
22479         * doc/gnulib-intro.texi (Copyright): Explain the different license
22480         terms for module descriptions, autoconf macros, tests, documentation.
22481
22482 2007-01-14  Bruno Haible  <bruno@clisp.org>
22483
22484         * modules/striconv-tests: New file.
22485         * tests/test-striconv.c: New file.
22486
22487 2007-01-14  Bruno Haible  <bruno@clisp.org>
22488
22489         * modules/iconv-tests: New file.
22490         * tests/test-iconv.c: New file.
22491
22492 2007-01-14  Bruno Haible  <bruno@clisp.org>
22493
22494         * gnulib-tool (func_get_license): For test modules, use the license of
22495         the main module.
22496
22497 2007-01-14  Bruno Haible  <bruno@clisp.org>
22498
22499         * modules/iconv (Include): Clarify that <iconv.h> can only be included
22500         if iconv is found to exist.
22501
22502 2007-01-14  Bruno Haible  <bruno@clisp.org>
22503
22504         * modules/c-ctype-tests: New file.
22505         * tests/test-c-ctype.c: New file.
22506
22507 2007-01-14  Bruno Haible  <bruno@clisp.org>
22508
22509         * modules/binary-io-tests: New file.
22510         * tests/test-binary-io.sh: New file.
22511         * tests/test-binary-io.c: New file.
22512
22513 2007-01-14  Bruno Haible  <bruno@clisp.org>
22514
22515         * modules/array-oset-tests: New file.
22516         * tests/test-array_oset.c: New file.
22517
22518 2007-01-14  Bruno Haible  <bruno@clisp.org>
22519
22520         * modules/array-list-tests: New file.
22521         * tests/test-array_list.c: New file.
22522
22523 2007-01-14  Bruno Haible  <bruno@clisp.org>
22524
22525         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
22526         and make.
22527         Reported by Simon Josefsson in
22528         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
22529
22530 2007-01-14  Bruno Haible  <bruno@clisp.org>
22531
22532         * modules/allocsa-tests: New file.
22533         * tests/test-allocsa.c: New file.
22534
22535 2007-01-14  Bruno Haible  <bruno@clisp.org>
22536
22537         * modules/fchdir (Depends-on): Add absolute-header.
22538         * modules/unistd (Depends-on): Likewise.
22539
22540 2006-12-30  Bruno Haible  <bruno@clisp.org>
22541
22542         * modules/fchdir: New file.
22543         * modules/unistd (Files): Add lib/unistd_.h.
22544         (Makefile.am): Generate unistd.h from unistd_.h.
22545         * lib/fchdir.c: New file.
22546         * lib/dirent_.h: New file.
22547         * lib/unistd_.h: New file.
22548         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
22549         * m4/fchdir.m4: New file.
22550         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
22551         (gl_HEADER_UNISTD): Invoke it.
22552         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
22553         function.
22554         * lib/backupfile.c (opendir, closedir): Undefine.
22555         * lib/chown.c (open, close): Undefine.
22556         * lib/clean-temp.c (open, close): Undefine.
22557         * lib/copy-file.c (open, close): Undefine.
22558         * lib/execute.c (open, close): Undefine.
22559         * lib/fsusage.c (open, close): Undefine.
22560         * lib/gc-gnulib.c (open, close): Undefine.
22561         * lib/getcwd.c (opendir, closedir): Undefine.
22562         * lib/glob.c (opendir, closedir): Undefine.
22563         * lib/javacomp.c (open, close): Undefine.
22564         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
22565         * lib/openat-proc.c (open, close): Undefine.
22566         * lib/pagealign_alloc.c (open, close): Undefine.
22567         * lib/pipe.c (open, close): Undefine.
22568         * lib/progreloc.c (open, close): Undefine.
22569         * lib/savedir.c (opendir, closedir): Undefine.
22570         * lib/utime.c (open, close): Undefine.
22571         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
22572
22573 2007-01-10  Bruno Haible  <bruno@clisp.org>
22574
22575         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
22576
22577 2007-01-12  Eric Blake  <ebb9@byu.net>
22578
22579         Provide a robust <wchar.h>.  Further simplifications are now
22580         possible in other modules, but not included here.
22581         * modules/wchar: New module.
22582         * m4/wchar.m4: New file.
22583         * lib/wchar_.h: Likewise.
22584         * modules/mbchar (Depends-on): Depend on wchar, as the first use
22585         of the new module.
22586         * MODULES.html.sh (Extended multibyte and wide character utilities):
22587         New section.
22588
22589 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
22590
22591         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
22592         to a reasonable default for memory allocation.
22593         (xreadlink): Don't allocate a huge buffer, to work around a buggy
22594         file system that reports garbage st_size values for symlinks.
22595         Problem reported by Liyang Hu.
22596
22597 2007-01-11  Simon Josefsson  <simon@josefsson.org>
22598
22599         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
22600         Emacs .#* auto-save files).
22601
22602 2007-01-11  Bruno Haible  <bruno@clisp.org>
22603
22604         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
22605         directory.
22606
22607 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
22608
22609         Use @...@ consistently in lib/wctype_.h.
22610         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
22611         on it being set to 1 or 0.
22612         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
22613         go back to AC_SUBSTing it.
22614         * modules/wctype (Makefile.am): Undo previous change.
22615
22616 2007-01-10  Eric Blake  <ebb9@byu.net>
22617
22618         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
22619         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
22620         * modules/wctype (Makefile.am): Likewise.
22621         Reported by Chris McGuire.
22622
22623 2007-01-10  Jim Meyering  <jim@meyering.net>
22624
22625         fts.c: a small readability/maintainability improvement
22626         * lib/fts.c (fts_read): Make this code slightly more readable and
22627         maintainable by hoisting the "sp->fts_cur = p" assignments to
22628         immediately follow the statements that set P.  Derived from
22629         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
22630
22631 2007-01-10  Eric Blake  <ebb9@byu.net>
22632
22633         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
22634         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
22635         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
22636         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
22637         Reported by Chris McGuire.
22638
22639 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22640
22641         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
22642         in sed script.
22643
22644 2007-01-09  Bruno Haible  <bruno@clisp.org>
22645
22646         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
22647         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
22648         variables.
22649         (func_module): Use them.
22650
22651 2007-01-09  Bruno Haible  <bruno@clisp.org>
22652
22653         * modules/unistr/base: New file.
22654         * lib/unistr.h: New file.
22655
22656         * modules/unistr/u8-to-u16: New file.
22657         * lib/unistr/u8-to-u16.c: New file.
22658
22659         * modules/unistr/u8-to-u32: New file.
22660         * lib/unistr/u8-to-u32.c: New file.
22661
22662         * modules/unistr/u16-to-u8: New file.
22663         * lib/unistr/u16-to-u8.c: New file.
22664
22665         * modules/unistr/u16-to-u32: New file.
22666         * lib/unistr/u16-to-u32.c: New file.
22667
22668         * modules/unistr/u32-to-u8: New file.
22669         * lib/unistr/u32-to-u8.c: New file.
22670
22671         * modules/unistr/u32-to-u16: New file.
22672         * lib/unistr/u32-to-u16.c: New file.
22673
22674         * modules/unistr/u8-check: New file.
22675         * modules/unistr/u16-check: New file.
22676         * modules/unistr/u32-check: New file.
22677         * lib/unistr/u8-check.c: New file.
22678         * lib/unistr/u16-check.c: New file.
22679         * lib/unistr/u32-check.c: New file.
22680
22681         * modules/unistr/u8-chr: New file.
22682         * modules/unistr/u16-chr: New file.
22683         * modules/unistr/u32-chr: New file.
22684         * lib/unistr/u8-chr.c: New file.
22685         * lib/unistr/u16-chr.c: New file.
22686         * lib/unistr/u32-chr.c: New file.
22687
22688         * modules/unistr/u8-cmp: New file.
22689         * modules/unistr/u16-cmp: New file.
22690         * modules/unistr/u32-cmp: New file.
22691         * lib/unistr/u8-cmp.c: New file.
22692         * lib/unistr/u16-cmp.c: New file.
22693         * lib/unistr/u32-cmp.c: New file.
22694
22695         * modules/unistr/u8-cpy: New file.
22696         * modules/unistr/u16-cpy: New file.
22697         * modules/unistr/u32-cpy: New file.
22698         * lib/unistr/u8-cpy.c: New file.
22699         * lib/unistr/u16-cpy.c: New file.
22700         * lib/unistr/u32-cpy.c: New file.
22701         * lib/unistr/u-cpy.h: New file.
22702
22703         * modules/unistr/u8-cpy-alloc: New file.
22704         * modules/unistr/u16-cpy-alloc: New file.
22705         * modules/unistr/u32-cpy-alloc: New file.
22706         * lib/unistr/u8-cpy-alloc.c: New file.
22707         * lib/unistr/u16-cpy-alloc.c: New file.
22708         * lib/unistr/u32-cpy-alloc.c: New file.
22709         * lib/unistr/u-cpy-alloc.h: New file.
22710
22711         * modules/unistr/u8-endswith: New file.
22712         * modules/unistr/u16-endswith: New file.
22713         * modules/unistr/u32-endswith: New file.
22714         * lib/unistr/u8-endswith.c: New file.
22715         * lib/unistr/u16-endswith.c: New file.
22716         * lib/unistr/u32-endswith.c: New file.
22717         * lib/unistr/u-endswith.h: New file.
22718
22719         * modules/unistr/u8-mblen: New file.
22720         * modules/unistr/u16-mblen: New file.
22721         * modules/unistr/u32-mblen: New file.
22722         * lib/unistr/u8-mblen.c: New file.
22723         * lib/unistr/u16-mblen.c: New file.
22724         * lib/unistr/u32-mblen.c: New file.
22725
22726         * modules/unistr/u8-mbtouc: New file.
22727         * modules/unistr/u16-mbtouc: New file.
22728         * modules/unistr/u32-mbtouc: New file.
22729         * lib/unistr/u8-mbtouc.c: New file.
22730         * lib/unistr/u16-mbtouc.c: New file.
22731         * lib/unistr/u32-mbtouc.c: New file.
22732
22733         * modules/unistr/u8-mbtouc-safe: New file.
22734         * modules/unistr/u16-mbtouc-safe: New file.
22735         * modules/unistr/u32-mbtouc-safe: New file.
22736         * lib/unistr/u8-mbtouc-safe.c: New file.
22737         * lib/unistr/u16-mbtouc-safe.c: New file.
22738         * lib/unistr/u32-mbtouc-safe.c: New file.
22739
22740         * modules/unistr/u8-move: New file.
22741         * modules/unistr/u16-move: New file.
22742         * modules/unistr/u32-move: New file.
22743         * lib/unistr/u8-move.c: New file.
22744         * lib/unistr/u16-move.c: New file.
22745         * lib/unistr/u32-move.c: New file.
22746         * lib/unistr/u-move.h: New file.
22747
22748         * modules/unistr/u8-next: New file.
22749         * modules/unistr/u16-next: New file.
22750         * modules/unistr/u32-next: New file.
22751         * lib/unistr/u8-next.c: New file.
22752         * lib/unistr/u16-next.c: New file.
22753         * lib/unistr/u32-next.c: New file.
22754
22755         * modules/unistr/u8-prev: New file.
22756         * modules/unistr/u16-prev: New file.
22757         * modules/unistr/u32-prev: New file.
22758         * lib/unistr/u8-prev.c: New file.
22759         * lib/unistr/u16-prev.c: New file.
22760         * lib/unistr/u32-prev.c: New file.
22761
22762         * modules/unistr/u8-set: New file.
22763         * modules/unistr/u16-set: New file.
22764         * modules/unistr/u32-set: New file.
22765         * lib/unistr/u8-set.c: New file.
22766         * lib/unistr/u16-set.c: New file.
22767         * lib/unistr/u32-set.c: New file.
22768         * lib/unistr/u-set.h: New file.
22769
22770         * modules/unistr/u8-startswith: New file.
22771         * modules/unistr/u16-startswith: New file.
22772         * modules/unistr/u32-startswith: New file.
22773         * lib/unistr/u8-startswith.c: New file.
22774         * lib/unistr/u16-startswith.c: New file.
22775         * lib/unistr/u32-startswith.c: New file.
22776         * lib/unistr/u-startswith.h: New file.
22777
22778         * modules/unistr/u8-stpcpy: New file.
22779         * modules/unistr/u16-stpcpy: New file.
22780         * modules/unistr/u32-stpcpy: New file.
22781         * lib/unistr/u8-stpcpy.c: New file.
22782         * lib/unistr/u16-stpcpy.c: New file.
22783         * lib/unistr/u32-stpcpy.c: New file.
22784         * lib/unistr/u-stpcpy.h: New file.
22785
22786         * modules/unistr/u8-stpncpy: New file.
22787         * modules/unistr/u16-stpncpy: New file.
22788         * modules/unistr/u32-stpncpy: New file.
22789         * lib/unistr/u8-stpncpy.c: New file.
22790         * lib/unistr/u16-stpncpy.c: New file.
22791         * lib/unistr/u32-stpncpy.c: New file.
22792         * lib/unistr/u-stpncpy.h: New file.
22793
22794         * modules/unistr/u8-strcat: New file.
22795         * modules/unistr/u16-strcat: New file.
22796         * modules/unistr/u32-strcat: New file.
22797         * lib/unistr/u8-strcat.c: New file.
22798         * lib/unistr/u16-strcat.c: New file.
22799         * lib/unistr/u32-strcat.c: New file.
22800         * lib/unistr/u-strcat.h: New file.
22801
22802         * modules/unistr/u8-strchr: New file.
22803         * modules/unistr/u16-strchr: New file.
22804         * modules/unistr/u32-strchr: New file.
22805         * lib/unistr/u8-strchr.c: New file.
22806         * lib/unistr/u16-strchr.c: New file.
22807         * lib/unistr/u32-strchr.c: New file.
22808
22809         * modules/unistr/u8-strcmp: New file.
22810         * modules/unistr/u16-strcmp: New file.
22811         * modules/unistr/u32-strcmp: New file.
22812         * lib/unistr/u8-strcmp.c: New file.
22813         * lib/unistr/u16-strcmp.c: New file.
22814         * lib/unistr/u32-strcmp.c: New file.
22815
22816         * modules/unistr/u8-strcpy: New file.
22817         * modules/unistr/u16-strcpy: New file.
22818         * modules/unistr/u32-strcpy: New file.
22819         * lib/unistr/u8-strcpy.c: New file.
22820         * lib/unistr/u16-strcpy.c: New file.
22821         * lib/unistr/u32-strcpy.c: New file.
22822         * lib/unistr/u-strcpy.h: New file.
22823
22824         * modules/unistr/u8-strcspn: New file.
22825         * modules/unistr/u16-strcspn: New file.
22826         * modules/unistr/u32-strcspn: New file.
22827         * lib/unistr/u8-strcspn.c: New file.
22828         * lib/unistr/u16-strcspn.c: New file.
22829         * lib/unistr/u32-strcspn.c: New file.
22830         * lib/unistr/u-strcspn.h: New file.
22831
22832         * modules/unistr/u8-strdup: New file.
22833         * modules/unistr/u16-strdup: New file.
22834         * modules/unistr/u32-strdup: New file.
22835         * lib/unistr/u8-strdup.c: New file.
22836         * lib/unistr/u16-strdup.c: New file.
22837         * lib/unistr/u32-strdup.c: New file.
22838         * lib/unistr/u-strdup.h: New file.
22839
22840         * modules/unistr/u8-strlen: New file.
22841         * modules/unistr/u16-strlen: New file.
22842         * modules/unistr/u32-strlen: New file.
22843         * lib/unistr/u8-strlen.c: New file.
22844         * lib/unistr/u16-strlen.c: New file.
22845         * lib/unistr/u32-strlen.c: New file.
22846         * lib/unistr/u-strlen.h: New file.
22847
22848         * modules/unistr/u8-strmblen: New file.
22849         * modules/unistr/u16-strmblen: New file.
22850         * modules/unistr/u32-strmblen: New file.
22851         * lib/unistr/u8-strmblen.c: New file.
22852         * lib/unistr/u16-strmblen.c: New file.
22853         * lib/unistr/u32-strmblen.c: New file.
22854
22855         * modules/unistr/u8-strmbtouc: New file.
22856         * modules/unistr/u16-strmbtouc: New file.
22857         * modules/unistr/u32-strmbtouc: New file.
22858         * lib/unistr/u8-strmbtouc.c: New file.
22859         * lib/unistr/u16-strmbtouc.c: New file.
22860         * lib/unistr/u32-strmbtouc.c: New file.
22861
22862         * modules/unistr/u8-strncat: New file.
22863         * modules/unistr/u16-strncat: New file.
22864         * modules/unistr/u32-strncat: New file.
22865         * lib/unistr/u8-strncat.c: New file.
22866         * lib/unistr/u16-strncat.c: New file.
22867         * lib/unistr/u32-strncat.c: New file.
22868         * lib/unistr/u-strncat.h: New file.
22869
22870         * modules/unistr/u8-strncmp: New file.
22871         * modules/unistr/u16-strncmp: New file.
22872         * modules/unistr/u32-strncmp: New file.
22873         * lib/unistr/u8-strncmp.c: New file.
22874         * lib/unistr/u16-strncmp.c: New file.
22875         * lib/unistr/u32-strncmp.c: New file.
22876
22877         * modules/unistr/u8-strncpy: New file.
22878         * modules/unistr/u16-strncpy: New file.
22879         * modules/unistr/u32-strncpy: New file.
22880         * lib/unistr/u8-strncpy.c: New file.
22881         * lib/unistr/u16-strncpy.c: New file.
22882         * lib/unistr/u32-strncpy.c: New file.
22883         * lib/unistr/u-strncpy.h: New file.
22884
22885         * modules/unistr/u8-strnlen: New file.
22886         * modules/unistr/u16-strnlen: New file.
22887         * modules/unistr/u32-strnlen: New file.
22888         * lib/unistr/u8-strnlen.c: New file.
22889         * lib/unistr/u16-strnlen.c: New file.
22890         * lib/unistr/u32-strnlen.c: New file.
22891         * lib/unistr/u-strnlen.h: New file.
22892
22893         * modules/unistr/u8-strpbrk: New file.
22894         * modules/unistr/u16-strpbrk: New file.
22895         * modules/unistr/u32-strpbrk: New file.
22896         * lib/unistr/u8-strpbrk.c: New file.
22897         * lib/unistr/u16-strpbrk.c: New file.
22898         * lib/unistr/u32-strpbrk.c: New file.
22899         * lib/unistr/u-strpbrk.h: New file.
22900
22901         * modules/unistr/u8-strrchr: New file.
22902         * modules/unistr/u16-strrchr: New file.
22903         * modules/unistr/u32-strrchr: New file.
22904         * lib/unistr/u8-strrchr.c: New file.
22905         * lib/unistr/u16-strrchr.c: New file.
22906         * lib/unistr/u32-strrchr.c: New file.
22907
22908         * modules/unistr/u8-strspn: New file.
22909         * modules/unistr/u16-strspn: New file.
22910         * modules/unistr/u32-strspn: New file.
22911         * lib/unistr/u8-strspn.c: New file.
22912         * lib/unistr/u16-strspn.c: New file.
22913         * lib/unistr/u32-strspn.c: New file.
22914         * lib/unistr/u-strspn.h: New file.
22915
22916         * modules/unistr/u8-strstr: New file.
22917         * modules/unistr/u16-strstr: New file.
22918         * modules/unistr/u32-strstr: New file.
22919         * lib/unistr/u8-strstr.c: New file.
22920         * lib/unistr/u16-strstr.c: New file.
22921         * lib/unistr/u32-strstr.c: New file.
22922         * lib/unistr/u-strstr.h: New file.
22923
22924         * modules/unistr/u8-strtok: New file.
22925         * modules/unistr/u16-strtok: New file.
22926         * modules/unistr/u32-strtok: New file.
22927         * lib/unistr/u8-strtok.c: New file.
22928         * lib/unistr/u16-strtok.c: New file.
22929         * lib/unistr/u32-strtok.c: New file.
22930         * lib/unistr/u-strtok.h: New file.
22931
22932         * modules/unistr/u8-uctomb: New file.
22933         * modules/unistr/u16-uctomb: New file.
22934         * modules/unistr/u32-uctomb: New file.
22935         * lib/unistr/u8-uctomb.c: New file.
22936         * lib/unistr/u16-uctomb.c: New file.
22937         * lib/unistr/u32-uctomb.c: New file.
22938
22939         * MODULES.html.sh (Unicode string functions): Add the new modules.
22940
22941 2007-01-08  Bruno Haible  <bruno@clisp.org>
22942
22943         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
22944         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
22945         subdirectories.
22946
22947 2007-01-08  Karl Berry  <karl@gnu.org>
22948
22949         * doc/error.texi: mention that main() fns must set program_name
22950         when progname is used.
22951
22952 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
22953
22954         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
22955         WCTYPE_H is empty, for the benefit of builds from non-distclean
22956         directories.  Problem reported by Eric Blake in
22957         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
22958
22959 2007-01-08  Bruno Haible  <bruno@clisp.org>
22960
22961         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
22962         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
22963         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
22964         PROVIDE_CANONICALIZE_FILENAME_MODE.
22965         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
22966
22967 2007-01-08  Bruno Haible  <bruno@clisp.org>
22968
22969         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
22970         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
22971         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
22972         * lib/fts.c: Likewise.
22973         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
22974
22975 2006-12-25  Bruno Haible  <bruno@clisp.org>
22976
22977         * modules/utf8-ucs4-safe: New file.
22978         * lib/utf8-ucs4-safe.h: New file.
22979         * lib/unistr/utf8-ucs4-safe.c: New file.
22980
22981         * modules/utf16-ucs4-safe: New file.
22982         * lib/utf16-ucs4-safe.h: New file.
22983         * lib/unistr/utf16-ucs4-safe.c: New file.
22984
22985         * MODULES.html.sh (Unicode string functions): Add the new modules.
22986
22987 2007-01-08  Bruno Haible  <bruno@clisp.org>
22988
22989         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
22990         (Depends-on): Add unitypes.
22991         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
22992         (u8_mbtouc_aux): Move out to separate file.
22993         (u8_mbtouc): Use ucs4_t, uint8_t types.
22994         * lib/unistr/utf8-ucs4.c: New file.
22995
22996         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
22997         (Depends-on): Add unitypes.
22998         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
22999         (u16_mbtouc_aux): Move out to separate file.
23000         (u16_mbtouc): Use ucs4_t, uint16_t types.
23001         * lib/unistr/utf16-ucs4.c: New file.
23002
23003         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
23004         (Depends-on): Add unitypes.
23005         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
23006         (u8_uctomb_aux): Move out to separate file.
23007         (u8_uctomb): Use ucs4_t, uint8_t types.
23008         * lib/unistr/ucs4-utf8.c: New file.
23009
23010         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
23011         (Depends-on): Add unitypes.
23012         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
23013         (u16_uctomb_aux): Move out to separate file.
23014         (u16_uctomb): Use ucs4_t, uint16_t types.
23015         * lib/unistr/ucs4-utf16.c: New file.
23016
23017 2006-12-25  Bruno Haible  <bruno@clisp.org>
23018
23019         * modules/unitypes: New file.
23020         * lib/unitypes.h: New file.
23021         * MODULES.html.sh (func_all_modules): New section "Unicode string
23022         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
23023         this section. Add unitypes.
23024
23025 2007-01-08  Bruno Haible  <bruno@clisp.org>
23026
23027         Avoid variable names that conflict with those from libtool.
23028         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
23029         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
23030         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
23031         library_names_spec to acl_library_names_spec, hardcode_* to
23032         acl_hardcode_*.
23033         Reported by Ralf Wildenhues.
23034
23035 2007-01-08  Bruno Haible  <bruno@clisp.org>
23036
23037         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
23038         definition.
23039         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
23040         definition.
23041         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
23042         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
23043         definition.
23044         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
23045         definition.
23046         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
23047         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
23048         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
23049         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
23050         definition.
23051         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
23052         definition.
23053         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
23054         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
23055         GC_USE_<algorithm>.
23056         * lib/gc-libgcrypt.c: Likewise.
23057         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
23058         * modules/gc-arctwo (configure.ac): Likewise.
23059         * modules/gc-des (configure.ac): Likewise.
23060         * modules/gc-hmac-md5 (configure.ac): Likewise.
23061         * modules/gc-hmac-sha1 (configure.ac): Likewise.
23062         * modules/gc-md2 (configure.ac): Likewise.
23063         * modules/gc-md4 (configure.ac): Likewise.
23064         * modules/gc-md5 (configure.ac): Likewise.
23065         * modules/gc-random (configure.ac): Likewise.
23066         * modules/gc-rijndael (configure.ac): Likewise.
23067         * modules/gc-sha1 (configure.ac): Likewise.
23068
23069 2007-01-08  Bruno Haible  <bruno@clisp.org>
23070
23071         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
23072         macro definition.
23073         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
23074         definition.
23075         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
23076         definition.
23077         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
23078         * modules/fcntl-safer (configure.ac): Likewise.
23079         * modules/fopen-safer (configure.ac): Likewise.
23080         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
23081         GNULIB_FWRITEERROR macro definition.
23082
23083 2007-01-08  Bruno Haible  <bruno@clisp.org>
23084
23085         * m4/gnulib-common.m4: New file.
23086         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
23087         (func_get_filelist): Add m4/gnulib-common.m4.
23088
23089 2007-01-08  Bruno Haible  <bruno@clisp.org>
23090
23091         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
23092         command.
23093
23094 2007-01-08  Jim Meyering  <jim@meyering.net>
23095
23096         Use a more robust test for a "can't happen" condition.
23097         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
23098         narrowed the st_size value.  Presuming the "can't happen" condition
23099         is true, that narrowing could conceivably convert an invalid st_size
23100         value into a valid one.  Instead, use a change based on Matthew
23101         Woehlke's original patch.
23102
23103         Slight readability improvement: use an assert-like macro
23104         in place of literal "abort ()" uses.
23105         * lib/fts.c (fts_assert): Define.
23106         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
23107         Use this macro instead of a bare 'abort'.
23108
23109 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
23110
23111         Don't worry about using IRIX 5.3's wctype.h broken definitions;
23112         simply work around them.
23113         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
23114         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
23115         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
23116         declaring.
23117         Don't bother to define as macros, since the standard doesn't require it.
23118         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
23119         longer worry about IRIX 5.3.
23120         (HAVE_WCTYPE_CTMP_BUG): Remove.
23121
23122 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23123
23124         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
23125         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
23126         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
23127         Problems reported by Georg Schwarz for IRIX 5.3.
23128
23129         * gnulib-tool (autoconf_minversion): Take the maximum version number
23130         found, not the minimum.  Problem reported by James Youngman.
23131
23132 2007-01-03  Karl Berry  <karl@gnu.org>
23133
23134         * doc/error.texi: new file, explaining interaction with progname.
23135         * doc/gnulib.texi: include it.  Update copyright.
23136
23137 2007-01-03  Simon Josefsson  <simon@josefsson.org>
23138
23139         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
23140         AC_CANONICAL_HOST, to improve autobuild outputs.
23141
23142 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
23143             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
23144
23145         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
23146         sockets, server sockets, and other file descriptors.  Count errors
23147         to compute the return value.  Reorder the code a bit to be easier
23148         to follow.  Don't set event bits that were not requested (except
23149         POLLERR and POLLHUP).
23150
23151 2007-01-01  Bruno Haible  <bruno@clisp.org>
23152
23153         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
23154
23155 2007-01-03  Jim Meyering  <jim@meyering.net>
23156
23157         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
23158
23159 2007-01-02  Bruno Haible  <bruno@clisp.org>
23160
23161         * modules/settime (Include): Require timespec.h.
23162         * modules/nanosleep (Include): Likewise.
23163
23164 2007-01-01  Bruno Haible  <bruno@clisp.org>
23165
23166         * gnulib-tool (func_emit_copyright_notice): Bump year.
23167         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
23168
23169 2007-01-01  Bruno Haible  <bruno@clisp.org>
23170
23171         Improve support for OpenBSD.
23172         * build-aux/config.rpath (libname_spec): Export.
23173         (library_names_spec): New variable. Export.
23174         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
23175         library_names_spec from the config.rpath output. Locate shared library
23176         through the name pattern in library_names_spec.
23177
23178 2007-01-01  Eric Blake  <ebb9@byu.net>
23179
23180         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
23181
23182 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
23183
23184         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
23185         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
23186         assume the C locale, and avoid an "eval" that could cause trouble.
23187         Problem with SORT reported by Bob Proulx.
23188
23189         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
23190         Define.  Trivial patch from Henning Nielsen Lund, originally
23191         sent to bug-grep@gnu.org today.
23192
23193 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
23194
23195         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
23196         struct stat.  Problem reported by Henning Nielsen Lund.
23197         * lib/acl.c: Include acl.h first, to check interface.  Don't
23198         bother to include sys/types.h and sys/stat.h again.
23199
23200 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
23201
23202         Import the following change from libc; problem reported by
23203         Sven Verdoolaege.
23204
23205         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
23206
23207         [BZ #1373]
23208         * lib/argp.h: Remove __NTH for __argp_usage inline function.
23209
23210 2006-12-28  Jim Meyering  <jim@meyering.net>
23211
23212         * build-aux/announce-gen: Do not assume that the package
23213         builds any of tar.gz, tar.bz2, and .xdelta files.
23214         Suggestion from Simon Josefsson.
23215
23216 2006-12-28  Simon Josefsson  <simon@josefsson.org>
23217
23218         * modules/announce-gen: New file.
23219
23220 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
23221
23222         * lib/mbchar.h: Just include <wctype.h>; the wctype module
23223         handles its gotchas now.
23224         * lib/mbswidth.c: Likewise.
23225         * lib/wcwidth.h: Likewise.
23226         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
23227         and iswcntrl; the wctype module does this stuff now.
23228         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
23229         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
23230         * modules/mbchar (Depends-on): Add wctype.
23231         * modules/mbswidth (Depends-on): Likewise.
23232         * modules/wcwidth (Depends-on): Likewise.
23233
23234 2006-12-27  Eric Blake  <ebb9@byu.net>
23235
23236         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
23237         module uses more than what <wctype.h> is required to provide.
23238
23239 2006-12-26  Eric Blake  <ebb9@byu.net>
23240
23241         * gnulib-tool (sed_extract_prog): Avoid space-tab.
23242
23243 2006-12-26  Eric Blake  <ebb9@byu.net>
23244
23245         * modules/absolute-header: New module.
23246         * modules/fcntl (Depends-on): Depend on it.
23247         * modules/inttypes (Depends-on): Likewise.
23248         * modules/stdint (Depends-on): Likewise.
23249         * modules/sys_stat (Depends-on): Likewise.
23250         * modules/wctype (Depends-on): Likewise.
23251         * MODULES.html.sh (Support for building libraries and
23252         executables): Document it.
23253
23254 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
23255
23256         * gnulib-tool (SED): Remove, undoing previous change.
23257         The problem was that it broke coreutils on Solaris, because
23258         "sed --posix" leaked into a makefile.
23259         (sed): New alias, if 'alias' and GNU sed.
23260
23261 2006-12-24  Jim Meyering  <jim@meyering.net>
23262
23263         Work around an fchownat bug in glibc-2.4:
23264         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
23265         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
23266         in spite of the -P option.
23267         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
23268         New macros.
23269         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
23270         * modules/openat (Files): Add lib/fchownat.c.
23271         * lib/openat.c (fchownat): Don't define here.  Move to...
23272         * lib/fchownat.c: ...this new file.
23273
23274 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
23275
23276         Fix bug reported by Bruno Haible in
23277         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
23278         where quotearg.c didn't compile on Mac OS X 10.2 because it
23279         lacks <wchar.h> and wint_t.
23280         * lib/wctype_.h (__wctype_wint_t): New type.
23281         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
23282         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
23283         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
23284         Arg is now of type __wctype_wint_t, not wint_t.
23285         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
23286         substitute HAVE_WINT_T.
23287         * modules/wctype (Files): Add m4/wint_t.m4.
23288         (wctype.h): Substitute HAVE_WINT_T.
23289
23290 2006-12-23  Bruno Haible  <bruno@clisp.org>
23291
23292         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
23293
23294 2006-12-23  Bruno Haible  <bruno@clisp.org>
23295
23296         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
23297         S_ISLNK.
23298         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
23299         mingw.
23300
23301 2006-12-22  Bruno Haible  <bruno@clisp.org>
23302
23303         * lib/copy-file.c: Include acl.h.
23304         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
23305         Close the file descriptors only after being done with copy_acl.
23306         * modules/copy-file (Depends-on): Add acl.
23307
23308 2006-12-22  Bruno Haible  <bruno@clisp.org>
23309
23310         * gnulib-tool (SED): New variable.
23311         Use $SED instead of sed everywhere.
23312
23313 2006-12-22  Bruno Haible  <bruno@clisp.org>
23314
23315         * modules/no-c++: New file.
23316         * m4/no-c++.m4: New file.
23317         * MODULES.html.sh (Support for building libraries and executables):
23318         Add no-c++.
23319
23320 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
23321
23322         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
23323         Include <limits.h>, and use its INT_MAX to rewrite the
23324         j loop so that it does not overflow 'int'.  Problem reported by
23325         Ralf Wildenhues in
23326         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
23327         Play it safe by shifting left by 1 rather than multiplying by 2,
23328         as GCC is less likely to optimize this away when the value
23329         is signed (when it assumes overflow leads to undefined behavior).
23330         Also, don't assume time_t uses two's complement.
23331
23332 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
23333
23334         * MODULES.html.sh: New module wctype.
23335         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
23336         * lib/fnmatch.c: Don't bother to include <wchar.h> before
23337         <wctype.h>, since the new wctype module should fix this.
23338         * lib/quotearg.c: Include <wctype.h> unconditionally, since
23339         the wctype module should arrange for it.
23340         * lib/regex_internal.h: Likewise.
23341         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
23342         since the wctype module should handle this now.
23343         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
23344         * modules/fnmatch (Depends-on): Add wctype.
23345         * modules/quotearg (Depends-on): Likewise.
23346         * modules/regex (Depends-on): Likewise.
23347
23348 2006-12-19  Bruno Haible  <bruno@clisp.org>
23349
23350         * lib/strdup.h [C++]: Wrap definitions in extern "C".
23351         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
23352
23353 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23354
23355         * modules/savewd (Depends-on): Fix dependency on fcntl.
23356
23357 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
23358
23359         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
23360         conforms to C99, rather than relying on the user's environment
23361         setting of STDINT_H.
23362
23363 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
23364         and Eric Blake  <ebb9@byu.net>
23365
23366         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
23367         This is more consistent with the other defines here.
23368         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
23369         Port to z/OS.  Problem reported by Paul Gilmartin.
23370         Change local vars to use gl_ prefix rather than ac_.
23371         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
23372         with other defines.
23373         * modules/double-slash-root: New module.
23374         * modules/dirname (Files): Remove m4/double-slash-root.m4.
23375         (Depends-on): Add double-slash-root.
23376         * MODULES.html.sh (File system functions): Mention new module.
23377
23378 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
23379
23380         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
23381         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
23382         This is for the benefit of gzip, which doesn't do i18n.
23383
23384 2006-12-12  Jim Meyering  <jim@meyering.net>
23385
23386         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
23387         Reported by Andreas Schwab <schwab@suse.de>.
23388
23389 2006-12-12  Bruno Haible  <bruno@clisp.org>
23390
23391         Merge these changes.
23392         2006-09-05  Bruno Haible  <bruno@clisp.org>
23393         * lib/iconvme.c (iconv_string): No need to save and restore errno when
23394         iconv_alloc succeeded.
23395         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
23396         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
23397         test for " && dest " at the end - dest is always != NULL there. Call
23398         iconv with 4xNULL arguments initially, to reset the state. Call iconv
23399         with 2xNULL arguments, also to flush the state storage. Handle the
23400         IRIX iconv behaviour. Realloc the final result, to throw away unused
23401         memory.
23402
23403 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
23404
23405         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
23406         and fchmodat unconditionally, since glibc 2.4 has them.
23407         Problem reported by Arkadiusz Miskiewicz.
23408
23409 2006-12-10  Bruno Haible  <bruno@clisp.org>
23410
23411         * gnulib-tool (func_import): Show the include files only for those
23412         modules that are copied and specified.
23413         Reported by Karl Berry.
23414
23415 2006-12-08  Jim Meyering  <jim@meyering.net>
23416
23417         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
23418         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
23419
23420         * build-aux/announce-gen: Add two new options, both optional:
23421         --bootstrap-tools=TOOL_LIST
23422               a comma-separated list of tools, e.g.,
23423               autoconf,automake,bison,gnulib
23424         --gnulib-snapshot-date=DATE
23425               if gnulib is in the bootstrap tool list,
23426               then report this as the snapshot date.
23427               If not specified, use the current date/time.
23428               If you specify a date here, be sure it's UTC.
23429
23430 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23431
23432         * tests/test-argp-2.sh: Fix test to match actual output.
23433         (func_compare): Fix sed script to be portable.
23434
23435 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
23436
23437         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
23438         workaround for this case.  It is not autoconfigured now; offhand
23439         it's hard to see how to autoconfigure it.
23440
23441 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
23442
23443         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
23444         a directory that is about to be chowned.  Such a directory's
23445         initial file permissions should permit the owner only and this
23446         should not be changed until after the chown, since the group and
23447         other bits would be incorrect if they granted permission before
23448         the chown.
23449
23450         Fix porting problem for iswctype reported by Georg Schwarz in:
23451         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
23452         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
23453         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
23454         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
23455         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
23456
23457 2006-12-03  Jim Meyering  <jim@meyering.net>
23458
23459         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
23460         p->fts_statp may not yet be defined.
23461         (fts_read): Instead, set it in the caller, once p->fts_statp is
23462         sure to be defined, and corresponds to a top-level directory.
23463         This bug made du -x fail.  Here's the coreutils test case:
23464         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
23465         Reported by Mike Frysinger.
23466
23467 2006-12-01  Jim Meyering  <jim@meyering.net>
23468
23469         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
23470         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
23471         Reported by Simon Josefsson.
23472
23473 2006-11-30  Jim Meyering  <jim@meyering.net>
23474
23475         * m4/warning.m4: Use the all-permissive copyright notice
23476         recommended by RMS (rather than LGPL).
23477         * m4/vararrays.m4: Likewise.
23478         * m4/flexmember.m4: Likewise.
23479
23480 2006-11-29  Bruno Haible  <bruno@clisp.org>
23481
23482         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
23483         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
23484         using +=.
23485         Reported by Simon Josefsson <simon@josefsson.org>.
23486
23487 2006-11-28  James Youngman <jay@gnu.org>
23488
23489         * README: Advise users that they might find the bug-gnulib@gnu.org
23490         and autotools-announce@gnu.org mailing lists useful.
23491
23492 2006-11-28  Bruno Haible  <bruno@clisp.org>
23493
23494         * m4/ptrdiff_max.m4: Remove file.
23495
23496 2006-11-21  Bruno Haible  <bruno@clisp.org>
23497
23498         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
23499         _AC_COMPUTE_INT.
23500         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
23501         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
23502         _AC_COMPUTE_INT.
23503         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
23504         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
23505         _AC_COMPUTE_INT.
23506         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
23507
23508 2006-11-28  Jim Meyering  <jim@meyering.net>
23509
23510         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
23511         warning from "gcc -Wshadow" about shadowing the builtin.
23512
23513 2006-11-27  Bruno Haible  <bruno@clisp.org>
23514
23515         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
23516         _AC_COMPUTE_INT.
23517         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
23518
23519 2006-11-27  Bruno Haible  <bruno@clisp.org>
23520             Paul Eggert  <eggert@cs.ucla.edu>
23521
23522         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
23523
23524 2006-11-26  Bruno Haible  <bruno@clisp.org>
23525
23526         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
23527         noinst_LTLIBRARIES.
23528
23529 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
23530             Bruno Haible  <bruno@clisp.org>
23531
23532         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
23533         if compiling with "gcc -ansi".
23534
23535 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
23536
23537         Fix some incompatibilities with gcc -ansi -pedantic.
23538         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
23539         if compiling pedantically with GCC, unless it's C99 or later.
23540         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
23541         it mishandles gcc -ansi -pedantic as well.
23542         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
23543         if gcc -pedantic.
23544         * lib/regexec.c (check_node_accept_bytes): Don't use auto
23545         initializers for struct if -pedantic, unless it's C99 or later.
23546
23547 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
23548
23549         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
23550         Don't close an fd more than once. Identical atimes indicate
23551         success, not failure.
23552
23553 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
23554
23555         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
23556
23557 2006-11-23  Jim Meyering  <jim@meyering.net>
23558
23559         * build-aux/announce-gen: New file.  From coreutils.
23560
23561 2006-11-22  Jim Meyering  <jim@meyering.net>
23562
23563         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
23564         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
23565         (fts_read): Use a temporary to narrow the overused st_size member
23566         before using it in a switch statement.  Reported by Matthew Woehlke.
23567
23568         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
23569         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
23570
23571 2006-11-20  Bruno Haible  <bruno@clisp.org>
23572
23573         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
23574         changequote instead of pairs of brackets.
23575         Reported by Andreas Schwab <schwab@suse.de>.
23576
23577 2006-11-21  Jim Meyering  <jim@meyering.net>
23578
23579         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
23580         so as to remain compatible with older compilers.
23581         Patch from Michael Deutschmann.
23582
23583 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
23584
23585         * MODULES.html.sh (File system functions): Add openat.
23586
23587         * lib/openat.h (rpl_fstatat): New macro, if
23588         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
23589         (fstatat): Define to rpl_fstatat under the same conditions,
23590         unless COMPILING_FSTATAT.
23591         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
23592         seems to have the bug.
23593         * lib/fstatat.c: New file.
23594         * modules/openat (Files): Add it.
23595
23596 2006-11-20  Bruno Haible  <bruno@clisp.org>
23597
23598         * Makefile: New file.
23599
23600 2006-11-20  Jim Meyering  <jim@meyering.net>
23601
23602         The beginnings of syntax-related checks for gnulib.
23603         * lib/Makefile: New file.
23604         * lib/t-idcache: New script.  Ensure that the two halves of
23605         idcache.c stay in sync.
23606
23607         * lib/idcache.c: Adjust comments in user- and group- portions to
23608         be more accurate, and to be consistent with one another.
23609
23610 2006-11-20  Jim Meyering  <jim@meyering.net>
23611
23612         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
23613         continue using the flexible array member (thus, this module performs
23614         half as many malloc calls), with the addition that...
23615         (getgroup, getuser): Consistently record a non-match via an empty
23616         "name" string, and map an empty string match to a NULL return value.
23617         * modules/idcache (Depends-on): Re-add flexmember.
23618
23619         * lib/idcache.c (getuser): Remove all uses of the register keyword.
23620         (getuidbyname, getgroup, getgidbyname): Likewise.
23621
23622         Use cleaner syntax: NULL rather than 0.
23623         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
23624
23625 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
23626
23627         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
23628         It mishandled the case where the group was missing.
23629         Problem reported by Greg Schafer.
23630         * modules/idcache: Likewise.
23631
23632 2006-11-18  Jim Meyering  <jim@meyering.net>
23633
23634         * check-module (%exempt_header): Add exception for some
23635         conditionally-included headers.
23636
23637         * modules/i-ring (Depends-on): Add verify.
23638         (License): Change to LGPL.
23639
23640 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
23641
23642         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
23643         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
23644         and inttostr.h.  Use snprintf rather than uinttostr, so that
23645         LGPLed code doesn't depend on GPLed.
23646
23647 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
23648
23649         * modules/inline (License): Change from GPL to LGPL.
23650
23651 2006-11-17  Jim Meyering  <jim@meyering.net>
23652
23653         * modules/d-type (License): Switch to LGPL.
23654
23655 2006-11-15  Bruno Haible  <bruno@clisp.org>
23656
23657         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
23658
23659 2006-11-15  Eric Blake  <ebb9@byu.net>
23660
23661         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
23662         the module dependency.
23663
23664 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23665             Bruno Haible  <bruno@clisp.org>
23666
23667         * gnulib-tool (func_create_testdir): Add license consistency check.
23668
23669 2006-11-15  Eric Blake  <ebb9@byu.net>
23670
23671         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
23672         random "(cached)" in configure output.
23673
23674 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23675
23676         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
23677         test for conforming inttypes.h is both announced and cached.
23678
23679         * MODULES.html.sh (seen_modules, seen_files): New variables.
23680         (func_module): Rewrite to use a few less gnulib-tool and sed
23681         invocations.  Avoid a couple of quadratic algorithms for ...
23682         (missed_modules, missed_files): ... these, with ...
23683         (func_append, func_tmpdir): ... these new functions, from
23684         gnulib-tool.  Analogously, install traps for cleanup.
23685
23686         * tests/test-gc.c (main): Remove unused variables.
23687         * tests/test-read-file.c: Include stdlib.h, for 'free'.
23688
23689 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
23690
23691         * modules/inttostr (License): Change to LGPL.
23692
23693 2006-11-14  Eric Blake  <ebb9@byu.net>
23694
23695         * modules/tempname (License): Change to LGPL.
23696
23697 2006-11-14  Eric Blake  <ebb9@byu.net>
23698
23699         * doc/functions.texi (Function Portability): *printf functions on
23700         Cygwin now understand all POSIX size specifiers.
23701
23702 2006-11-14  Bruno Haible  <bruno@clisp.org>
23703
23704         * modules/c-ctype (License): Change to LGPL.
23705
23706 2006-11-12  Bruno Haible  <bruno@clisp.org>
23707
23708         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
23709         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
23710         for GNOME libraries, for which the include files are installed in
23711         subdirectories of $prefix/include.
23712
23713 2006-11-12  Bruno Haible  <bruno@clisp.org>
23714
23715         * m4/lib-link.m4: Require at least autoconf-2.54.
23716         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
23717         name to underscores for the --with option.
23718
23719 2006-11-13  Bruno Haible  <bruno@clisp.org>
23720
23721         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
23722         the tests directory.
23723         Reported by Ralf Wildenhues.
23724
23725 2006-11-13  Bruno Haible  <bruno@clisp.org>
23726
23727         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
23728         (func_emit_initmacro_end): Undo the override here.
23729         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
23730         Works around the famous automake error in coreutils.
23731
23732 2006-11-13  Eric Blake  <ebb9@byu.net>
23733
23734         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
23735         element, not its node.
23736
23737 2006-11-12  Bruno Haible  <bruno@clisp.org>
23738
23739         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
23740         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
23741
23742 2006-11-12  Bruno Haible  <bruno@clisp.org>
23743
23744         * gnulib-tool: New option --local-symlink.
23745         (func_usage): Document it.
23746         (lsymbolic): New variable.
23747         (func_import, func_create_testdir): If --symlink was not specified,
23748         test whether --local-symlink was specified and the file comes from
23749         the local_gnulib_dir.
23750
23751 2006-11-12  Bruno Haible  <bruno@clisp.org>
23752
23753         * gnulib-tool (func_ln): New function.
23754         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
23755
23756 2006-11-12  Bruno Haible  <bruno@clisp.org>
23757
23758         Finish support for source files in subdirectories.
23759         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
23760         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
23761         AUTOMAKE_OPTIONS.
23762         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
23763
23764 2006-11-12  Bruno Haible  <bruno@clisp.org>
23765
23766         * gnulib-tool (func_get_automake_snippet): Synthesize also an
23767         EXTRA_lib_SOURCES augmentation.
23768         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
23769
23770 2006-11-12  Jim Meyering  <jim@meyering.net>
23771
23772         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
23773         file descriptors.  This also averts a failure on systems with
23774         native openat support when a traversed directory lacks "x" access.
23775         * lib/fts_.h: Include "i-ring.h"
23776         (struct FTS) [fts_fd_ring]: New member.
23777         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
23778         (FCHDIR): Add parentheses.
23779         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
23780         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
23781         When descending, rather than simply closing the previous
23782         fts_cwd_fd value, push that file descriptor onto the ring.
23783         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
23784         (fts_open): Initialize the new fd_ring member.
23785         (fts_close): Clear the ring.
23786         (fts_safe_changedir): When possible, use our new fd_ring to skip
23787         the diropen and fstat and dev/ino comparison that would normally
23788         accompany a virtual `chdir ("..")'.
23789
23790         * modules/fts (Depends-on): Add i-ring.
23791         * modules/i-ring: New module.
23792         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
23793         * m4/i-ring.m4: New file.
23794
23795 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23796
23797         * gnulib-tool (func_create_testdir): Fix replacement of
23798         `build-aux' in configure.ac.  Run autotools in gltests
23799         subdirectory.
23800         (func_create_testdir, func_create_megatestdir, test): There is
23801         no need for '--force' in most autotool invocations in a new
23802         tree.  Actually fail the whole test if any of the tools, or the
23803         configure or make stages fail.
23804
23805         Sync from Automake.
23806         * build-aux/gnupload: Revert last change.  Add pointer to upload
23807         instructions of the GNU Maintenance Instructions.
23808         Suggestion by Karl Berry.
23809
23810 2006-11-10  Jim Meyering  <jim@meyering.net>
23811
23812         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
23813
23814 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
23815
23816         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
23817         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
23818         (bind_textdomain_codeset) [! ENABLE_NLS]:
23819         Evaluate all the arguments.  That way, callers get compatible behavior
23820         if the arguments have side effects.  Also, it avoids some GCC
23821         diagnostics in some cases; Joel E. Denny reported problems when Bison
23822         was configured with --enable-gcc-warnigs.
23823
23824 2006-11-10  Jim Meyering  <jim@meyering.net>
23825
23826         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
23827         relevant options in CFLAGS (like -O, -fno-inline) are taken into
23828         account.
23829
23830 2006-11-10  Jim Meyering  <jim@meyering.net>
23831
23832         * modules/inline: New file/module.
23833         * modules/xalloc (Files): Remove m4/inline.m4.
23834         (Depends-on): Add inline, instead.
23835         * modules/oset: Likewise.
23836         * modules/list: Likewise.
23837
23838 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
23839
23840         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
23841         Problem reported by Matthew Woehlke.
23842
23843 2006-11-09  Bruno Haible  <bruno@clisp.org>
23844
23845         * lib/tempname.c (gen_tempname): Remove variant that invokes
23846         __gen_tempname.
23847         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
23848         __gen_tempname.
23849
23850 2006-11-08  Bruno Haible  <bruno@clisp.org>
23851
23852         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
23853         to 'yes' instead of 'cross-compiling'.
23854
23855 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
23856
23857         * lib/quotearg.h (quotearg_free): New decl.
23858         * lib/quotearg.c (quotearg_free): New function.
23859         (slot0, nslots, slotvec0, slotvec):
23860         Now file-scope so that quotearg_free can get at them.
23861
23862 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23863
23864         Sync from Automake.
23865         * build-aux/gnupload: Add missing 'gnu' to example URL.
23866         Report by Karl Berry.
23867
23868 2006-11-08  Bruno Haible  <bruno@clisp.org>
23869
23870         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
23871         Suggested by Paul Eggert.
23872
23873 2006-11-08  Jim Meyering  <jim@meyering.net>
23874
23875         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
23876         It's already included if !_LIBC.
23877         (fts_safe_changedir): Add a comment.
23878
23879 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
23880
23881         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
23882         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
23883         Matthew Woehlke.
23884
23885         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
23886         definitions up, to avoid colliding with change below.
23887         (static_inline) [HAVE_INLINE]: New macro.
23888         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
23889         Provide extern decls when !HAVE_INLINE.  Do not define unless
23890         static_inline is defined, either by us or by xmalloc.c.  Use
23891         static_inline rather than static inline.
23892         (XCALLOC): Optimize sizeof(T) = 1 case.
23893         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
23894
23895 2006-11-07  Bruno Haible  <bruno@clisp.org>
23896
23897         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
23898         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
23899         AC_C_INLINE.
23900         * modules/xalloc (Files): Add m4/inline.m4.
23901
23902 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23903
23904         * README: Fix typo.
23905         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
23906         (Miscellanous Notes): ...from this.
23907
23908 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
23909
23910         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
23911         Mention that offsetof should be used instead of sizeof.
23912         From Bruno Haible.
23913
23914 2006-11-07  Bruno Haible  <bruno@clisp.org>
23915
23916         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
23917
23918 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
23919
23920         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
23921         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
23922         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
23923         (gl_tree_add_before, gl_tree_add_after):
23924         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
23925         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
23926         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
23927         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
23928         (gl_linked_add_after, gl_linked_add_at): Likewise.
23929         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
23930         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
23931         (gl_tree_add_before, gl_tree_add_after): Likewise.
23932         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
23933         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
23934         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
23935
23936 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23937
23938         * lib/gl_oset.h: Use C comment style, not C++ comment style.
23939
23940 2006-11-06  Bruno Haible  <bruno@clisp.org>
23941
23942         * m4/inline.m4: New file.
23943         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
23944         * modules/list (Files): Add m4/inline.m4.
23945         * modules/oset (Files): Likewise.
23946
23947 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
23948
23949         * lib/idcache.c: Include <stddef.h>, for offsetof.
23950         (struct userid.name): Change from char * to a flexible array member.
23951         All uses changed.
23952         * modules/idcache (Depends-on): Add flexmember.
23953
23954         * MODULES.html.sh (Core language properties): New module flexmember.
23955         * modules/flexmember, m4/flexmember.m4: New files.
23956
23957         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
23958         inline functions that are identical with the old xnmalloc_inline,
23959         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
23960         that we can avoid some unnecessary integer multiplications and
23961         divisions in the common case where the element size is known at
23962         compile time.
23963         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
23964         needed.
23965         (xnboundedmalloc): Remove.
23966         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
23967         arguments, for consistency with rest of this header.
23968         (xcharalloc): Rewrite using XNMALLOC.
23969         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
23970         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
23971         versions have been moved to lib/xalloc.h and renamed to be the
23972         non-*_inline versions.
23973         (xmalloc, xrealloc): Implement without reference to the xnmalloc
23974         and xnrealloc functions, since those functions are now inline and
23975         now call us.
23976         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
23977         renaming described above.
23978         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
23979         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
23980         captures the dependency in AC_C_INLINE.
23981
23982         New module canonicalize-lgpl, proposed by Charles Wilson in
23983         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
23984         with a few small changes afterwards.
23985         * MODULES.html.sh (File system functions): New module
23986         canonicalize-lgpl.
23987         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
23988         and canonicalize_file_name.
23989         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
23990         * modules/canonicalize-lgpl: New files.
23991
23992 2006-11-05  Bruno Haible  <bruno@clisp.org>
23993
23994         * gnulib-tool (func_import, func_create_testdir): Create directories
23995         also for files in subdirectories of lib/.
23996
23997 2006-11-05  Bruno Haible  <bruno@clisp.org>
23998
23999         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
24000         ANSI C compliant.
24001
24002 2006-11-03  Bruno Haible  <bruno@clisp.org>
24003
24004         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
24005         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
24006         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
24007         (xnboundedmalloc): New inline function.
24008         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
24009         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
24010         xmalloc.
24011         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
24012         xmalloc.
24013         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
24014         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
24015         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
24016         xmalloc.
24017         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
24018         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
24019         xmalloc.
24020         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
24021         gl_tree_add_after): Use XMALLOC instead of xmalloc.
24022         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
24023         xmalloc.
24024         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
24025         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
24026         gl_tree_add_after): Use XMALLOC instead of xmalloc.
24027         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
24028         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
24029         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
24030         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
24031
24032 2006-11-03  Bruno Haible  <bruno@clisp.org>
24033
24034         * lib/c-ctype.h [C++]: Define functions without name mangling.
24035         * lib/fwriteerror.h [C++]: Likewise.
24036         * lib/gcd.h [C++]: Likewise.
24037         * lib/linebreak.h [C++]: Likewise.
24038
24039 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
24040
24041         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
24042         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
24043         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
24044         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
24045         Check for functions and headers just once.
24046         Check for declaration of canonicalize_file_name.
24047         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
24048
24049 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
24050
24051         * gnulib-tool (func_import): Fix typo in actioncmd.
24052
24053 2006-11-02  Bruno Haible  <bruno@clisp.org>
24054
24055         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
24056         newline sequence in the Makefile.am snippet as a space, like "make"
24057         does.
24058         Reported by Roger Persson <perrog@gmail.com>.
24059
24060 2006-11-01  Bruno Haible  <bruno@clisp.org>
24061
24062         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
24063         already declared in <string.h>.
24064         * lib/strcase.h (strncasecmp): Don't declare it if yes.
24065
24066 2006-11-01  Bruno Haible  <bruno@clisp.org>
24067
24068         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
24069         * lib/strcase.h: Include <string.h>.
24070         (strcasecmp): Define to rpl_strcasecmp here.
24071
24072 2006-11-01  Bruno Haible  <bruno@clisp.org>
24073
24074         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
24075
24076 2006-11-01  Eric Blake  <ebb9@byu.net>
24077
24078         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
24079
24080         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
24081
24082 2006-10-29  Bruno Haible  <bruno@clisp.org>
24083
24084         Make it compile in C++ mode.
24085         * lib/full-write.c (full_rw): Add a cast.
24086
24087 2006-11-01  Bruno Haible  <bruno@clisp.org>
24088
24089         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
24090         be POSIX compliant.
24091         Reported by Roger Persson <perrog@gmail.com>.
24092
24093 2006-11-01  Eric Blake  <ebb9@byu.net>
24094
24095         * lib/getopt_.h: Fix comments.
24096
24097 2006-10-31  Eric Blake  <ebb9@byu.net>
24098
24099         * modules/tmpdir (Depends-on): Add sys_stat.
24100         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
24101         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
24102         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
24103         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
24104         tempname.
24105
24106 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
24107
24108         Avoid some C++ diagnostics reported by Bruno Haible.
24109         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
24110         xmalloc.
24111         (quotearg_alloc): Use xcharalloc rather than xmalloc.
24112         (struct slotvec): Move to top level.
24113         (quotearg_n_options): Rewrite to avoid xmalloc.
24114         * lib/xalloc.h (xcharalloc): New function.
24115         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
24116         [defined __cplusplus]: Add function template that provides result
24117         type propagation.  This part of the change is from Bruno Haible.
24118
24119 2006-10-29  Bruno Haible  <bruno@clisp.org>
24120
24121         Make it compile in C++ mode.
24122         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
24123         * lib/strnlen1.c (strnlen1): Cast memchr result.
24124         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
24125         * lib/clean-temp.c (string_equals, string_hash): Add casts.
24126         (create_temp_dir): Rename local variable 'template'.
24127         (compile_csharp_using_sscli): Add cast.
24128         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
24129         * lib/findprog.c (find_in_path): Likewise.
24130         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
24131         * lib/wait-process.c (register_slave_subprocess): Likewise.
24132
24133 2006-10-22  Bruno Haible  <bruno@clisp.org>
24134
24135         * modules/tsearch: New file.
24136         * lib/tsearch.h: New file.
24137         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
24138         * m4/tsearch.m4: New file.
24139         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
24140
24141 2006-10-29  Eric Blake  <ebb9@byu.net>
24142
24143         * lib/arcfour.c: Assume config.h.
24144         * lib/arctwo.c: Likewise.
24145         * lib/base64.c: Likewise.
24146         * lib/check-version.c: Likewise.
24147         * lib/crc.c: Likewise.
24148         * lib/des.c: Likewise.
24149         * lib/gc-gnulib.c: Likewise.
24150         * lib/gc-libgcrypt.c: Likewise.
24151         * lib/gc-pbkdf2-sha1.c: Likewise.
24152         * lib/getaddrinfo.c: Likewise.
24153         * lib/getdelim.c: Likewise.
24154         * lib/getline.c: Likewise.
24155         * lib/hmac-md5.c: Likewise.
24156         * lib/hmac-sha1.c: Likewise.
24157         * lib/iconvme.c: Likewise.
24158         * lib/md2.c: Likewise.
24159         * lib/md4.c: Likewise.
24160         * lib/memxor.c: Likewise.
24161         * lib/read-file.c: Likewise.
24162         * lib/readline.c: Likewise.
24163         * lib/rijndael-alg-fst.c: Likewise.
24164         * lib/rijndael-api-fst.c: Likewise.
24165         * lib/xgetdomainname.c: Likewise.
24166
24167 2006-10-28  Eric Blake  <ebb9@byu.net>
24168
24169         * lib/xstrndup.c: Assume config.h.
24170
24171 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
24172
24173         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
24174         stat-macros.h is now for our own macros, whereas stat_h is for
24175         macros in the <sys/stat.h> name space.
24176         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
24177         (STAT_MACROS_H): Remove.
24178         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
24179         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
24180         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
24181         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
24182         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
24183         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
24184         Move these macros to ...
24185         * lib/stat_.h: here.  Don't include stat-macros.h.
24186         * lib/canonicalize.c: Don't include stat-macros.h.
24187         * lib/chown.c: Likewise.
24188         * lib/euidaccess.c: Likewise.
24189         * lib/file-type.c: Likewise.
24190         * lib/filemode.c: Likewise.
24191         * lib/glob.c: Likewise.
24192         * lib/isapipe.c: Likewise.
24193         * lib/lchown.c: Likewise.
24194         * lib/lstat.c: Likewise.
24195         * lib/mkdir-p.c: Likewise.
24196         * lib/rmdir.c: Likewise.
24197         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
24198         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
24199         unless mkdir isn't declared, to speed up 'configure'.
24200         Always create sys/stat.h, since it's unlikely any real sys/stat.h
24201         would define all the S_* symbols.
24202         * modules/canonicalize (Depends-on):
24203         Depend on sys_stat, not stat-macros.
24204         * modules/chown: Likewise.
24205         * modules/euidaccess: Likewise.
24206         * modules/filemode: Likewise.
24207         * modules/file-type: Likewise.
24208         * modules/glob: Likewise.
24209         * modules/isapipe: Likewise.
24210         * modules/lchown: Likewise.
24211         * modules/lstat: Likewise.
24212         * modules/mkancesdirs: Likewise.
24213         * modules/rmdir: Likewise.
24214         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
24215         * modules/modechange: Likewise.
24216         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
24217         (configure.ac): Remove gl_STAT_MACROS.
24218         * modules/sys_stat (Depends-on): Remove stat-macros.
24219
24220 2006-10-27  Bruno Haible  <bruno@clisp.org>
24221
24222         * m4/signed.m4: Remove file.
24223         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
24224         invocation.
24225         * modules/vasnprintf (Files): Remove m4/signed.m4.
24226
24227 2006-10-27  Bruno Haible  <bruno@clisp.org>
24228
24229         Update to GNU gettext 0.16.
24230         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
24231         m4/inttypes-h.m4, m4/signed.m4.
24232         * m4/gettext.m4: Update to GNU gettext 0.16.
24233         * m4/intl.m4: New file, from GNU gettext.
24234         * m4/intldir.m4: New file, from GNU gettext.
24235         * config/srclist.txt: Update
24236
24237 2006-10-27  Eric Blake  <ebb9@byu.net>
24238
24239         * MODULES.html.sh: Document tempname.
24240         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
24241         dependencies.
24242         (Files): Move lib/tempname.c...
24243         * modules/tempname: ...to this new module.
24244         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
24245         (gl_PREREQ_TEMPNAME): Move...
24246         * m4/tempname.m4: ...to this new file.
24247         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
24248         * modules/sys_stat (Depends-on): Add stat-macros.
24249         * lib/stat_.h (includes): Pick up stat macros.
24250         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
24251         if stat macros are broken.
24252         * lib/tempname.c (includes): No need to include "stat-macros.h".
24253         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
24254         (direxists, __path_search) [!_LIBC]: Don't compile these in
24255         gnulib; the tmpdir module covers that.
24256         * lib/tempname.h: New file.
24257
24258 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
24259
24260         * COPYING: Explain how gnulib-tool converts licence headers.
24261         Almost all wording by Eric Blake.
24262
24263 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
24264
24265         * lib/mbchar.h (is_basic_table): Make read-only.
24266         * lib/mbchar.c (is_basic_table): Likewise.
24267         Reported by John Darrington.
24268
24269 2006-10-25  Bruno Haible  <bruno@clisp.org>
24270
24271         * lib/progname.h (set_program_name): Undefine before defining.
24272
24273 2006-10-25  Bruno Haible  <bruno@clisp.org>
24274
24275         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
24276         false for non-gcc C++ compilers.
24277         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
24278
24279 2006-10-24  Bruno Haible  <bruno@clisp.org>
24280
24281         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
24282         iconv implementations like Irix iconv.
24283
24284 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
24285
24286         * modules/vararrays: New file.
24287         * m4/vararrays.m4: New file, taken from diffutils.
24288         * MODULES.html.sh: New module vararrays.
24289
24290 2006-10-24  Karl Berry  <karl@gnu.org>
24291
24292         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
24293         Don't call GNU Unix.
24294
24295 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24296
24297         * users.txt: Add Libtool.
24298
24299         Sync from Libtool:
24300
24301         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
24302
24303         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
24304         to gnulib's policy of including config.h unconditionally.
24305
24306 2006-10-24  Bruno Haible  <bruno@clisp.org>
24307
24308         * modules/wcwidth (Files): Add m4/wint_t.m4.
24309         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
24310         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
24311
24312 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
24313
24314         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
24315         to pacify GCC with some -W flags enabled.  Problem reported by
24316         Bruno Haible.
24317
24318 2006-10-24  Jim Meyering  <jim@meyering.net>
24319
24320         * MODULES.html.sh: Remove uinttostr.  It's not a module.
24321         Reported by Karl Berry.
24322
24323 2006-10-23  Bruno Haible  <bruno@clisp.org>
24324
24325         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
24326
24327 2006-10-24  Bruno Haible  <bruno@clisp.org>
24328
24329         * lib/gl_list.h: Use C comment style, not C++ comment style.
24330
24331 2006-10-23  Eric Blake  <ebb9@byu.net>
24332
24333         * lib/getaddrinfo.c (includes): Add missing include.
24334
24335 2006-10-23  Bruno Haible  <bruno@clisp.org>
24336             Paul Eggert  <eggert@cs.ucla.edu>
24337
24338         Ability to rename obstack_free.
24339         * lib/obstack.h (__obstack_free): New macro. Declare instead of
24340         obstack_free.
24341         (obstack_free): Invoke the __obstack_free macro.
24342         * lib/obstack.c (obstack_free): Use __obstack_free macro.
24343
24344 2006-10-23  Bruno Haible  <bruno@clisp.org>
24345             Paul Eggert  <eggert@cs.ucla.edu>
24346
24347         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
24348         __argc, __argv from the declaration. (They are defined as macros on
24349         mingw.)
24350
24351 2006-10-22  Bruno Haible  <bruno@clisp.org>
24352
24353         * doc/gnulib-intro.texi: New file.
24354         * doc/gnulib.texi: Include it.
24355
24356 2006-10-21  Bruno Haible  <bruno@clisp.org>
24357
24358         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
24359         "Introduction", "Miscellanous Notes", "Particular Modules".
24360
24361 2006-10-21  Bruno Haible  <bruno@clisp.org>
24362
24363         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
24364         Change mostlyclean-local rule to avoid sh syntax error from bash
24365         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
24366
24367 2006-10-23  Jim Meyering  <jim@meyering.net>
24368
24369         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
24370         in place of snprintf.
24371
24372         * modules/inttostr (Files): Add lib/uinttostr.c.
24373         * lib/uinttostr.c (inttostr): New file/function.
24374         * lib/inttostr.h (uinttostr): Declare.
24375         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
24376         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
24377         Add uinttostr.
24378         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
24379
24380 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
24381
24382         * lib/canonicalize.c (ELOOP): Define if not already defined.
24383         Problem reported by Bruno Haible in
24384         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
24385
24386 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
24387
24388         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
24389         Problem reported by Perry Smith and Ville Laurikari.
24390
24391         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
24392         uses.
24393
24394 2006-10-19  Bruno Haible  <bruno@clisp.org>
24395
24396         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
24397         for mingw.
24398
24399 2006-10-19  Bruno Haible  <bruno@clisp.org>
24400
24401         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
24402         Needed for mingw.
24403
24404 2006-10-19  Bruno Haible  <bruno@clisp.org>
24405
24406         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
24407
24408 2006-10-19  Bruno Haible  <bruno@clisp.org>
24409
24410         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
24411         it.
24412
24413 2006-10-19  Bruno Haible  <bruno@clisp.org>
24414
24415         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
24416         invocation.
24417
24418 2006-10-19  Bruno Haible  <bruno@clisp.org>
24419
24420         * gnulib-tool (func_create_testdir): Don't include ftruncate and
24421         mountlist by default.
24422
24423 2006-10-16  Bruno Haible  <bruno@clisp.org>
24424
24425         * lib/c-strstr.c: Include c-strstr.h.
24426
24427 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
24428
24429         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
24430         in a slash.
24431
24432 2006-10-18  Bruno Haible  <bruno@clisp.org>
24433
24434         * lib/lock.h [C++]: Wrap definitions in extern "C".
24435
24436 2006-10-18  Bruno Haible  <bruno@clisp.org>
24437
24438         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
24439         gl_LIBOBJS list.
24440
24441 2006-10-18  Bruno Haible  <bruno@clisp.org>
24442
24443         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
24444
24445 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
24446
24447         * lib/xstrtol.h: Include gettext.h.
24448         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
24449         Problem reported by Eric Blake.
24450         * modules/xstrtol (Depends-on): Add gettext-h.
24451
24452 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
24453
24454         * lib/strftime.c (advance): New macro.
24455         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
24456         incomplete type, so you can't add 0 to it.  Problem and patch
24457         reported by Eelco Dolstra for dietlibc.
24458
24459 2006-10-18  Jim Meyering  <jim@meyering.net>
24460
24461         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
24462         type for a local, and rename it: s/up/user_proc/.
24463
24464 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
24465
24466         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
24467         READ_UTMP_USER_PROCESS.
24468         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
24469
24470 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
24471
24472         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
24473         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
24474
24475 2006-10-17  Eric Blake  <ebb9@byu.net>
24476
24477         * lib/sigprocmask.c (sigprocmask): Fix typo.
24478
24479         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
24480
24481         * modules/clean-temp (Makefile.am): Don't add to make output...
24482         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
24483         config.h.
24484
24485 2006-10-17  Bruno Haible  <bruno@clisp.org>
24486
24487         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
24488         differently if DEFAULT_TEXT_DOMAIN is set.
24489
24490 2006-10-16  Bruno Haible  <bruno@clisp.org>
24491
24492         * lib/clean-temp.c: Include fwriteerror.h.
24493
24494 2006-10-16  Bruno Haible  <bruno@clisp.org>
24495
24496         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
24497
24498 2006-10-16  Bruno Haible  <bruno@clisp.org>
24499
24500         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
24501         * lib/sigprocmask.h: Include <sys/types.h>.
24502         (sigset_t): Use the system's definition if present.
24503
24504 2006-10-17  Eric Blake  <ebb9@byu.net>
24505
24506         * lib/xvasprintf.c (includes): Assume config.h.
24507         * lib/xasprintf.c (includes): Likewise.
24508
24509 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
24510
24511         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
24512         at least as wide as intmax_t.
24513
24514 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
24515
24516         (Imported from Automake.)
24517         * build-aux/gnupload: Update to version 1.1 of directive file.
24518
24519 2006-10-16  Eric Blake  <ebb9@byu.net>
24520
24521         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
24522         match Automake 1.10a.
24523
24524 2006-10-14  Bruno Haible  <bruno@clisp.org>
24525
24526         * modules/sigprocmask: New file.
24527         * lib/sigprocmask.h: New file.
24528         * lib/sigprocmask.c: New file.
24529         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
24530         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
24531         request sigprocmask.o.
24532         (gl_PREREQ_SIGPROCMASK): New macro.
24533         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
24534         (Depends-on): Add sigprocmask.
24535         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
24536         gt_SIGNALBLOCKING. Test for 'raise' only once.
24537         * lib/fatal-signal.c: Include sigprocmask.h.
24538         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
24539         unblock_fatal_signals): Define always.
24540         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24541         sigprocmask.
24542
24543 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
24544
24545         Sync from Automake.
24546         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
24547         which incorrectly sets the mode of an existing destination
24548         directory.  In some cases the unpatched install-sh could do the
24549         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
24550         system.  We hope this is rare in practice, but it's clearly worth
24551         fixing.  Problem reported by Alex Unleashed in
24552         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
24553         Also, don't bother to check for -m bugs unless we're using -m;
24554         suggested by Stepan Kasal.
24555
24556 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24557
24558         Sync from Automake.
24559         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
24560         `-c' flag, so they appear at the same position as in %FASTDEP%
24561         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
24562         which ignores unknown options only after the first non-option.
24563         Bug report against M4 by Nelson H. F. Beebe.
24564
24565 2006-10-13  Jim Meyering  <jim@meyering.net>
24566
24567         Fix a bug in yesterday's change.
24568         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
24569         p->fts_statp->st_dev would be used uninitialized.
24570         Ensures that we always call fts_stat on the very first entry.
24571         Miklos Szeredi reported that find -xdev stopped working.
24572
24573 2006-10-12  Bruno Haible  <bruno@clisp.org>
24574
24575         * gnulib-tool (func_get_automake_snippet): Append an automatically
24576         computed EXTRA_DIST augmentation.
24577         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
24578         * modules/alloca-opt (Makefile.am): Likewise.
24579         * modules/allocsa (Makefile.am): Likewise.
24580         * modules/arcfour (Makefile.am): Likewise.
24581         * modules/arctwo (Makefile.am): Likewise.
24582         * modules/argmatch (Makefile.am): Likewise.
24583         * modules/argz (Makefile.am): Likewise.
24584         * modules/atexit (Makefile.am): Likewise.
24585         * modules/backupfile (Makefile.am): Likewise.
24586         * modules/byteswap (Makefile.am): Likewise.
24587         * modules/c-strtod (Makefile.am): Likewise.
24588         * modules/c-strtold (Makefile.am): Likewise.
24589         * modules/calloc (Makefile.am): Likewise.
24590         * modules/canon-host (Makefile.am): Likewise.
24591         * modules/canonicalize (Makefile.am): Likewise.
24592         * modules/chdir-long (Makefile.am): Likewise.
24593         * modules/chdir-safer (Makefile.am): Likewise.
24594         * modules/check-version (Makefile.am): Likewise.
24595         * modules/chown (Makefile.am): Likewise.
24596         * modules/cloexec (Makefile.am): Likewise.
24597         * modules/close-stream (Makefile.am): Likewise.
24598         * modules/closeout (Makefile.am): Likewise.
24599         * modules/crc (Makefile.am): Likewise.
24600         * modules/csharpexec (Makefile.am): Likewise.
24601         * modules/cycle-check (Makefile.am): Likewise.
24602         * modules/des (Makefile.am): Likewise.
24603         * modules/dev-ino (Makefile.am): Likewise.
24604         * modules/dirfd (Makefile.am): Likewise.
24605         * modules/dirname (Makefile.am): Likewise.
24606         * modules/dup2 (Makefile.am): Likewise.
24607         * modules/eealloc (Makefile.am): Likewise.
24608         * modules/error (Makefile.am): Likewise.
24609         * modules/euidaccess (Makefile.am): Likewise.
24610         * modules/exclude (Makefile.am): Likewise.
24611         * modules/exitfail (Makefile.am): Likewise.
24612         * modules/fcntl-safer (Makefile.am): Likewise.
24613         * modules/fcntl (Makefile.am): Likewise.
24614         * modules/file-type (Makefile.am): Likewise.
24615         * modules/fileblocks (Makefile.am): Likewise.
24616         * modules/filemode (Makefile.am): Likewise.
24617         * modules/filenamecat (Makefile.am): Likewise.
24618         * modules/fnmatch (Makefile.am): Likewise.
24619         * modules/fopen-safer (Makefile.am): Likewise.
24620         * modules/fpending (Makefile.am): Likewise.
24621         * modules/fprintftime (Makefile.am): Likewise.
24622         * modules/free (Makefile.am): Likewise.
24623         * modules/fsusage (Makefile.am): Likewise.
24624         * modules/ftruncate (Makefile.am): Likewise.
24625         * modules/fts (Makefile.am): Likewise.
24626         * modules/gc-arcfour (Makefile.am): Likewise.
24627         * modules/gc-des (Makefile.am): Likewise.
24628         * modules/gc-hmac-md5 (Makefile.am): Likewise.
24629         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
24630         * modules/gc-md4 (Makefile.am): Likewise.
24631         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
24632         * modules/gc-sha1 (Makefile.am): Likewise.
24633         * modules/gc (Makefile.am): Likewise.
24634         * modules/getaddrinfo (Makefile.am): Likewise.
24635         * modules/getcwd (Makefile.am): Likewise.
24636         * modules/getdelim (Makefile.am): Likewise.
24637         * modules/getdomainname (Makefile.am): Likewise.
24638         * modules/getgroups (Makefile.am): Likewise.
24639         * modules/gethostname (Makefile.am): Likewise.
24640         * modules/gethrxtime (Makefile.am): Likewise.
24641         * modules/getline (Makefile.am): Likewise.
24642         * modules/getloadavg (Makefile.am): Likewise.
24643         * modules/getlogin_r (Makefile.am): Likewise.
24644         * modules/getndelim2 (Makefile.am): Likewise.
24645         * modules/getopt (Makefile.am): Likewise.
24646         * modules/getpagesize (Makefile.am): Likewise.
24647         * modules/getpass-gnu (Makefile.am): Likewise.
24648         * modules/getpass (Makefile.am): Likewise.
24649         * modules/getsubopt (Makefile.am): Likewise.
24650         * modules/gettime (Makefile.am): Likewise.
24651         * modules/gettimeofday (Makefile.am): Likewise.
24652         * modules/getugroups (Makefile.am): Likewise.
24653         * modules/getusershell (Makefile.am): Likewise.
24654         * modules/glob (Makefile.am): Likewise.
24655         * modules/group-member (Makefile.am): Likewise.
24656         * modules/hard-locale (Makefile.am): Likewise.
24657         * modules/hash (Makefile.am): Likewise.
24658         * modules/hmac-md5 (Makefile.am): Likewise.
24659         * modules/hmac-sha1 (Makefile.am): Likewise.
24660         * modules/human (Makefile.am): Likewise.
24661         * modules/idcache (Makefile.am): Likewise.
24662         * modules/imaxabs (Makefile.am): Likewise.
24663         * modules/imaxdiv (Makefile.am): Likewise.
24664         * modules/inet_ntop (Makefile.am): Likewise.
24665         * modules/inet_pton (Makefile.am): Likewise.
24666         * modules/intprops (Makefile.am): Likewise.
24667         * modules/inttostr (Makefile.am): Likewise.
24668         * modules/inttypes (Makefile.am): Likewise.
24669         * modules/isapipe (Makefile.am): Likewise.
24670         * modules/javaversion (Makefile.am): Likewise.
24671         * modules/lchmod (Makefile.am): Likewise.
24672         * modules/lchown (Makefile.am): Likewise.
24673         * modules/localcharset (Makefile.am): Likewise.
24674         * modules/long-options (Makefile.am): Likewise.
24675         * modules/lstat (Makefile.am): Likewise.
24676         * modules/malloc (Makefile.am): Likewise.
24677         * modules/mathl (Makefile.am): Likewise.
24678         * modules/mbchar (Makefile.am): Likewise.
24679         * modules/md2 (Makefile.am): Likewise.
24680         * modules/md4 (Makefile.am): Likewise.
24681         * modules/md5 (Makefile.am): Likewise.
24682         * modules/memcasecmp (Makefile.am): Likewise.
24683         * modules/memchr (Makefile.am): Likewise.
24684         * modules/memcmp (Makefile.am): Likewise.
24685         * modules/memcoll (Makefile.am): Likewise.
24686         * modules/memcpy (Makefile.am): Likewise.
24687         * modules/memmem (Makefile.am): Likewise.
24688         * modules/memmove (Makefile.am): Likewise.
24689         * modules/mempcpy (Makefile.am): Likewise.
24690         * modules/memrchr (Makefile.am): Likewise.
24691         * modules/memset (Makefile.am): Likewise.
24692         * modules/memxor (Makefile.am): Likewise.
24693         * modules/mkancesdirs (Makefile.am): Likewise.
24694         * modules/mkdir-p (Makefile.am): Likewise.
24695         * modules/mkdir (Makefile.am): Likewise.
24696         * modules/mkdtemp (Makefile.am): Likewise.
24697         * modules/mkstemp (Makefile.am): Likewise.
24698         * modules/mktime (Makefile.am): Likewise.
24699         * modules/modechange (Makefile.am): Likewise.
24700         * modules/mountlist (Makefile.am): Likewise.
24701         * modules/nanosleep (Makefile.am): Likewise.
24702         * modules/obstack (Makefile.am): Likewise.
24703         * modules/openat (Makefile.am): Likewise.
24704         * modules/pagealign_alloc (Makefile.am): Likewise.
24705         * modules/pathmax (Makefile.am): Likewise.
24706         * modules/physmem (Makefile.am): Likewise.
24707         * modules/poll (Makefile.am): Likewise.
24708         * modules/posixtm (Makefile.am): Likewise.
24709         * modules/posixver (Makefile.am): Likewise.
24710         * modules/putenv (Makefile.am): Likewise.
24711         * modules/quote (Makefile.am): Likewise.
24712         * modules/quotearg (Makefile.am): Likewise.
24713         * modules/raise (Makefile.am): Likewise.
24714         * modules/read-file (Makefile.am): Likewise.
24715         * modules/readline (Makefile.am): Likewise.
24716         * modules/readlink (Makefile.am): Likewise.
24717         * modules/readtokens (Makefile.am): Likewise.
24718         * modules/readutmp (Makefile.am): Likewise.
24719         * modules/realloc (Makefile.am): Likewise.
24720         * modules/regex (Makefile.am): Likewise.
24721         * modules/rename-dest-slash (Makefile.am): Likewise.
24722         * modules/rename (Makefile.am): Likewise.
24723         * modules/rijndael (Makefile.am): Likewise.
24724         * modules/rmdir (Makefile.am): Likewise.
24725         * modules/rpmatch (Makefile.am): Likewise.
24726         * modules/safe-read (Makefile.am): Likewise.
24727         * modules/safe-write (Makefile.am): Likewise.
24728         * modules/same-inode (Makefile.am): Likewise.
24729         * modules/same (Makefile.am): Likewise.
24730         * modules/save-cwd (Makefile.am): Likewise.
24731         * modules/savedir (Makefile.am): Likewise.
24732         * modules/setenv (Makefile.am): Likewise.
24733         * modules/settime (Makefile.am): Likewise.
24734         * modules/sha1 (Makefile.am): Likewise.
24735         * modules/sig2str (Makefile.am): Likewise.
24736         * modules/snprintf (Makefile.am): Likewise.
24737         * modules/stat-macros (Makefile.am): Likewise.
24738         * modules/stat-time (Makefile.am): Likewise.
24739         * modules/stdbool (Makefile.am): Likewise.
24740         * modules/stdint (Makefile.am): Likewise.
24741         * modules/stdlib-safer (Makefile.am): Likewise.
24742         * modules/stpcpy (Makefile.am): Likewise.
24743         * modules/stpncpy (Makefile.am): Likewise.
24744         * modules/strcase (Makefile.am): Likewise.
24745         * modules/strcasestr (Makefile.am): Likewise.
24746         * modules/strchrnul (Makefile.am): Likewise.
24747         * modules/strcspn (Makefile.am): Likewise.
24748         * modules/strdup (Makefile.am): Likewise.
24749         * modules/strerror (Makefile.am): Likewise.
24750         * modules/strftime (Makefile.am): Likewise.
24751         * modules/strndup (Makefile.am): Likewise.
24752         * modules/strnlen (Makefile.am): Likewise.
24753         * modules/strpbrk (Makefile.am): Likewise.
24754         * modules/strsep (Makefile.am): Likewise.
24755         * modules/strstr (Makefile.am): Likewise.
24756         * modules/strtod (Makefile.am): Likewise.
24757         * modules/strtoimax (Makefile.am): Likewise.
24758         * modules/strtok_r (Makefile.am): Likewise.
24759         * modules/strtol (Makefile.am): Likewise.
24760         * modules/strtoll (Makefile.am): Likewise.
24761         * modules/strtoul (Makefile.am): Likewise.
24762         * modules/strtoull (Makefile.am): Likewise.
24763         * modules/strtoumax (Makefile.am): Likewise.
24764         * modules/strverscmp (Makefile.am): Likewise.
24765         * modules/sys_socket (Makefile.am): Likewise.
24766         * modules/sys_stat (Makefile.am): Likewise.
24767         * modules/sysexits (Makefile.am): Likewise.
24768         * modules/time_r (Makefile.am): Likewise.
24769         * modules/timegm (Makefile.am): Likewise.
24770         * modules/timespec (Makefile.am): Likewise.
24771         * modules/tmpfile-safer (Makefile.am): Likewise.
24772         * modules/trim (Makefile.am): Likewise.
24773         * modules/unistd-safer (Makefile.am): Likewise.
24774         * modules/unlinkdir (Makefile.am): Likewise.
24775         * modules/unlocked-io (Makefile.am): Likewise.
24776         * modules/userspec (Makefile.am): Likewise.
24777         * modules/utime (Makefile.am): Likewise.
24778         * modules/utimecmp (Makefile.am): Likewise.
24779         * modules/utimens (Makefile.am): Likewise.
24780         * modules/vasnprintf (Makefile.am): Likewise.
24781         * modules/vasprintf (Makefile.am): Likewise.
24782         * modules/vsnprintf (Makefile.am): Likewise.
24783         * modules/xalloc (Makefile.am): Likewise.
24784         * modules/xgetcwd (Makefile.am): Likewise.
24785         * modules/xnanosleep (Makefile.am): Likewise.
24786         * modules/xreadlink (Makefile.am): Likewise.
24787         * modules/xstrtod (Makefile.am): Likewise.
24788         * modules/xstrtol (Makefile.am): Likewise.
24789         * modules/xstrtold (Makefile.am): Likewise.
24790         * modules/yesno (Makefile.am): Likewise.
24791         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
24792
24793 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
24794
24795         * modules/error (Makefile.am): Distribute files through
24796         EXTRA_DIST, not lib_SOURCES.
24797
24798 2006-10-12  Eric Blake  <ebb9@byu.net>
24799
24800         * modules/error (Makefile.am): Distribute files in /lib.
24801         * modules/obstack (Makefile.am): Likewise.
24802
24803 2006-10-12  Bruno Haible  <bruno@clisp.org>
24804
24805         * modules/acl (Makefile.am): Distribute all files in lib/ through
24806         EXTRA_DIST.
24807         * modules/arcfour (Makefile.am): Likewise.
24808         * modules/arctwo (Makefile.am): Likewise.
24809         * modules/argmatch (Makefile.am): Likewise.
24810         * modules/argz (Makefile.am): Likewise.
24811         * modules/atexit (Makefile.am): Likewise.
24812         * modules/backupfile (Makefile.am): Likewise.
24813         * modules/c-strtod (Makefile.am): Likewise.
24814         * modules/c-strtold (Makefile.am): Likewise.
24815         * modules/calloc (Makefile.am): Likewise.
24816         * modules/canon-host (Makefile.am): Likewise.
24817         * modules/canonicalize (Makefile.am): Likewise.
24818         * modules/chdir-long (Makefile.am): Likewise.
24819         * modules/chdir-safer (Makefile.am): Likewise.
24820         * modules/check-version (Makefile.am): Likewise.
24821         * modules/chown (Makefile.am): Likewise.
24822         * modules/cloexec (Makefile.am): Likewise.
24823         * modules/close-stream (Makefile.am): Likewise.
24824         * modules/closeout (Makefile.am): Likewise.
24825         * modules/crc (Makefile.am): Likewise.
24826         * modules/cycle-check (Makefile.am): Likewise.
24827         * modules/des (Makefile.am): Likewise.
24828         * modules/dirfd (Makefile.am): Likewise.
24829         * modules/dirname (Makefile.am): Likewise.
24830         * modules/dup2 (Makefile.am): Likewise.
24831         * modules/euidaccess (Makefile.am): Likewise.
24832         * modules/exclude (Makefile.am): Likewise.
24833         * modules/exitfail (Makefile.am): Likewise.
24834         * modules/fcntl-safer (Makefile.am): Likewise.
24835         * modules/file-type (Makefile.am): Likewise.
24836         * modules/fileblocks (Makefile.am): Likewise.
24837         * modules/filemode (Makefile.am): Likewise.
24838         * modules/filenamecat (Makefile.am): Likewise.
24839         * modules/fnmatch (Makefile.am): Likewise.
24840         * modules/fopen-safer (Makefile.am): Likewise.
24841         * modules/fpending (Makefile.am): Likewise.
24842         * modules/fprintftime (Makefile.am): Likewise.
24843         * modules/free (Makefile.am): Likewise.
24844         * modules/fsusage (Makefile.am): Likewise.
24845         * modules/ftruncate (Makefile.am): Likewise.
24846         * modules/fts (Makefile.am): Likewise.
24847         * modules/gc (Makefile.am): Likewise.
24848         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
24849         * modules/getaddrinfo (Makefile.am): Likewise.
24850         * modules/getcwd (Makefile.am): Likewise.
24851         * modules/getdelim (Makefile.am): Likewise.
24852         * modules/getdomainname (Makefile.am): Likewise.
24853         * modules/getgroups (Makefile.am): Likewise.
24854         * modules/gethostname (Makefile.am): Likewise.
24855         * modules/gethrxtime (Makefile.am): Likewise.
24856         * modules/getline (Makefile.am): Likewise.
24857         * modules/getloadavg (Makefile.am): Likewise.
24858         * modules/getlogin_r (Makefile.am): Likewise.
24859         * modules/getopt (Makefile.am): Likewise.
24860         * modules/getpass (Makefile.am): Likewise.
24861         * modules/getpass-gnu (Makefile.am): Likewise.
24862         * modules/getsubopt (Makefile.am): Likewise.
24863         * modules/gettime (Makefile.am): Likewise.
24864         * modules/gettimeofday (Makefile.am): Likewise.
24865         * modules/getugroups (Makefile.am): Likewise.
24866         * modules/getusershell (Makefile.am): Likewise.
24867         * modules/glob (Makefile.am): Likewise.
24868         * modules/group-member (Makefile.am): Likewise.
24869         * modules/hard-locale (Makefile.am): Likewise.
24870         * modules/hash (Makefile.am): Likewise.
24871         * modules/hmac-md5 (Makefile.am): Likewise.
24872         * modules/hmac-sha1 (Makefile.am): Likewise.
24873         * modules/human (Makefile.am): Likewise.
24874         * modules/idcache (Makefile.am): Likewise.
24875         * modules/imaxabs (Makefile.am): Likewise.
24876         * modules/imaxdiv (Makefile.am): Likewise.
24877         * modules/inet_ntop (Makefile.am): Likewise.
24878         * modules/inet_pton (Makefile.am): Likewise.
24879         * modules/inttostr (Makefile.am): Likewise.
24880         * modules/isapipe (Makefile.am): Likewise.
24881         * modules/lchown (Makefile.am): Likewise.
24882         * modules/long-options (Makefile.am): Likewise.
24883         * modules/lstat (Makefile.am): Likewise.
24884         * modules/malloc (Makefile.am): Likewise.
24885         * modules/mathl (Makefile.am): Likewise.
24886         * modules/mbchar (Makefile.am): Likewise.
24887         * modules/md2 (Makefile.am): Likewise.
24888         * modules/md4 (Makefile.am): Likewise.
24889         * modules/md5 (Makefile.am): Likewise.
24890         * modules/memcasecmp (Makefile.am): Likewise.
24891         * modules/memchr (Makefile.am): Likewise.
24892         * modules/memcmp (Makefile.am): Likewise.
24893         * modules/memcoll (Makefile.am): Likewise.
24894         * modules/memcpy (Makefile.am): Likewise.
24895         * modules/memmem (Makefile.am): Likewise.
24896         * modules/memmove (Makefile.am): Likewise.
24897         * modules/mempcpy (Makefile.am): Likewise.
24898         * modules/memrchr (Makefile.am): Likewise.
24899         * modules/memset (Makefile.am): Likewise.
24900         * modules/memxor (Makefile.am): Likewise.
24901         * modules/mkancesdirs (Makefile.am): Likewise.
24902         * modules/mkdir (Makefile.am): Likewise.
24903         * modules/mkdir-p (Makefile.am): Likewise.
24904         * modules/mkdtemp (Makefile.am): Likewise.
24905         * modules/mkstemp (Makefile.am): Likewise.
24906         * modules/mktime (Makefile.am): Likewise.
24907         * modules/modechange (Makefile.am): Likewise.
24908         * modules/mountlist (Makefile.am): Likewise.
24909         * modules/nanosleep (Makefile.am): Likewise.
24910         * modules/openat (Makefile.am): Likewise.
24911         * modules/pagealign_alloc (Makefile.am): Likewise.
24912         * modules/physmem (Makefile.am): Likewise.
24913         * modules/poll (Makefile.am): Likewise.
24914         * modules/posixtm (Makefile.am): Likewise.
24915         * modules/posixver (Makefile.am): Likewise.
24916         * modules/putenv (Makefile.am): Likewise.
24917         * modules/quote (Makefile.am): Likewise.
24918         * modules/quotearg (Makefile.am): Likewise.
24919         * modules/raise (Makefile.am): Likewise.
24920         * modules/read-file (Makefile.am): Likewise.
24921         * modules/readline (Makefile.am): Likewise.
24922         * modules/readlink (Makefile.am): Likewise.
24923         * modules/readtokens (Makefile.am): Likewise.
24924         * modules/readutmp (Makefile.am): Likewise.
24925         * modules/realloc (Makefile.am): Likewise.
24926         * modules/regex (Makefile.am): Likewise.
24927         * modules/rename (Makefile.am): Likewise.
24928         * modules/rename-dest-slash (Makefile.am): Likewise.
24929         * modules/rijndael (Makefile.am): Likewise.
24930         * modules/rmdir (Makefile.am): Likewise.
24931         * modules/rpmatch (Makefile.am): Likewise.
24932         * modules/safe-read (Makefile.am): Likewise.
24933         * modules/safe-write (Makefile.am): Likewise.
24934         * modules/same (Makefile.am): Likewise.
24935         * modules/save-cwd (Makefile.am): Likewise.
24936         * modules/savedir (Makefile.am): Likewise.
24937         * modules/setenv (Makefile.am): Likewise.
24938         * modules/settime (Makefile.am): Likewise.
24939         * modules/sha1 (Makefile.am): Likewise.
24940         * modules/sig2str (Makefile.am): Likewise.
24941         * modules/snprintf (Makefile.am): Likewise.
24942         * modules/stdlib-safer (Makefile.am): Likewise.
24943         * modules/stpcpy (Makefile.am): Likewise.
24944         * modules/stpncpy (Makefile.am): Likewise.
24945         * modules/strcase (Makefile.am): Likewise.
24946         * modules/strcasestr (Makefile.am): Likewise.
24947         * modules/strchrnul (Makefile.am): Likewise.
24948         * modules/strcspn (Makefile.am): Likewise.
24949         * modules/strdup (Makefile.am): Likewise.
24950         * modules/strerror (Makefile.am): Likewise.
24951         * modules/strftime (Makefile.am): Likewise.
24952         * modules/strndup (Makefile.am): Likewise.
24953         * modules/strnlen (Makefile.am): Likewise.
24954         * modules/strpbrk (Makefile.am): Likewise.
24955         * modules/strsep (Makefile.am): Likewise.
24956         * modules/strstr (Makefile.am): Likewise.
24957         * modules/strtod (Makefile.am): Likewise.
24958         * modules/strtoimax (Makefile.am): Likewise.
24959         * modules/strtok_r (Makefile.am): Likewise.
24960         * modules/strtol (Makefile.am): Likewise.
24961         * modules/strtoll (Makefile.am): Likewise.
24962         * modules/strtoul (Makefile.am): Likewise.
24963         * modules/strtoull (Makefile.am): Likewise.
24964         * modules/strtoumax (Makefile.am): Likewise.
24965         * modules/strverscmp (Makefile.am): Likewise.
24966         * modules/time_r (Makefile.am): Likewise.
24967         * modules/timegm (Makefile.am): Likewise.
24968         * modules/tmpfile-safer (Makefile.am): Likewise.
24969         * modules/unistd-safer (Makefile.am): Likewise.
24970         * modules/unlinkdir (Makefile.am): Likewise.
24971         * modules/userspec (Makefile.am): Likewise.
24972         * modules/utime (Makefile.am): Likewise.
24973         * modules/utimecmp (Makefile.am): Likewise.
24974         * modules/utimens (Makefile.am): Likewise.
24975         * modules/vasnprintf (Makefile.am): Likewise.
24976         * modules/vasprintf (Makefile.am): Likewise.
24977         * modules/vsnprintf (Makefile.am): Likewise.
24978         * modules/xalloc (Makefile.am): Likewise.
24979         * modules/xgetcwd (Makefile.am): Likewise.
24980         * modules/xnanosleep (Makefile.am): Likewise.
24981         * modules/xreadlink (Makefile.am): Likewise.
24982         * modules/xstrtod (Makefile.am): Likewise.
24983         * modules/xstrtol (Makefile.am): Likewise.
24984         * modules/xstrtold (Makefile.am): Likewise.
24985         * modules/yesno (Makefile.am): Likewise.
24986
24987 2006-10-12  Jim Meyering  <jim@meyering.net>
24988
24989         * m4/getloadavg.m4: Revert the change below.
24990
24991         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
24992         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
24993         fail with a symlink, which is what coreutils' ./bootstrap now
24994         creates by default.
24995
24996 2006-10-12  Bruno Haible  <bruno@clisp.org>
24997
24998         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
24999         mingw.
25000         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
25001         MSVC and mingw explicitly.
25002
25003 2006-10-11  Simon Josefsson  <jas@extundo.com>
25004             Bruno Haible  <bruno@clisp.org>
25005
25006         Add support for multiple gnulib-tool invocations in the scope of a
25007         single configure.ac file.
25008         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
25009         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
25010         with the same contents as the _LIBADD variable.
25011         (func_emit_initmacro_start, func_emit_initmacro_end,
25012         func_emit_initmacro_done): New functions.
25013         (func_import, func_create_testdir): Invoke them. Allow the identifiers
25014         gl_LIBOBJS and gl_LTLIBOBJS.
25015
25016 2006-10-11  Bruno Haible  <bruno@clisp.org>
25017
25018         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
25019         (func_create_testdir): Don't create po/Makefile.am, don't invoke
25020         autoreconf. Instead, invoke autopoint explicitly but move back the
25021         *.m4 files from gnulib.
25022
25023 2006-10-11  Bruno Haible  <bruno@clisp.org>
25024
25025         * gnulib-tool (func_usage): Make module names after --create-testdir
25026         optional.
25027         (func_create_testdir): If no module was specified, use nearly all
25028         modules.
25029
25030 2006-10-12  Jim Meyering  <jim@meyering.net>
25031
25032         Big performance improvement for fts-based tools that use FTS_NOSTAT.
25033         Avoid spurious inode-mismatch problems on non-POSIX file systems.
25034         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
25035         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
25036         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
25037         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
25038         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
25039         (fts_set_stat_required): New function.
25040         (fts_open): Defer the calls to fts_stat, if possible or requested.
25041         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
25042         into fts_stat itself.
25043         (fts_read): Perform any required (deferred) fts_stat call.
25044         (fts_build): Likewise, for the directory we're about to open and read.
25045         In the readdir loop, carefully decide whether each entry will require
25046         an eventual call to fts_stat, using dirent.d_type info if available.
25047         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
25048         a command line argument into this function.  Update all callers.
25049         Map a return value of FTS_DOT to FTS_D for a command line argument.
25050         * modules/fts (Depends-on): Add d-type.  Alphabetize.
25051         Thanks to Miklos Szeredi for his tenacity and for the initial
25052         bug report about "find" failing on a FUSE-based file system.
25053
25054         * lib/fts.c (fts_open): Use consistent indentation.
25055
25056 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
25057
25058         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
25059         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
25060         reported by Jim Meyering.  All uses of cache variables renamed
25061         to match Autoconf's.
25062         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
25063         the other one.
25064
25065         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
25066         Fix misspelling in diagnostic.
25067
25068 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
25069
25070         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
25071         defined.  Problem reported by Matthew Woehlke.
25072
25073         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
25074         Add support for Tandem NonStop R series.
25075         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
25076         Use new macro.
25077
25078         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
25079         (has_trailing_slash): Omit size arg; all callers changed.
25080         Omit 'inline', since it doesn't help performance and we'd
25081         need to configure it.
25082         Don't count //, ///, etc. as having a trailing slash.
25083         As a side effect, this removes a C99ism reported by Matthew Woehlke.
25084         (rpl_rename_dest_slash): On failure, use rename's errno rather
25085         than (in some cases) an incorrect or junk errno.
25086         Simplify code by removing need to compute length; this does
25087         cause it to make two passes instead of one over the file name,
25088         but it's worth it.
25089
25090         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
25091         change, since Autoconf's version may no longer be appropriate now
25092         that we are using CVS Autoconf's version.  Add support for Tandem.
25093
25094 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
25095             Bruno Haible  <bruno@clisp.org>
25096
25097         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
25098         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
25099         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
25100         gl_AC_TYPE_LONG_LONG.
25101
25102         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
25103         instead of HAVE_LONG_LONG.
25104         * lib/printf-args.c (printf_fetchargs): Likewise.
25105         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
25106         * lib/vasnprintf.c (VASNPRINTF): Likewise.
25107         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
25108         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
25109         gl_AC_TYPE_LONG_LONG.
25110
25111 2006-10-11  Bruno Haible  <bruno@clisp.org>
25112
25113         * m4/longlong.m4: Add comments.
25114         * m4/ulonglong.m4: Likewise.
25115
25116 2006-10-10  Bruno Haible  <bruno@clisp.org>
25117
25118         Make it possible to #define stpcpy, strdup to aliases.
25119         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
25120         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
25121
25122 2006-10-10  Bruno Haible  <bruno@clisp.org>
25123
25124         Make it possible to #define gcd to an alias.
25125         * lib/gcd.c: Include config.h.
25126
25127 2006-10-10  Bruno Haible  <bruno@clisp.org>
25128
25129         Make it possible to #define c_isascii to an alias.
25130         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
25131         defined. Undefine the macros before defining them, to avoid gcc
25132         warnings.
25133         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
25134         define NO_C_CTYPE_MACROS early.
25135
25136 2006-10-10  Bruno Haible  <bruno@clisp.org>
25137
25138         Make it possible to #define set_program_name to an alias.
25139         * lib/progname.c: Don't undefine set_program_name; instead, undefine
25140         ENABLE_RELOCATABLE early.
25141
25142 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
25143
25144         Port to Tandem NSK OSS, which has 64-bit signed int but at most
25145         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
25146         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
25147         More generally, don't assume that 64-bit signed int is available
25148         if unsigned int is, and vice versa.
25149         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
25150         unsigned symbols, not on their signed counterparts.
25151         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
25152         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
25153         (UINT64_C, UINTMAX_C):
25154         Likewise.
25155         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
25156         unsigned counterparts.
25157         (Have_long_long, Unsigned): New macros.
25158         (Int): Renamed from INT.
25159         (strtoimax): Use the new macros.
25160         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
25161         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
25162         * modules/inttypes (inttypes.h): Substitute
25163         HAVE_UNSIGNED_LONG_LONG_INT.
25164         * modules/stdint (stdint.h): Likewise.
25165         (Files): Add m4/ulonglong.m4.
25166
25167 2006-10-10  Bruno Haible  <bruno@clisp.org>
25168
25169         Fix a gcc -Wshadow warning.
25170         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
25171         to 'bucket'.
25172         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
25173         gl_linked_indexof_from_to): Likewise.
25174         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
25175         Likewise.
25176         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
25177         Likewise.
25178         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
25179         Reported by Eric Blake.
25180
25181 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
25182
25183         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
25184         for NetBSD.  Problem reported by Bruno Haible.
25185
25186 2006-10-09  Jim Meyering  <jim@meyering.net>
25187
25188         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
25189         Patch from Bruno Haible.
25190
25191 2006-10-09  Jim Meyering  <jim@meyering.net>
25192
25193         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
25194         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
25195         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
25196
25197 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
25198
25199         Don't include <config.h> twice; this doesn't work in some cases,
25200         e.g., when config.h has "#define intmax_t long long int" and
25201         we include <config.h>, <inttypes.h>, <config.h> in that order.
25202         Problem reported by Matthew Woehlke in:
25203         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
25204         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
25205         * lib/fts-cycle.c: Don't include config.h.
25206         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
25207         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
25208         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
25209         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
25210         inttypes.h.
25211         * lib/xstrtoumax.c: Likewise.
25212         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
25213         __strtol and the like, so that this module is more like its siblings.
25214         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
25215         Remove; no longer needed now that we assume gnulib inttypes.h.
25216
25217 2006-10-08  Bruno Haible  <bruno@clisp.org>
25218
25219         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
25220         option.
25221
25222 2006-10-07  Jim Meyering  <jim@meyering.net>
25223
25224         * modules/inttypes (inttypes.h): Revert what seems to have been
25225         an inadvertent part of today's change: use "|", not "/" in the
25226         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
25227
25228 2006-10-07  Bruno Haible  <bruno@clisp.org>
25229
25230         * modules/sublist: New file.
25231
25232 2006-10-07  Bruno Haible  <bruno@clisp.org>
25233
25234         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
25235         * modules/argz (argz.h): Likewise.
25236         * modules/arpa_inet (arpa/inet.h): Likewise.
25237         * modules/byteswap (byteswap.h): Likewise.
25238         * modules/configmake (configmake.h): Likewise.
25239         * modules/fcntl (fcntl.h): Likewise.
25240         * modules/fnmatch (fnmatch.h): Likewise.
25241         * modules/getopt (getopt.h): Likewise.
25242         * modules/glob (glob.h): Likewise.
25243         * modules/inttypes (inttypes.h): Likewise.
25244         * modules/netinet_in (netinet/in.h): Likewise.
25245         * modules/poll (poll.h): Likewise.
25246         * modules/stdbool (stdbool.h): Likewise.
25247         * modules/stdint (stdint.h): Likewise.
25248         * modules/sys_select (sys/select.h): Likewise.
25249         * modules/sys_socket (sys/socket.h): Likewise.
25250         * modules/sys_stat (sys/stat.h): Likewise.
25251         * modules/sysexits (sysexits.h): Likewise.
25252         * modules/unistd (unistd.h): Likewise.
25253         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
25254         Add a "DO NOT EDIT" comment to the generated file.
25255         (func_import): Likewise for gnulib-comp.m4.
25256
25257 2006-10-07  Bruno Haible  <bruno@clisp.org>
25258
25259         * lib/gl_sublist.h: New file.
25260         * lib/gl_sublist.c: New file.
25261
25262 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
25263
25264         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
25265         name (relative to the original working directory) and the file
25266         name component (relative to the temporary working directory).  All
25267         callers changed.
25268         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
25269         * lib/mkdir-p.c (make_dir_parents): Likewise.
25270         * lib/mkdir-p.h (make_dir_parents): Likewise.
25271
25272 2006-10-06  Eric Blake  <ebb9@byu.net>
25273
25274         Define several macros for use by the clean-temp module.
25275         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
25276         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
25277         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
25278
25279         * lib/clean-temp.h (close_stream_temp): New declaration.
25280         * lib/clean-temp.c (includes): Pull in headers according to what
25281         other modules are in use.
25282         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
25283
25284 2006-10-06  Bruno Haible  <bruno@clisp.org>
25285
25286         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
25287         instead of fopen, fwriteerror.
25288
25289 2006-10-06  Bruno Haible  <bruno@clisp.org>
25290
25291         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
25292         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
25293         int.
25294         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
25295         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
25296         Return an error indicator.
25297         Suggested by Eric Blake.
25298
25299 2006-10-06  Bruno Haible  <bruno@clisp.org>
25300
25301         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
25302         Reported by Eric Blake.
25303
25304 2006-10-06  Bruno Haible  <bruno@clisp.org>
25305
25306         * modules/closeout (Description): Mention stderr too.
25307
25308 2006-10-06  Bruno Haible  <bruno@clisp.org>
25309         and Paul Eggert  <eggert@cs.ucla.edu>
25310
25311         * lib/closeout.c (close_stdout): Also close stderr.
25312         * lib/closeout.h: Update comment.
25313
25314 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
25315
25316         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
25317         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
25318         * lib/dirchownmod.c: Include lchown.h.
25319         * lib/lchown.c: Don't include files that lchown.h now includes.
25320         Don't declare chown, since lchown.h now does that.
25321         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
25322         (lchown): Define to rpl_chown if lchown is declared but
25323         does not exist.  Declare using a prototype if lchown is not
25324         declared.  Add a copyright notice.
25325         * lib/mkstemp.h: Include <unistd.h>.
25326         * lib/openat.c: Include lchown.h.
25327
25328         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
25329         we now test for that separately.
25330         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
25331         rather than O_NOFOLLOW, when testing whether it's possible to
25332         avoid a race condition reliably.
25333         * lib/savewd.c (savewd_chdir): Likewise.
25334
25335         Remove macros that are no longer needed now that stdint.h is
25336         reliable.
25337         * lib/fsusage.c (UINTMAX_MAX): Remove.
25338         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
25339         * lib/utimecmp.c (SIZE_MAX): Remove.
25340
25341         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
25342
25343         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
25344         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
25345         O_NOATIME works.
25346
25347 2006-10-05  Bruno Haible  <bruno@clisp.org>
25348
25349         * lib/gl_list.h (gl_sortedlist_search_from_to,
25350         gl_sortedlist_indexof_from_to): New declarations.
25351         (gl_list_implementation): New fields sortedlist_search_from_to,
25352         sortedlist_indexof_from_to.
25353         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
25354         inline functions.
25355         * lib/gl_list.c (gl_sortedlist_search_from_to,
25356         gl_sortedlist_indexof_from_to): New functions.
25357         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
25358         function.
25359         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
25360         (gl_array_sortedlist_search_from_to): New function.
25361         (gl_array_list_implementation): Update.
25362         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
25363         function.
25364         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
25365         (gl_carray_sortedlist_search_from_to): New function.
25366         (gl_carray_list_implementation): Update.
25367         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
25368         gl_linked_sortedlist_indexof_from_to): New functions.
25369         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
25370         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
25371         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
25372         gl_tree_sortedlist_indexof_from_to): New functions.
25373         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
25374         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
25375         Update.
25376         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
25377         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
25378         Update.
25379
25380 2006-10-05  Bruno Haible  <bruno@clisp.org>
25381
25382         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
25383         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
25384         (struct gl_list_implementation): Add fields search_from_to,
25385         indexof_from_to. Remove fields search, indexof.
25386         (gl_list_search): Use the search_from_to method.
25387         (gl_list_search_from, gl_list_search_from_to): New functions.
25388         (gl_list_indexof): Use the indexof_from_to method.
25389         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
25390         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
25391         (gl_list_search_from, gl_list_search_from_to): New functions.
25392         (gl_list_indexof): Use the indexof_from_to method.
25393         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
25394         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
25395         gl_array_indexof. Add start_index, end_index arguments.
25396         (gl_array_search_from_to): Renamed from gl_array_search. Add
25397         start_index, end_index arguments.
25398         (gl_array_remove, gl_array_list_implementation): Update.
25399         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
25400         gl_carray_indexof. Add start_index, end_index arguments.
25401         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
25402         start_index, end_index arguments.
25403         (gl_carray_remove, gl_carray_list_implementation): Update.
25404         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
25405         gl_linked_search. Add start_index, end_index arguments.
25406         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
25407         start_index, end_index arguments.
25408         (gl_linked_remove): Update.
25409         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
25410         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
25411         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
25412         field to 'size_t'.
25413         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
25414         gl_tree_search. Add start_index, end_index arguments.
25415         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
25416         start_index, end_index arguments.
25417         (gl_tree_remove): Update.
25418         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
25419         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
25420         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
25421         function.
25422         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
25423         gl_tree_search. Add start_index, end_index arguments.
25424         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
25425         start_index, end_index arguments.
25426         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
25427         Update.
25428         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
25429
25430 2006-10-05  Bruno Haible  <bruno@clisp.org>
25431
25432         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
25433
25434         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
25435         fwriteerror_temp): New declarations.
25436         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
25437         (descriptors): New variable.
25438         (cleanup): First, close the descriptors.
25439         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
25440         fclose_temp, fwriteerror_temp): New functions.
25441
25442 2006-10-04  Jim Meyering  <jim@meyering.net>
25443
25444         * lib/fts.c (fts_open): Tiny comment change.
25445
25446 2006-10-04  Bruno Haible  <bruno@clisp.org>
25447
25448         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
25449         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
25450         gl_LOCK_BODY.
25451         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
25452         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
25453         gl_LOCK_EARLY_BODY.
25454         (gl_LOCK): Require gl_LOCK_BODY.
25455
25456 2006-10-04  Bruno Haible  <bruno@clisp.org>
25457
25458         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
25459         (gl_oset_search_atleast): New declaration.
25460         (struct gl_oset_implementation): Add field 'search_atleast'.
25461         (gl_oset_search_atleast): New inline function.
25462         * lib/gl_oset.c (gl_oset_search_atleast): New function.
25463         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
25464         (gl_array_oset_implementation): Update.
25465         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
25466         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
25467         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
25468
25469 2006-10-04  Bruno Haible  <bruno@clisp.org>
25470
25471         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
25472
25473 2006-10-03  Bruno Haible  <bruno@clisp.org>
25474
25475         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
25476         from gl_avltreehash_list_implementation.
25477
25478 2006-10-03  Bruno Haible  <bruno@clisp.org>
25479
25480         * lib/gl_oset.c (gl_oset_add): Fix return type.
25481
25482 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
25483
25484         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
25485
25486 2006-10-02  Eric Blake  <ebb9@byu.net>
25487
25488         * modules/strnlen (Depends-on): Add extensions.
25489
25490 2006-10-02  Eric Blake  <ebb9@byu.net>
25491
25492         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
25493         definition in 2.60+.
25494
25495 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
25496
25497         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
25498         checks.
25499
25500 2006-10-02  Bruno Haible  <bruno@clisp.org>
25501
25502         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
25503         to the AUTOMAKE_OPTIONS.
25504         Reported by Jim Meyering.
25505
25506 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
25507
25508         Work around bug in Solaris 10 /proc file system:
25509         /proc/self/fd/NNN/.. isn't the parent directory of
25510         the directory whose file descriptor is NNN.  This needs to
25511         be worked around at run time, not compile time, since a
25512         program might be built on Solaris 8, where things work, and
25513         run on Solaris 10.
25514         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
25515         to use the following interface instead:
25516         (OPENAT_BUFFER_SIZE): New macro.
25517         (openat_proc_name): New function.
25518         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
25519         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
25520         Likewise.
25521         * lib/openat-proc.c: New file.
25522         * modules/openat (Files): Add lib/openat-proc.c.
25523         (Depends-on): Add same-inode, stdbool.
25524         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
25525
25526 2006-09-29  Bruno Haible  <bruno@clisp.org>
25527
25528         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
25529         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
25530         argument. Set stdout_closed before testing for ferror, not after.
25531         (fwriteerror, fwriteerror_no_ebadf): New functions.
25532
25533 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25534
25535         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
25536
25537 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
25538
25539         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
25540         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
25541
25542 2006-09-28  Jim Meyering  <jim@meyering.net>
25543
25544         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
25545         Include <unistd.h>.
25546
25547 2006-09-28  Bruno Haible  <bruno@clisp.org>
25548
25549         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
25550         * modules/linkedhash-list (Depends-on): Likewise.
25551         * modules/rbtreehash-list (Depends-on): Likewise.
25552
25553 2006-09-28  Bruno Haible  <bruno@clisp.org>
25554
25555         * lib/strndup.h: Simplify the redefinition of strndup.
25556         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
25557         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
25558
25559 2006-09-28  Bruno Haible  <bruno@clisp.org>
25560
25561         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
25562         * lib/gl_linkedhash_list.c: Likewise.
25563         * lib/gl_rbtreehash_list.c: Likewise.
25564
25565 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
25566
25567         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
25568         getaddrinfo.
25569
25570         * lib/__fpending.h: Don't include <stdio_ext.h> unless
25571         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
25572         it causes <stdio_ext.h> to cause a compile-time error.
25573         Problem reported by Nelson H. F. Beebe.
25574         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
25575         of HAVE_DECL___PENDING.
25576
25577         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
25578         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
25579         declaration.
25580
25581 2006-09-27  Jim Meyering  <jim@meyering.net>
25582
25583         This file could end up with a definition for a function
25584         named __strndup, rather than rpl_strndup on a system with
25585         incomplete weak_alias support.
25586         * lib/strndup.c (strndup): Rename from __strndup.
25587         Remove #defines that used to map __strndup to strndup.
25588         Don't use K&R prototypes.
25589         Remove LIBC-related code, since this file is not sync'd with glibc.
25590         * lib/strndup.h: Revamp, accordingly.
25591         * m4/strndup.m4: Modernize.
25592
25593 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
25594
25595         * modules/savewd (Depends-on): Add 'raise'.
25596         * lib/savewd.c: Include <signal.h>, for 'raise'.
25597
25598 2006-09-26  Jim Meyering  <jim@meyering.net>
25599
25600         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
25601         when we detect Darwin 8.7.0's acl_get_file bug.
25602         Rearrange to perform the new (below) run-test while $LIBS
25603         contains any acl-related library.  Set USE_ACL at the end.
25604         (gl_ACL_GET_FILE): New function.
25605
25606 2006-09-26  Eric Blake  <ebb9@byu.net>
25607
25608         * lib/verror.c: Include <config.h> unconditionally.
25609
25610 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
25611
25612         * modules/clock-time (Maintainer): Add self.
25613         * modules/getlogin_r (Depends-on): Add extensions.
25614
25615 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25616
25617         * modules/clock-time: New module.
25618         * modules/nanosleep (Depends-on): Add clock-time.
25619         * modules/gethrxtime (Depends-on): Likewise.
25620         * modules/gettime (Depends-on): Likewise.
25621         * modules/settime (Depends-on): Likewise.
25622
25623         * modules/fts-lgpl: Depend on openat.
25624         * modules/mkancesdirs: Depend on savewd.
25625         * modules/mkdir-p: Likewise.
25626
25627 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25628
25629         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
25630
25631         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
25632         `gl_have_arbitrary_file_name_length_limit' to
25633         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
25634         actually works between configure runs.
25635
25636 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25637             Bruno Haible  <bruno@clisp.org>
25638
25639         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
25640
25641 2006-09-25  Jim Meyering  <jim@meyering.net>
25642
25643         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
25644         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
25645
25646 2006-09-25  Eric Blake  <ebb9@byu.net>
25647
25648         * gnulib-tool (func_import, func_create_testdir): Fix typos in
25649         exec's in 2006-09-18 patch when shuffling fds.
25650
25651 2006-09-25  Bruno Haible  <bruno@clisp.org>
25652
25653         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
25654         Reported by Jim Meyering.
25655
25656 2006-09-24  Jim Meyering  <jim@meyering.net>
25657
25658         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
25659         compare a pointer against a literal "0".  That caused failures with
25660         at least HP-UX's hpcc.
25661
25662 2006-09-22  Simon Josefsson  <jas@extundo.com>
25663
25664         * modules/gc-sha1:
25665         * modules/gc-md4:
25666         * modules/gc-hmac-sha1:
25667         * modules/gc-hmac-md5:
25668         * modules/gc-des:
25669         * modules/gc-arcfour: Distribute more files.
25670
25671 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25672
25673         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
25674         (gl_linked_iterator_from_to): Initialize struct completely.
25675         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
25676         (gl_tree_iterator_from_to): Likewise
25677         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
25678         * lib/gl_array_list.c [lint] (gl_array_iterator)
25679         (gl_array_iterator_from_to): Likewise.
25680         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
25681         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
25682         (gl_carray_iterator_from_to): Likewise.
25683
25684         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
25685         * lib/md4.c (md4_process_block): Remove unused variable.
25686         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
25687         parentheses for clarity.
25688
25689 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25690
25691         * modules/bison-i18n (Depends-on): Add gettext.
25692
25693 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25694
25695         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
25696         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
25697         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
25698         also add missing comma that caused broken test.
25699         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
25700         stdlib.h, for `abort'.
25701         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
25702         variables.
25703         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
25704         include unistd.h if present, for `rmdir'.
25705         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
25706         variables.
25707         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
25708         in the process include standard headers for prototypes.
25709         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
25710         gets declared on GNU/Linux.
25711         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
25712         unistd.h, for `rmdir'.
25713         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
25714
25715         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
25716         always true.
25717         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
25718
25719         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
25720
25721 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25722
25723         * gnulib-tool (func_version): Create output all at once.  This
25724         may help avoid triggering unnecessary SIGPIPEs, and at any
25725         rate it doesn't hurt.
25726
25727 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25728             Bruno Haible  <bruno@clisp.org>
25729
25730         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
25731         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
25732         * m4/signed.m4 (bh_C_SIGNED): Likewise.
25733
25734         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
25735         (gl_FUNC_VASPRINTF): Invoke it.
25736
25737 2006-09-22  Bruno Haible  <bruno@clisp.org>
25738
25739         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
25740         getloadavg.c as first argument.
25741
25742 2006-09-22  Bruno Haible  <bruno@clisp.org>
25743
25744         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
25745         at the beginning of the gl_INIT macro.
25746         * modules/getloadavg (configure.ac): Pass $gl_source_base to
25747         gl_GETLOADAVG.
25748
25749 2006-09-22  Bruno Haible  <bruno@clisp.org>
25750
25751         * gnulib-tool (func_create_megatestdir): Don't include the config-h
25752         module.
25753         Suggested by Ralf Wildenhues.
25754
25755 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
25756
25757         Import this patch from libc:
25758
25759         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
25760
25761         * lib/regex_internal.c (re_string_reconstruct): Handle
25762         offset < pstr->valid_raw_len && pstr->offsets_needed case.
25763         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
25764         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
25765         re_string_context_at.
25766
25767         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
25768         now requires it.
25769         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
25770         gl_REGEX now does it for us.
25771         (gl_REGEX): Add test taken from
25772         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
25773
25774         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
25775         Check that large offsets work.  Modernize Autoconf usages.
25776         Prefer "yes" to mean a good thing rather than a bad.
25777         Don't put "#define mkstemp" in config.h, as this might interfere
25778         with standard system headers that "#define mkstemp mkstemp64".
25779
25780         * modules/mkstemp (Depends-on): Add extensions, so that
25781         mkstemp is visible on some platforms.
25782         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
25783         (Include): Change to "mkstemp.h" from <stdlib.h>.
25784         (Files): Add mkstemp.h.
25785
25786         * lib/mkstemp.h: New file, since some standard headers
25787         #define mkstemp.
25788         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
25789         Include "mkstemp.h".
25790         Make the _LIBC code resemble glibc original more,
25791         e.g., use K&R style.
25792         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
25793         (mkstemp): Remove, since mkstemp.h does this for us.
25794         * lib/stdlib--.h: Include mkstemp.h.
25795
25796         Import this patch from libc:
25797
25798         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
25799
25800         * lib/tempname.c (__gen_tempname): Change attempts_min
25801         into a macro.  Use preprocessor to decide how to initialize
25802         attempts [Coverity CID 67].
25803
25804 2006-09-20  Bruno Haible  <bruno@clisp.org>
25805
25806         * lib/mkdtemp.c: Import from libc.
25807         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
25808                 * sysdeps/posix/tempname.c (__gen_tempname): Change
25809                 attempts_min into a macro.  Use preprocessor to decide how to
25810                 initialize attempts [Coverity CID 67].
25811         2001-11-27  Paul Eggert  <eggert@twinsun.com>
25812                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
25813                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
25814
25815 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25816
25817         * gnulib-tool (func_exit): New function, to allow to pass the
25818         exit status portably through the trap.  Use everywhere.
25819         (--help, --version): Signal a write error.
25820         (trap): catch SIGPIPE, for write errors.
25821         Exit at the end of the trap, with the correct exit status.
25822
25823 2006-09-19  Karl Berry  <karl@gnu.org>
25824
25825         * doc/gnulib.texi: note about the license texinfo files.
25826
25827 2006-09-19  Eric Blake  <ebb9@byu.net>
25828
25829         * gnulib-tool: Avoid space-tab.
25830
25831 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
25832
25833         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
25834         that prevented coreutils 6.1 from building.  Problem reported
25835         by Petter Reinholdtsen.
25836
25837 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
25838
25839         * gnulib-tool (avoidlist): Fix typo that broke options like
25840         --avoid=lock that are used by coreutils bootstrap.
25841
25842 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
25843
25844         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
25845         more systematically.
25846
25847 2006-09-18  Jim Meyering  <jim@meyering.net>
25848
25849         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
25850
25851 2006-09-18  Bruno Haible  <bruno@clisp.org>
25852
25853         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
25854
25855 2006-09-18  Bruno Haible  <bruno@clisp.org>
25856
25857         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
25858         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
25859         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
25860         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
25861         * m4/gettext.m4: Require autoconf >= 2.52.
25862         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
25863         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
25864         of gl_cv_header_inttypes_h.
25865
25866 2006-09-18  Bruno Haible  <bruno@clisp.org>
25867
25868         * lib/javaversion.c: Include configmake.h.
25869
25870 2006-09-18  Bruno Haible  <bruno@clisp.org>
25871
25872         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
25873         avoid that the while loops be executed in a subshell.
25874
25875 2006-09-18  Bruno Haible  <bruno@clisp.org>
25876
25877         * MODULES.html.sh (func_module): Break long lines.
25878         Suggested by Bruce Korb <bkorb@gnu.org>.
25879
25880 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25881
25882         Speed up by a factor of 1.12.
25883         * gnulib-tool (nl): New variable.
25884         (func_import): Rewrite include directive extraction to only read each
25885         directive once.
25886
25887 2006-09-17  Bruno Haible  <bruno@clisp.org>
25888
25889         * modules/javaversion (Makefile.am): Remove DEFS setting.
25890         (Depends-on): Add configmake, for PKGDATADIR definition.
25891
25892 2006-09-17  Bruno Haible  <bruno@clisp.org>
25893
25894         * gnulib-tool (func_create_testdir): Rewrite all files at once.
25895
25896 2006-09-17  Bruno Haible  <bruno@clisp.org>
25897
25898         * gnulib-tool (func_append): New function, stolen from libtool.m4.
25899         (func_modules_transitive_closure, func_modules_add_dummy,
25900         func_modules_to_filelist, func_import, func_create_testdir,
25901         func_create_megatestdir, ...): Use it wherever possible.
25902         Suggested by Ralf Wildenhues.
25903
25904 2006-09-16  Karl Berry  <karl@gnu.org>
25905
25906         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
25907         to avoid sectioning errors.
25908         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
25909         [ifinfo]: blank line after @center-ed titles.
25910         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
25911         Spell FSF address consistently with others.
25912         (These changes approved by rms.)
25913
25914 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25915
25916         Speed up by a factor of 1.61.
25917         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
25918         already checked module names again.
25919
25920 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25921
25922         Speed up by a factor of 1.13.
25923         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
25924         for new_files, and the input to func_add_or_update.
25925
25926 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25927
25928         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
25929         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
25930
25931 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
25932
25933         * modules/mkancesdirs (Depends-on): Add fcntl.
25934         * modules/savewd: New file.
25935         * MODULES.html.sh (File system functions): Add savewd.
25936
25937         * modules/configmake (Makefile.am): Add support for the
25938         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
25939
25940 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
25941
25942         * m4/savewd.m4: New file.
25943
25944 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
25945
25946         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
25947         (dirchownmod): New arg FD.  All callers changed.
25948         Use FD rather than opening the directory ourself, as opening is
25949         now the caller's responsibility.
25950         * lib/dirchownmod.h: Likewise.
25951         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
25952         hosts that require <sys/types.h> before <sys/stat.h>.  Include
25953         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
25954         (test_dir): Remove.
25955         (mkancesdirs): Return length of prefix of FILE that has already
25956         been made, or -2 if there is a child doing the work.  Redo
25957         algorithm so that it is O(N) rather than O(N**2).  Optimize away
25958         ".", and treat ".." specially since it might stray back into
25959         already-created areas.  Use a subprocess if necessary.  New arg
25960         WD; all users changed.  MAKE_DIR function should now return 1
25961         if it creates a directory that is not readable.  Return -2 if
25962         a child process is spun off.
25963         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
25964         Adjust signature to match code.
25965         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
25966         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
25967         all users changed.
25968         * lib/savewd.c, lib/savewd.h: New files.
25969
25970 2006-09-15  Jim Meyering  <jim@meyering.net>
25971
25972         * modules/rename-dest-slash: New module.
25973         * MODULES.html.sh (posix_compat): Add it here.
25974
25975         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
25976
25977 2006-09-15  Jim Meyering  <jim@meyering.net>
25978
25979         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
25980         file.
25981
25982         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
25983
25984 2006-09-15  Jim Meyering  <jim@meyering.net>
25985
25986         * lib/rename-dest-slash.c (has_trailing_slash): Use
25987         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
25988         (rpl_rename_dest_slash): Perform the cheaper trailing slash
25989         test before testing whether SRC is a directory.
25990         Suggestions from Bruno Haible.
25991
25992         Avoid a warning about an unused variable.
25993         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
25994         into the #ifdef block where it's used.
25995
25996         * lib/rename-dest-slash.c: New file.
25997
25998 2006-09-14  Bruno Haible  <bruno@clisp.org>
25999
26000         * lib/allocsa.c: Include <config.h> unconditionally.
26001         * lib/asnprintf.c: Likewise.
26002         * lib/asprintf.c: Likewise.
26003         * lib/c-strcasecmp.c: Likewise.
26004         * lib/c-strcasestr.c: Likewise.
26005         * lib/c-strncasecmp.c: Likewise.
26006         * lib/c-strstr.c: Likewise.
26007         * lib/classpath.c: Likewise.
26008         * lib/clean-temp.c: Likewise.
26009         * lib/concatpath.c: Likewise.
26010         * lib/copy-file.c: Likewise.
26011         * lib/csharpcomp.c: Likewise.
26012         * lib/csharpexec.c: Likewise.
26013         * lib/execute.c: Likewise.
26014         * lib/fatal-signal.c: Likewise.
26015         * lib/findprog.c: Likewise.
26016         * lib/fwriteerror.c: Likewise.
26017         * lib/gl_array_list.c: Likewise.
26018         * lib/gl_array_oset.c: Likewise.
26019         * lib/gl_avltree_list.c: Likewise.
26020         * lib/gl_avltree_oset.c: Likewise.
26021         * lib/gl_avltreehash_list.c: Likewise.
26022         * lib/gl_carray_list.c: Likewise.
26023         * lib/gl_linked_list.c: Likewise.
26024         * lib/gl_linkedhash_list.c: Likewise.
26025         * lib/gl_list.c: Likewise.
26026         * lib/gl_oset.c: Likewise.
26027         * lib/gl_rbtree_list.c: Likewise.
26028         * lib/gl_rbtree_oset.c: Likewise.
26029         * lib/gl_rbtreehash_list.c: Likewise.
26030         * lib/imaxabs.c: Likewise.
26031         * lib/imaxdiv.c: Likewise.
26032         * lib/javacomp.c: Likewise.
26033         * lib/javaexec.c: Likewise.
26034         * lib/javaversion.c: Likewise.
26035         * lib/linebreak.c: Likewise.
26036         * lib/localcharset.c: Likewise.
26037         * lib/lock.c: Likewise.
26038         * lib/mbchar.c: Likewise.
26039         * lib/mbswidth.c: Likewise.
26040         * lib/mkdtemp.c: Likewise.
26041         * lib/pipe.c: Likewise.
26042         * lib/printf-args.c: Likewise.
26043         * lib/printf-parse.c: Likewise.
26044         * lib/progname.c: Likewise.
26045         * lib/progreloc.c: Likewise.
26046         * lib/readlink.c: Likewise.
26047         * lib/sh-quote.c: Likewise.
26048         * lib/stpcpy.c: Likewise.
26049         * lib/stpncpy.c: Likewise.
26050         * lib/strcasecmp.c: Likewise.
26051         * lib/strcasestr.c: Likewise.
26052         * lib/strcspn.c: Likewise.
26053         * lib/striconv.c: Likewise.
26054         * lib/strncasecmp.c: Likewise.
26055         * lib/strnlen1.c: Likewise.
26056         * lib/strstr.c: Likewise.
26057         * lib/strtok_r.c: Likewise.
26058         * lib/tls.c: Likewise.
26059         * lib/tmpdir.c: Likewise.
26060         * lib/unicodeio.c: Likewise.
26061         * lib/unsetenv.c: Likewise.
26062         * lib/vasnprintf.c: Likewise.
26063         * lib/vasprintf.c: Likewise.
26064         * lib/wait-process.c: Likewise.
26065         * lib/xallocsa.c: Likewise.
26066         * lib/xsetenv.c: Likewise.
26067         * lib/xstriconv.c: Likewise.
26068
26069 2006-09-13  Simon Josefsson  <jas@extundo.com>
26070
26071         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
26072         that internally, suggested by Ralf Wildenhues
26073         <Ralf.Wildenhues@gmx.de>.
26074
26075 2006-09-13  Simon Josefsson  <jas@extundo.com>
26076
26077         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
26078         @LIBOBJS@.
26079         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26080
26081 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
26082
26083         * lib/_fpending.c: Include <config.h> unconditionally, since we no
26084         longer worry about uses that don't define HAVE_CONFIG_H.
26085         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
26086         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
26087         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
26088         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
26089         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
26090         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
26091         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
26092         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
26093         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
26094         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
26095         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
26096         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
26097         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
26098         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
26099         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
26100         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
26101         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
26102         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
26103         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
26104         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
26105         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
26106         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
26107         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
26108         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
26109         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
26110         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
26111         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
26112         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
26113         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
26114         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
26115         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
26116         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
26117         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
26118         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
26119         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
26120         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
26121         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
26122         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
26123         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
26124         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
26125         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
26126         Likewise.
26127
26128 2006-09-13  Eric Blake  <ebb9@byu.net>
26129
26130         * lib/getopt.c: Fix typo in last commit.
26131
26132 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
26133
26134         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
26135         dgettext.
26136
26137 2006-09-12  Jim Meyering  <jim@meyering.net>
26138
26139         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
26140         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
26141         Reported by Nelson H. F. Beebe.
26142
26143 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26144
26145         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
26146         program_invocation_name and program_invocation_short_name are
26147         initialized.
26148         * lib/argp-namefrob.h: Move declarations of program_invocation_name
26149         and program_invocation_short_name to argp.h, so they are visible
26150         to user programs.
26151         * lib/argp.h: Likewise
26152
26153 2006-09-10  Bruno Haible  <bruno@clisp.org>
26154
26155         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
26156         m4/inttypes_h.m4, m4/uintmax_t.m4.
26157
26158 2006-09-10  Bruno Haible  <bruno@clisp.org>
26159
26160         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
26161         gl_AC_TYPE_UINTMAX_T.
26162
26163 2006-09-10  Bruno Haible  <bruno@clisp.org>
26164
26165         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
26166
26167 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
26168
26169         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
26170         convention.  Text proposed by Bruno Haible.
26171         (struct argp_option): Document the use of N_() wrappers.
26172
26173         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
26174         '\v', and translate the two parts separately, instead of feeding
26175         the whole string to gettext.  This allows to exclude
26176         '\v' from the strings visible to the translator by writing doc
26177         strings as N_("..") "\v" N_("..").
26178
26179 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
26180
26181         * config/srclist.txt: Undo latest change; the bug was fixed.
26182
26183 2006-09-09  Bruno Haible  <bruno@clisp.org>
26184
26185         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
26186         assignments if building a library without libtool.
26187         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
26188         in func_emit_lib_Makefile_am.
26189         (func_import): When building a static library libfoo.a, arrange to
26190         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
26191         (func_create_testdir): Likewise.
26192         * modules/gc (configure.ac, Makefile.am): If building statically,
26193         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
26194         * modules/iconvme (configure.ac, Makefile.am): Likewise.
26195         * modules/striconv (configure.ac, Makefile.am): Likewise.
26196         Based on a suggestion by Ralf Wildenhues.
26197
26198 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26199
26200         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
26201         Check for unistd.h too, since Autoconf doesn't assume POSIX.
26202         Also:
26203
26204         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26205         Add year_2050_test to catch glibc bug 2821
26206         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
26207
26208         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26209         Prefer #ifdef to #if.
26210
26211         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
26212         Return from 'main' instead of calling 'exit'.
26213
26214 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26215
26216         * lib/mktime.c (guess_time_tm): Fix bug where mktime
26217         returned the maximum time_t value rather than (time_t) -1.
26218         Problem originally reported by William Bardwell
26219         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
26220
26221         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
26222         Moved to here ...
26223         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
26224         ... from here.
26225
26226 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26227
26228         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
26229         2821 is fixed.
26230
26231 2006-09-08  Jim Meyering  <jim@meyering.net>
26232
26233         Don't make generated files read-only.  That would bother too many
26234         people.  However, do retain the ability to work when targets are
26235         read-only: remove the destination and temporary files before writing
26236         them (when generated via sed or echo), or by using the -f option for
26237         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
26238         * modules/alloca-opt, modules/argz, modules/arpa_inet:
26239         * modules/byteswap, modules/configmake, modules/fcntl:
26240         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
26241         * modules/localcharset, modules/netinet_in, modules/poll:
26242         * modules/stdbool, modules/stdint, modules/sys_select:
26243         * modules/sys_socket, modules/sys_stat, modules/sysexits:
26244
26245 2006-09-08  Jim Meyering  <jim@meyering.net>
26246
26247         Avoid new build failure on FreeBSD 6.0.
26248         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
26249         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
26250         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
26251
26252 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26253
26254         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
26255
26256 2006-09-07  Jim Meyering  <jim@meyering.net>
26257
26258         Fix global typo in last change: use chmod u-w, not chmod u-x.
26259         Spotted by Paul Eggert and Bruce Korb.
26260         * modules/alloca-opt, modules/argz, modules/arpa_inet:
26261         * modules/byteswap, modules/configmake, modules/fcntl:
26262         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
26263         * modules/localcharset, modules/netinet_in, modules/poll:
26264         * modules/stdbool, modules/stdint, modules/sys_select:
26265         * modules/sys_socket, modules/sys_stat, modules/sysexits:
26266
26267 2006-09-06  Jim Meyering  <jim@meyering.net>
26268
26269         Make generated files be read-only.
26270         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
26271         Ensure that each generated file is now read-only.
26272         * modules/argz: Likewise.
26273         * modules/arpa_inet: Likewise.
26274         * modules/byteswap: Likewise.
26275         * modules/configmake: Likewise.
26276         * modules/fcntl: Likewise.
26277         * modules/fnmatch: Likewise.
26278         * modules/getopt: Likewise.
26279         * modules/glob: Likewise.
26280         * modules/inttypes: Likewise.
26281         * modules/netinet_in: Likewise.
26282         * modules/poll: Likewise.
26283         * modules/stdbool: Likewise.
26284         * modules/stdint: Likewise.
26285         * modules/sys_select: Likewise.
26286         * modules/sys_socket: Likewise.
26287         * modules/sys_stat: Likewise.
26288         * modules/sysexits: Likewise.
26289         * modules/localcharset: Same as above, but continue using temporary
26290         file named "t-$@" (why different?) rather than the "$@-t" used
26291         everywhere else.
26292
26293         * modules/sysexits (Makefile.am): Replace literal occurrences
26294         of "sysexit.h" more readable, and more consistent, "$@".
26295
26296 2006-09-06  Bruno Haible  <bruno@clisp.org>
26297
26298         * modules/striconv: New file.
26299         * modules/xstriconv: New file.
26300         * MODULES.html.sh (Internationalization functions): Add striconv,
26301         xstriconv.
26302
26303 2006-09-06  Bruno Haible  <bruno@clisp.org>
26304
26305         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
26306         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
26307         not using libtool correctly.
26308
26309 2006-09-06  Bruno Haible  <bruno@clisp.org>
26310
26311         * lib/striconv.h: New file.
26312         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
26313         iconvstring.c.
26314         * lib/xstriconv.h: New file.
26315         * lib/xstriconv.c: New file.
26316
26317 2006-09-06  Bruno Haible  <bruno@clisp.org>
26318
26319         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
26320         lib_..._LDFLAGS.
26321
26322 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26323
26324         * lib/argz_.h: Sync from Libtool.
26325
26326         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
26327                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
26328
26329         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
26330
26331 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
26332
26333         * modules/trim: New file.
26334
26335 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
26336
26337         * lib/trim.h: New file.
26338         * lib/trim.c: New file.
26339
26340 2006-09-05  Bruno Haible  <bruno@clisp.org>
26341
26342         * MODULES.html.sh (String handling): Add trim.
26343
26344 2006-09-04  Karl Berry  <karl@gnu.org>
26345
26346         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
26347         until next release.
26348
26349 2006-09-03  Bruno Haible  <bruno@clisp.org>
26350
26351         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
26352         correctly.
26353
26354 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
26355
26356         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
26357         not gl_GETLOADAVG.  Omit unneeded semicolons.
26358         Problems reported by Ralf Wildenhues in
26359         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
26360         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
26361         at the end, which is the usual gnulib style.
26362
26363         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
26364         of doing all the work ourselves.
26365         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
26366         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
26367
26368 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
26369
26370         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
26371         Problem reported by Ralf Wildenhues in
26372         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
26373
26374         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
26375         HAVE_STRUCT_STATFS_F_FSTYPENAME.
26376
26377 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
26378
26379         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
26380         yesterday's patch by changing test -n to test -z.
26381
26382 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26383
26384         * modules/getloadavg (Files): Add m4/getloadavg.m4.
26385         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
26386         the former is now obsolescent.
26387
26388         * modules/chdir-long (Depends-on): Add fcntl.
26389
26390 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26391
26392         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
26393         obsolescent, and programs should use gnulib instead.
26394         * m4/getloadavg.m4: New file, with contents taken from Autoconf
26395         but with prefixes changed.
26396
26397 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26398
26399         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
26400         or stdbool.h, because they might not exist while configuring.
26401
26402         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
26403         Don't include unistd.h or limits.h; not needed, since chdir-long.h
26404         does that for us.
26405         (O_DIRECTORY): Remove.
26406
26407 2006-08-31  Eric Blake  <ebb9@byu.net>
26408
26409         * gnulib-tool: Don't let emacs change spaces to TAB.
26410
26411 2006-08-31  Bruno Haible  <bruno@clisp.org>
26412
26413         * gnulib-tool: When calling func_import more than once, do it in a
26414         subshell.
26415         Reported by Eric Blake <ebb9@byu.net>.
26416
26417 2006-08-31  Bruno Haible  <bruno@clisp.org>
26418
26419         * gnulib-tool (nl): Remove variable.
26420         (sed_transform_lib_file): Use more robust test for config-h module.
26421         (func_import): Fix typo in 2006-08-25 patch.
26422
26423 2006-08-31  Bruno Haible  <bruno@clisp.org>
26424
26425         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
26426         specified, augment Makefile.am variables instead of assigning them.
26427
26428 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
26429
26430         Work around a bug in both the Linux and SunOS 64-bit kernels:
26431         nanosleep mishandles sleeps for longer than 2**31 seconds.
26432         Problem reported by Frank v Waveren in
26433         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
26434         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
26435         Check for nanosleep bug.
26436         (LIB_NANOSLEEP): Append clock_gettime library if needed.
26437
26438 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
26439
26440         Work around a bug in both the Linux and SunOS 64-bit kernels:
26441         nanosleep mishandles sleeps for longer than 2**31 seconds.
26442         Problem reported by Frank v Waveren in
26443         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
26444         * lib/nanosleep.c (BILLION): New constant.
26445         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
26446         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
26447         implementation.
26448
26449 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
26450
26451         * modules/nanosleep (Depends-on): Add gettime.
26452
26453 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
26454         and Simon Josefsson  <jas@extundo.com>
26455         and Oskar Liljeblad  <oskar@osk.mine.nu>
26456
26457         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
26458         * gnulib-tool (func_import): New license type 'unmodifiable license
26459         text'.
26460         * modules/fdl: Use it.  Longer description.
26461         * module/gpl, module/lgpl: New files.
26462
26463 2006-08-30  Jim Meyering  <jim@meyering.net>
26464
26465         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
26466         shadowing the parameter.
26467
26468 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26469
26470         Sync from Libtool:
26471
26472         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26473
26474         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
26475         sharing with gnulib.  Report by Eric Blake.
26476
26477 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
26478
26479         * modules/isapipe: New file.
26480         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
26481
26482 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
26483
26484         * modules/configmake (Makefile.am): Add a comment, and omit
26485         the CONFIGMAKE_ prefix from generated macro names.  Suggested
26486         by Bruno Haible.
26487
26488 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
26489
26490         * m4/isapipe.m4: New file.
26491
26492 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
26493
26494         * lib/isapipe.c, lib/isapipe.h: New files.
26495
26496 2006-08-29  Jim Meyering  <jim@meyering.net>
26497
26498         * modules/configmake (Makefile.am): Make configmake.h depend on
26499         Makefile.  Otherwise, a stale configmake.h could hang around.
26500
26501 2006-08-29  Eric Blake  <ebb9@byu.net>
26502
26503         * lib/error.c (error_at_line, print_errno_message): Match libc, after
26504         resolution of upstream bug 3044.
26505
26506 2006-08-29  Bruno Haible  <bruno@clisp.org>
26507
26508         * modules/localcharset (Depends-on): Add configmake.
26509         (Makefile.am): Remove setting of LIBDIR through DEFS.
26510
26511 2006-08-29  Bruno Haible  <bruno@clisp.org>
26512
26513         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
26514         defined.
26515
26516 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
26517
26518         * modules/fcntl: New file.
26519         * modules/chdir-safer (Depends-on): Add fcntl.
26520         * modules/fts: Likewise.
26521         * modules/mkdir-p: Likewise.
26522
26523         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
26524         This undoes the most recent change, since we're now addressing the
26525         problem in a different way.
26526
26527         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
26528         into output, since the output might be called Makefile.am even
26529         if $makefile_name is something different.
26530         (func_import): Use $makefile_am rather than
26531         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
26532         empty.
26533
26534         * modules/inttypes (Files): Add m4/inttypes-h.m4.
26535
26536 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
26537
26538         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
26539         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
26540         recent change to stdint.m4, since we're now addressing the problem in a
26541         different way.
26542
26543 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
26544
26545         * m4/fcntl_h.m4: New file.
26546
26547 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
26548
26549         * lib/fcntl_.h: New file.
26550         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
26551         the fcntl module.
26552         * lib/dirchownmod.c: Likewise.
26553         * lib/fts.c: Likewise.
26554
26555         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
26556         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
26557         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
26558         just before including <inttypes.h>, to avoid circular inclusion.
26559
26560 2006-08-28  Jim Meyering  <jim@meyering.net>
26561
26562         * doc/visibility.texi: Actually read and correct the grammar of the
26563         sentence affected by yesterday's change.
26564
26565 2006-08-28  Eric Blake  <ebb9@byu.net>
26566
26567         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
26568         needs wrapper.
26569
26570 2006-08-28  Eric Blake  <ebb9@byu.net>
26571
26572         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
26573
26574 2006-08-28  Eric Blake  <ebb9@byu.net>
26575
26576         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
26577
26578 2006-08-28  Bruno Haible  <bruno@clisp.org>
26579
26580         * modules/c-strstr: New file, from GNU gettext.
26581         * MODULES.html.sh (String handling): Add c-strstr.
26582
26583 2006-08-28  Bruno Haible  <bruno@clisp.org>
26584
26585         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
26586         macros.
26587         Reported by Eric Blake.
26588
26589 2006-08-28  Bruno Haible  <bruno@clisp.org>
26590
26591         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
26592         (VASNPRINTF): Return a string of length > INT_MAX without failing.
26593         * lib/vasprintf.c: Include errno.h, limits.h.
26594         (EOVERFLOW): New fallback definition.
26595         (vasprintf): Test here whether the string length is > INT_MAX.
26596         * lib/vsnprintf.c: Include errno.h, limits.h.
26597         (EOVERFLOW): New fallback definition.
26598         (vsnprintf): Fix bug when generated string was too long for the buffer.
26599         Test here whether the string length is > INT_MAX.
26600
26601 2006-08-28  Bruno Haible  <bruno@clisp.org>
26602
26603         * lib/inttypes_.h (SCNX*): Remove definitions.
26604         Reported by Eric Blake.
26605
26606 2006-08-28  Bruno Haible  <bruno@clisp.org>
26607
26608         * lib/c-strstr.h: New file, from GNU gettext.
26609         * lib/c-strstr.c: New file, from GNU gettext.
26610
26611 2006-08-28  Bruno Haible  <bruno@clisp.org>
26612
26613         * gnulib-tool: Reorder some statements.
26614
26615 2006-08-28  Bruno Haible  <bruno@clisp.org>
26616
26617         * gnulib-tool: New option --makefile-name.
26618         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
26619         $makefile_name.
26620         (func_import): Write $makefile_name to the cache file, and read it from
26621         there unless explicitly specified. Use $makefile_name as file name
26622         instead of Makefile.am. Adjust the recommendations accordingly.
26623
26624 2006-08-28  Bruno Haible  <bruno@clisp.org>
26625
26626         * gnulib-tool (func_verify_module): Check against misapplying patch.
26627
26628 2006-08-28  Bruno Haible  <bruno@clisp.org>
26629
26630         * gnulib-tool (func_relativize, func_relconcat): New functions.
26631         Give an error if --local-dir is given with --update.
26632         Remove trailing slashes from $local_gnulib_dir.
26633         (func_import): Store the relativized $local_gnulib_dir in
26634         gnulib-cache.m4, and read it from there if not specified explicitly.
26635
26636 2006-08-28  Bruno Haible  <bruno@clisp.org>
26637
26638         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
26639         is the current directory. Respect also $local_gnulib_dir.
26640
26641 2006-08-28  Bruno Haible  <bruno@clisp.org>
26642             Simon Josefsson  <jas@extundo.com>
26643
26644         BeOS portability.
26645         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
26646
26647 2006-08-27  Jim Meyering  <jim@meyering.net>
26648
26649         * doc/visibility.texi: Remove duplicate word: "pointer".
26650
26651 2006-08-26  Bruno Haible  <bruno@clisp.org>
26652
26653         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
26654         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
26655         (Makefile.am): Create inttypes.h from inttypes_.h.
26656         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
26657
26658         * modules/imaxabs: New file.
26659
26660         * modules/imaxdiv: New file.
26661
26662 2006-08-26  Bruno Haible  <bruno@clisp.org>
26663
26664         * m4/inttypes.m4: New file.
26665         * m4/_inttypes_h.m4: Remove file.
26666         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
26667         PRI_MACROS_BROKEN.
26668         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
26669
26670         * m4/imaxabs.m4: New file.
26671
26672         * m4/imaxdiv.m4: New file.
26673
26674 2006-08-26  Bruno Haible  <bruno@clisp.org>
26675
26676         * lib/inttypes_.h: New file.
26677         * lib/inttypes.h: Remove file.
26678         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
26679
26680         * lib/imaxabs.c: New file.
26681
26682         * lib/imaxdiv.c: New file.
26683
26684 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26685
26686         New config-h module, so that "make" output needn't be cluttered
26687         by -DHAVE_CONFIG_H.
26688         * MODULES.html.sh (Support for building libraries and executables):
26689         Add config-h.
26690         * modules/config-h: New file.
26691         * gnulib-tool (nl, sed_transform_lib_file): New vars.
26692         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
26693         the config-h module is used.
26694
26695         New configmake module, so that "make" output needn't be cluttered
26696         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
26697         * MODULES.html.sh (Support for building libraries and executables):
26698         Add configmake.
26699         * modules/configmake: New file.
26700
26701 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26702
26703         * m4/config-h.m4: New file.
26704
26705 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
26706
26707         * config/srclist.txt: Add elisp-comp.
26708
26709 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
26710
26711         * MODULES.html.sh (Support for building libraries and executables):
26712         Add elisp-comp.
26713         * build-aux/elisp-comp: New file.
26714         * modules/elisp-comp: New file.
26715
26716 2006-08-24  Bruno Haible  <bruno@clisp.org>
26717
26718         * gnulib-tool (func_create_testdir): Use non-default values of
26719         sourcebase and m4base.
26720
26721 2006-08-24  Bruno Haible  <bruno@clisp.org>
26722
26723         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
26724         HTML structure.
26725
26726 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
26727
26728         * modules/openat (Depends-on): Add lchown.
26729
26730 2006-08-23  Bruno Haible  <bruno@clisp.org>
26731
26732         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
26733         of gl_LOCK_EARLY instead of gl_LOCK.
26734
26735 2006-08-23  Bruno Haible  <bruno@clisp.org>
26736
26737         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
26738         on OSF/1 to no.
26739         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
26740
26741 2006-08-23  Bruno Haible  <bruno@clisp.org>
26742
26743         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
26744         as unusable.
26745
26746         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
26747         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
26748         (gl_LOCK): New macro.
26749
26750 2006-08-22  Simon Josefsson  <jas@extundo.com>
26751
26752         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
26753         to md5 module.
26754
26755 2006-08-22  Simon Josefsson  <jas@extundo.com>
26756
26757         * MODULES.html.sh: Add "Support for maintaining and release
26758         projects".
26759
26760         * build-aux/gnupload: New file, from coreutils.
26761
26762 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
26763
26764         Avoid the need for AC_LIBSOURCES in m4 macros.
26765         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
26766         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
26767         * modules/check-version (EXTRA_DIST): Add check-version.h.
26768         * modules/crc (EXTRA_DIST): Add crc.h.
26769         * modules/des (EXTRA_DIST): Add des.h.
26770         * modules/gc (EXTRA_DIST): Add gc.h.
26771         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
26772         * modules/getline (EXTRA_DIST): Add getline.h.
26773         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
26774         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
26775         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
26776         * modules/md2 (EXTRA_DIST): Add md2.h.
26777         * modules/md4 (EXTRA_DIST): Add md4.h.
26778         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
26779         * modules/read-file (EXTRA_DIST): Add read-file.h.
26780         * modules/readline (EXTRA_DIST): Add readline.h.
26781         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
26782         rijndael-api-fst.h.
26783
26784 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
26785
26786         * m4/rijndael.m4 (gl_ARCFOUR):
26787         * m4/arctwo.m4 (gl_ARCTWO):
26788         * m4/check-version.m4 (gl_CHECK_VERSION):
26789         * m4/crc.m4 (gl_CRC):
26790         * m4/des.m4 (gl_DES):
26791         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
26792         * m4/gc.m4 (gl_GC):
26793         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
26794         * m4/getline.m4 (gl_FUNC_GETLINE):
26795         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
26796         * m4/hmac-md5.m4 (gl_HMAC_MD5):
26797         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
26798         * m4/md2.m4 (gl_MD2):
26799         * m4/md4.m4 (gl_MD4):
26800         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
26801         * m4/read-file.m4 (gl_FUNC_READ_FILE):
26802         * m4/readline.m4 (gl_FUNC_READLINE):
26803         * m4/rijndael.m4 (gl_RIJNDAEL):
26804         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
26805         to get the necessary .h files and whatnot.
26806
26807 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
26808
26809         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
26810         gnulib rather than the other way around.
26811         * config/srclistvars.sh (COREUTILS): Remove.
26812
26813 2006-08-22  Jim Meyering  <jim@meyering.net>
26814
26815         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
26816
26817         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
26818
26819 2006-08-22  Eric Blake  <ebb9@byu.net>
26820
26821         * modules/regexprops-generic: New file.
26822         * MODULES.html.sh (Support for building documentation): List it.
26823
26824 2006-08-22  Eric Blake  <ebb9@byu.net>
26825
26826         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
26827         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
26828         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
26829         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
26830
26831 2006-08-22  Bruno Haible  <bruno@clisp.org>
26832
26833         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
26834         and lib_LTLIBRARIES like the other lib_* variables.
26835
26836 2006-08-22  Bruno Haible  <bruno@clisp.org>
26837
26838         * build-aux/x-to-1.in: New file, from GNU gettext.
26839
26840 2006-08-22  Bruno Haible  <bruno@clisp.org>
26841
26842         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
26843         <utmpx.h> exists.
26844
26845 2006-08-22  Bruno Haible  <bruno@clisp.org>
26846
26847         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
26848         <utmpx.h> exists.
26849
26850 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
26851
26852         BeOS portability.
26853         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
26854         exist.
26855         Problem reported by Bruno Haible.
26856
26857 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
26858
26859         Avoid the need for AC_LIBSOURCES in m4 macros.
26860         * modules/acl (EXTRA_DIST): Add acl.h.
26861         * modules/argmatch (Files): Add m4/argmatch.m4.
26862         (configure.ac): Add gl_ARGMATCH.
26863         (EXTRA_DIST): Renamed from lib_SOURCES, for
26864         consistency with the other modules.  Remove argmatch.c.
26865         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
26866         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
26867         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
26868         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
26869         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
26870         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
26871         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
26872         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
26873         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
26874         * modules/closeout (EXTRA_DIST): Add closeout.h.
26875         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
26876         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
26877         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
26878         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
26879         dirname.h; remove basename.c and stripslash.c.
26880         * modules/exclude (EXTRA_DIST): Add exclude.h.
26881         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
26882         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
26883         * modules/file-type (EXTRA_DIST): Add file-type.h.
26884         * modules/filemode (EXTRA_DIST): Add filemode.h.
26885         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
26886         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
26887         * modules/fpending (EXTRA_DIST): Add __fpending.h.
26888         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
26889         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
26890         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
26891         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
26892         * modules/getdate (EXTRA_DIST): Add getdate.c.
26893         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
26894         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
26895         * modules/getpass (EXTRA_DIST): Add getpass.h.
26896         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
26897         * modules/group-member (EXTRA_DIST): Add group-member.h.
26898         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
26899         * modules/hash (EXTRA_DIST): Add hash.h.
26900         * modules/human (EXTRA_DIST): Add human.h.
26901         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
26902         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
26903         * modules/lchown (EXTRA_DIST): Add lchown.h.
26904         * modules/long-options (EXTRA_DIST): Add long-options.h.
26905         * modules/lstat (EXTRA_DIST): Add lstat.h.
26906         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
26907         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
26908         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
26909         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
26910         * modules/memxor (EXTRA_DIST): Add memxor.h.
26911         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
26912         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
26913         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
26914         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
26915         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
26916         * modules/physmem (EXTRA_DIST): Add physmem.h.
26917         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
26918         * modules/posixver (EXTRA_DIST): Add posixver.h.
26919         * modules/quote (EXTRA_DIST): Add quote.h.
26920         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
26921         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
26922         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
26923         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
26924         regex_internal.h regexec.c.
26925         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
26926         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
26927         * modules/same (EXTRA_DIST): Add same.h.
26928         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
26929         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
26930         * modules/savedir (EXTRA_DIST): Add savedir.h.
26931         * modules/sha1 (EXTRA_DIST): Add sha1.h.
26932         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
26933         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
26934         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
26935         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
26936         * modules/strdup (EXTRA_DIST): Add strdup.h.
26937         * modules/strftime (EXTRA_DIST): Add strftime.h.
26938         * modules/strndup (EXTRA_DIST): Add strndup.h.
26939         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
26940         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
26941         * modules/time_r (EXTRA_DIST): Add time_r.h.
26942         * modules/timespec (EXTRA_DIST): Add timespec.h.
26943         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
26944         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
26945         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
26946         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
26947         * modules/userspec (EXTRA_DIST): Add userspec.h.
26948         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
26949         * modules/utimens (EXTRA_DIST): Add utimens.h.
26950         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
26951         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
26952         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
26953         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
26954         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
26955         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
26956         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
26957         * modules/yesno (EXTRA_DIST): Add yesno.h.
26958
26959 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
26960
26961         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
26962
26963         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
26964         * m4/dev-ino.m4, same-inode.m4: Remove.
26965
26966         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
26967         * m4/acl.m4 (AC_FUNC_ACL):
26968         * m4/backupfile.m4 (gl_BACKUPFILE):
26969         * m4/c-strtod.m4 (gl_C99_STRTOLD):
26970         * m4/canon-host.m4 (gl_CANON_HOST):
26971         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
26972         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
26973         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
26974         * m4/cloexec.m4 (gl_CLOEXEC):
26975         * m4/close-stream.m4 (gl_CLOSE_STREAM):
26976         * m4/closeout.m4 (gl_CLOSEOUT):
26977         * m4/dirfd.m4 (gl_FUNC_DIRFD):
26978         * m4/dirname.m4 (gl_DIRNAME):
26979         * m4/exclude.m4 (gl_EXCLUDE):
26980         * m4/exitfail.m4 (gl_EXITFAIL):
26981         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
26982         * m4/file-type.m4 (gl_FILE_TYPE):
26983         * m4/filemode.m4 (gl_FILEMODE):
26984         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
26985         * m4/fpending.m4 (gl_FUNC_FPENDING):
26986         * m4/fprintftime.m4 (gl_FPRINTFTIME):
26987         * m4/fts.m4 (gl_FUNC_FTS):
26988         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
26989         * m4/getdate.m4 (gl_GETDATE):
26990         * m4/gethrxtime.m4 (gl_GETHRXTIME):
26991         * m4/getpagesize.m4 (gl_GETPAGESIZE):
26992         * m4/getpass.m4 (gl_FUNC_GETPASS):
26993         * m4/gettime.m4 (gl_GETTIME):
26994         * m4/getugroups.m4 (gl_GETUGROUPS):
26995         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
26996         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
26997         * m4/hard-locale.m4 (gl_HARD_LOCALE):
26998         * m4/hash.m4 (gl_HASH):
26999         * m4/idcache.m4 (gl_IDCACHE):
27000         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
27001         * m4/lchown.m4 (gl_FUNC_LCHOWN):
27002         * m4/long-options.m4 (gl_LONG_OPTIONS):
27003         * m4/lstat.m4 (gl_FUNC_LSTAT):
27004         * m4/md5.m4 (gl_MD5):
27005         * m4/memcasecmp.m4 (gl_MEMCASECMP):
27006         * m4/memcoll.m4 (gl_MEMCOLL):
27007         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
27008         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
27009         * m4/memxor.m4 (gl_MEMXOR):
27010         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
27011         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
27012         * m4/modechange.m4 (gl_MODECHANGE):
27013         * m4/mountlist.m4 (gl_MOUNTLIST):
27014         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
27015         * m4/openat.m4 (gl_FUNC_OPENAT):
27016         * m4/pathmax.m4 (gl_PATHMAX):
27017         * m4/physmem.m4 (gl_PHYSMEM):
27018         * m4/posixtm.m4 (gl_POSIXTM):
27019         * m4/posixver.m4 (gl_POSIXVER):
27020         * m4/quote.m4 (gl_QUOTE):
27021         * m4/quotearg.m4 (gl_QUOTEARG):
27022         * m4/readtokens.m4 (gl_READTOKENS):
27023         * m4/readutmp.m4 (gl_READUTMP):
27024         * m4/regex.m4 (gl_REGEX):
27025         * m4/safe-read.m4 (gl_SAFE_READ):
27026         * m4/safe-write.m4 (gl_SAFE_WRITE):
27027         * m4/same.m4 (gl_SAME):
27028         * m4/save-cwd.m4 (gl_SAVE_CWD):
27029         * m4/savedir.m4 (gl_SAVEDIR):
27030         * m4/settime.m4 (gl_SETTIME):
27031         * m4/sha1.m4 (gl_SHA1):
27032         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
27033         * m4/stat-macros.m4 (gl_STAT_MACROS):
27034         * m4/stat-time.m4 (gl_STAT_TIME):
27035         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
27036         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
27037         * m4/strdup.m4 (gl_FUNC_STRDUP):
27038         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
27039         * m4/strndup.m4 (gl_FUNC_STRNDUP):
27040         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
27041         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
27042         * m4/time_r.m4 (gl_TIME_R):
27043         * m4/timespec.m4 (gl_TIMESPEC):
27044         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
27045         * m4/unlinkdir.m4 (gl_UNLINKDIR):
27046         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
27047         * m4/userspec.m4 (gl_USERSPEC):
27048         * m4/utimecmp.m4 (gl_UTIMECMP):
27049         * m4/utimens.m4 (gl_UTIMENS):
27050         * m4/xalloc.m4 (gl_XALLOC):
27051         * m4/xgetcwd.m4 (gl_XGETCWD):
27052         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
27053         * m4/xreadlink.m4 (gl_XREADLINK):
27054         * m4/xstrtod.m4 (gl_XSTRTOD):
27055         * m4/yesno.m4 (gl_YESNO):
27056         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
27057         to get the necessary .h files and whatnot.
27058
27059 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
27060             Bruno Haible  <bruno@clisp.org>
27061
27062         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
27063         /bin/sh understanding of '!' conditional negation.
27064
27065 2006-08-21  Jim Meyering  <jim@meyering.net>
27066
27067         * modules/openat (Depends-on): Really alphabetize.
27068
27069         * modules/acl (Depends-on): Add error and quote.
27070
27071         * check-module (find_included_lib_files): Add at-func.c to the
27072         ok-to-include-more-than-once white list.
27073
27074         * modules/openat (Depends-on): Add lstat.  Alphabetize.
27075
27076 2006-08-21  Bruno Haible  <bruno@clisp.org>
27077
27078         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27079         Emit a pkgdata_DATA variable only if some snippets add contents to it.
27080         Reported by Martin Lambers <marlam@marlam.de>.
27081
27082 2006-08-21  Bruno Haible  <bruno@clisp.org>
27083
27084         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
27085         specify an installation location, don't emit a noinst_LIBRARIES or
27086         noinst_LTLIBRARIES assignment.
27087
27088 2006-08-21  Bruno Haible  <bruno@clisp.org>
27089
27090         BeOS portability.
27091         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
27092         BeOS has mbrtowc() but no <wctype.h>.
27093
27094 2006-08-21  Bruno Haible  <bruno@clisp.org>
27095
27096         BeOS portability.
27097         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
27098         exist.
27099
27100 2006-08-21  Bruno Haible  <bruno@clisp.org>
27101
27102         BeOS portability.
27103         * lib/mbchar.h: Include <wctype.h> only if it exists.
27104
27105 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27106
27107         Remove files that are no longer needed by their respective modules.
27108         * m4/obstack.m4: Remove.
27109         * m4/strerror_r.m4: Remove.
27110         * m4/uint32_t.m4: Remove.
27111         * m4/uintptr_t.m4: Remove.
27112         * m4/ullong_max.m4: Remove.
27113         * m4/xstrtoimax.m4: Remove.
27114         * m4/xstrtoumax.m4: Remove.
27115
27116         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
27117         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
27118         dependencies now capture this.
27119
27120         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
27121         Do not use AC_LIBSOURCES, since gnulib modules now do this.
27122         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
27123         * m4/human.m4 (gl_HUMAN): Likewise.
27124         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
27125         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
27126
27127         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
27128
27129         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
27130         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
27131         stdint.
27132         * m4/human.m4 (gl_HUMAN): Likewise.
27133         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
27134         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
27135         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
27136         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
27137         * m4/xstrtol (gl_XSTRTOL): Likewise.
27138
27139         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
27140         AC_TYPE_LONG_LONG_INT.
27141         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
27142         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
27143         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
27144         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
27145
27146         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
27147         on stdbool.
27148
27149         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
27150         (gl_PREREQ_XSTRTOUL): Remove.
27151
27152         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
27153
27154         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
27155         mode.
27156
27157 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27158
27159         Add and change modules to make it easier for coreutils to use
27160         gnulib-tool.
27161         * modules/backupfile (Files): Remove m4/d-ino.m4.
27162         (Depends-on): Add d-ino.
27163         * modules/cycle-check (Depends-on): Add stdint.
27164         (lib_SOURCES): Add cycle-check.h.
27165         * modules/d-ino: New module.
27166         * modules/d-type: New module.
27167         * modules/error (Files): Remove m4/strerror_r.m4.
27168         * modules/filemode (Files): Add m4/st_dm_mode.m4.
27169         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
27170         m4/inttypes_h.m4, m4/uintmax_t.m4.
27171         (Depends-on): Add stdint.
27172         (lib_SOURCES): Add fsusage.h.
27173         * modules/getcwd (Files): Remove d-ino.m4.
27174         (Depends-on): Add d-ino.
27175         * modules/getndelim2 (Depends-on): Add stdint.
27176         * modules/glob (Files): Remove m4/d-type.m4.
27177         (Depends-on): Add d-type.
27178         * modules/host-os: New module.
27179         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
27180         m4/inttypes_h.m4, m4/uintmax_t.m4.
27181         * Depends-on: Add stdint.
27182         (lib_SOURCES): Add human.h.
27183         * modules/inttostr (Files): Remove m4/intmax_t.m4,
27184         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
27185         m4/uintmax_t.m4, m4/ulonglong.m4.
27186         (Depends-on): Add stdint.
27187         (EXTRA_DIST): Add inttostr.h.
27188         * modules/lchmod: New module.
27189         * modules/link-follow: New module.
27190         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
27191         (Depends-on): Add lchmod.
27192         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
27193         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
27194         (Depends-on): Add stdint.
27195         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
27196         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
27197         (Depends-on): Add stdint.
27198         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
27199         * modules/perl: New module.
27200         * modules/regex (Depends-on): Add stdint.
27201         * modules/rmdir-errno: New module.
27202         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
27203         m4/intmax_t.m4.
27204         (Depends-on): Add stdint.
27205         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
27206         m4/uintmax_t.m4.
27207         (Depends-on): Add stdint.
27208         * modules/unlink-busy: New module.
27209         * modules/utimecmp (Depends-on): Add stdint.
27210         * modules/uptime: New module.
27211         * modules/winsz-ioctl: New module.
27212         * modules/winsz-termios: New module.
27213         * modules/xnanosleep (Depends-on): Add nanosleep.
27214         * modules/ullong_max: Remove.
27215         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
27216         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
27217         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
27218         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
27219         (Depends-on): Add inttypes.
27220         (lib_SOURCES): Add xstrtol.h.
27221         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
27222         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
27223         * MODULES.html.sh: Move 'assert' into the assert section.
27224         Move 'dummy' into the linking section.
27225         Remove ullong_max.
27226         Add section for compatibility checks for POSIX:2001 functions,
27227         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
27228         winsz-ioctl, and winsz-termios into it.
27229         Add lchmod.
27230         Add top-level Misc section and put host-os, perl, and uptime
27231         into it.
27232
27233 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27234
27235         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
27236         now assume the stdint module.  Do not include inttypes.h.
27237         * lib/fsusage.h: Likewise.
27238         * lib/getndelim2.c: Likewise.
27239         * lib/human.h: Likewise.
27240         * lib/inttostr.h: Likewise.
27241         * lib/obstack.c: Likewise.
27242         * lib/regex_internal.h: Likewise.
27243         * lib/tempname.c: Likewise.
27244         * lib/utimecmp.c: Likewise.
27245         * lib/xstrtol.h: Likewise.
27246
27247         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
27248
27249         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
27250         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
27251         * lib/xtime.h: Likewise.
27252
27253 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27254
27255         * modules/openat (Files): Add lib/fchmodat.c.
27256         Fixes problem reported by Jay Youngman.
27257
27258 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27259
27260         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
27261         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
27262
27263 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
27264             Bruno Haible  <bruno@clisp.org>
27265
27266         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
27267         and is a script that invokes bison. Tighten the code. Add comments.
27268
27269 2006-08-18  Jim Meyering  <jim@meyering.net>
27270
27271         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
27272         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
27273         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
27274         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
27275
27276 2006-08-18  Bruno Haible  <bruno@clisp.org>
27277
27278         * modules/bison-i18n: New file.
27279         * MODULES.html.sh (Internationalization functions): Add it.
27280
27281 2006-08-18  Bruno Haible  <bruno@clisp.org>
27282
27283         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
27284         sys/statvfs.h. When getmntinfo was found, check its declaration and
27285         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
27286
27287 2006-08-18  Bruno Haible  <bruno@clisp.org>
27288
27289         * m4/bison-i18n.m4: New file, from bison.
27290
27291 2006-08-18  Bruno Haible  <bruno@clisp.org>
27292
27293         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
27294         (ME_DUMMY): Treat "kernfs" as a dummy.
27295         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
27296
27297 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
27298
27299         Update from coreutils.
27300
27301         2006-08-15  Jim Meyering  <jim@meyering.net>
27302
27303         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
27304
27305         2006-01-17  Jim Meyering  <jim@meyering.net>
27306
27307         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
27308
27309         2006-01-11  Jim Meyering  <jim@meyering.net>
27310
27311         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
27312         Check for the lchmod function.
27313
27314 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
27315
27316         Update from coreutils.
27317
27318         * lib/__fpending.h: Add copyright notice.
27319         * lib/fprintftime.h: Likewise.
27320         * lib/savedir.c: Use (C) in copyright notice.
27321         * lib/savedir.h: Likewise.
27322
27323         2006-08-15  Jim Meyering  <jim@meyering.net>
27324
27325         * lib/at-func.c: New file, with the logic of all emulated at-functions.
27326         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
27327         in support of the EXPECTED_ERRNO macro.
27328         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
27329         definitions.  Instead, define the appropriate symbols and include
27330         "at-func.c".
27331         * lib/mkdirat.c (mkdirat): Likewise.
27332         * lib/fchmodat.c (fchmodat): Likewise.
27333         (ENOSYS): Remove definition.
27334         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
27335         it.  Don't include "unistd--.h" -- it wasn't ever used.
27336
27337         2006-01-17  Jim Meyering  <jim@meyering.net>
27338
27339         Rewrite fts.c not to change the current working directory,
27340         by using openat, fstatat, fdopendir, etc..
27341
27342         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
27343         (HAVE_OPENAT_SUPPORT): Define.
27344         [_LIBC] (fchdir): Don't undef or define; no longer used.
27345         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
27346         Now, this `function' always succeeds, and consumes its file descriptor
27347         parameter -- so callers must not close such FDs.  Update callers.
27348         (diropen_fd, opendirat, cwd_advance_fd): New functions.
27349         (diropen): Add parameter, SP.  Adjust all callers.
27350         Implement using diropen_fd, rather than open.
27351         (fts_open): Initialize new member, fts_cwd_fd.
27352         Remove fts_rft-setting code.
27353         (fts_close): Close fts_cwd_fd, if necessary.
27354         (__opendir2): Define in terms of opendir or opendirat,
27355         depending on whether the FST_NOCHDIR flag is set.
27356         (fts_build): Since fts_safe_changedir consumes its FD, and since
27357         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
27358         and close the dup'd file descriptor upon failure.
27359         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
27360         (fts_safe_changedir): Tweak semantics to reflect that this function
27361         now calls cwd_advance_fd and hence consumes its FD argument.
27362         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
27363         [struct FTS] (fts_rft): Remove now-unused member.
27364         [struct FTS] (fts_cycle.state): Improve comment.
27365
27366         * lib/openat.c (openat_needs_fchdir): New function.
27367         * lib/openat.h (openat_needs_fchdir): Declare it.
27368
27369 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
27370
27371         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
27372         Problem and fix reported by Pádraig Brady in
27373         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
27374
27375 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
27376
27377         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
27378
27379 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
27380
27381         * lib/memcoll.c (memcoll): Optimize for the common case where the
27382         arguments are bytewise equal.
27383
27384 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
27385
27386         * doc/regexprops-generic.texi: Add a copyright notice.
27387
27388 2006-08-15  Bruno Haible  <bruno@clisp.org>
27389
27390         * modules/tmpdir (License): Change to LGPL.
27391
27392 2006-08-15  Bruno Haible  <bruno@clisp.org>
27393
27394         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
27395         module.
27396
27397 2006-08-14  Simon Josefsson  <jas@extundo.com>
27398
27399         * config/srclist.txt: Add gnupload.
27400
27401 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
27402
27403         Change copyright notice from LGPL 2 to GPL 2, since that's the
27404         standard form used in the gnulib repository.
27405         * tests/test-lock.c: Likewise.
27406         * tests/test-stdint.c: Likewise.
27407         * tests/test-tls.c: Likewise.
27408
27409         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
27410         prelude-manager.  User shorter URLs for GNU projects, without '?'.
27411         Add copyright notice.
27412
27413         * check-module: Add copyright notice.  Output a copyright
27414         notice if "--version" is specified.
27415         * modules/COPYING: New file.
27416         * tests/test-getaddrinfo.c: Add copyright notice.
27417         * tests/test-verify.c: Likewise.
27418
27419 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
27420
27421         Change copyright notice from LGPL 2 to GPL 2, since that's the
27422         standard form used in the gnulib repository.
27423         * lib/lock.c: LGPL -> GPL.
27424         * lib/lock.h: Likewise.
27425         * lib/strnlen1.c: Likewise.
27426         * lib/strnlen1.h: Likewise.
27427         * lib/tls.c: Likewise.
27428         * lib/tls.h: Likewise.
27429         * lib/tmpdir.c: Likewise.
27430
27431         * lib/TODO: Remove; this belongs only in coreutils.
27432
27433 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
27434
27435         Add copyright notices to long-enough files that lack them, since
27436         otherwise the files aren't clearly free.  Use the same notice that
27437         getdate.texi already uses.
27438         * doc/alloca-opt.texi: Add copyright notice.
27439         * doc/alloca.texi: Likewise.
27440         * doc/ctime.texi: Likewise.
27441         * doc/functions.texi: Likewise.
27442         * doc/gcd.texi: Likewise.
27443         * doc/gnulib-tool.texi: Likewise.
27444         * doc/inet_ntoa.texi: Likewise.
27445         * doc/visibility.texi: Likewise.
27446
27447         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
27448         * doc/quote.texi: Add copyright notice.
27449
27450         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
27451         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
27452         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
27453         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
27454         is now obsolete, and give a pointer to the Sun list.
27455         Add copyright notice.
27456
27457 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
27458
27459         * config/srclistvars.sh: Add copyright notice.
27460
27461 2006-08-14  Eric Blake  <ebb9@byu.net>
27462
27463         Import the following change from libc:
27464
27465         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
27466
27467         Upstream bug 2997.
27468         * lib/misc/error.c: Add space between program name and message if file
27469         name is missing.
27470
27471 2006-08-12  Karl Berry  <karl@gnu.org>
27472
27473         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
27474         remove, these originate in gnulib now.
27475
27476 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27477
27478         * doc/Makefile (standards.info standards.html standards.dvi):
27479         Also depend on make-stds.texi.
27480
27481 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
27482
27483         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
27484         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
27485
27486         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
27487         in wchar_t.  Problem reported by Eric Blake.
27488
27489         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
27490         LEN is smaller than SIZE.  Suggested by Bruno Haible.
27491         Also, help the compiler to keep LEN in a register.
27492
27493 2006-08-11  Eric Blake  <ebb9@byu.net>
27494
27495         * users.txt: Sort.  Add tar.
27496
27497 2006-08-11  Bruno Haible  <bruno@clisp.org>
27498
27499         * users.txt: New file.
27500
27501 2006-08-11  Bruno Haible  <bruno@clisp.org>
27502
27503         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
27504         before <wchar.h>. Needed for OSF/1 and BSD/OS.
27505
27506 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
27507
27508         * modules/snprintf (Depends-on): Remove minmax.
27509         (Maintainer): Add self and Bruno.
27510
27511 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
27512
27513         * lib/.cppi-disable: Add snprintf.h, socket_.h.
27514         * lib/snprintf.c: Include <errno.h> and <limits.h>.
27515         (EOVERFLOW): Define if the system does not.
27516         Do not include "minmax.h"; it wasn't used.
27517         (snprintf): Don't assume size_t promotes to an unsigned type.
27518         Fix bug when generated string was too long for the buffer: the
27519         buffer's contents are supposed to be the initial prefix of the
27520         output.  Don't assume vasnprintf returns EOVERFLOW if the size
27521         exceeds INT_MAX; do the check ourselves.
27522
27523         Import the following changes from libc:
27524
27525         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
27526
27527         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
27528         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
27529         set wc to the byte which couldn't be converted.
27530         (re_string_reconstruct): Don't clear valid_raw_len before calling
27531         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
27532         tip_context using re_string_context_at.
27533
27534         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
27535
27536         * lib/posix/regex.h: g++ still cannot handled [restrict].
27537
27538         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
27539
27540         * lib/posix/regex.h: Remove special handling for VMS.
27541
27542 2006-08-10  Jim Meyering  <jim@meyering.net>
27543
27544         * modules/same-inode: New module.
27545         * modules/dev-ino: New module.
27546         * modules/cycle-check: Depend on these modules, rather than simply
27547         including their .h files.
27548         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
27549         required via m4/cycle-check.m4.
27550         * modules/same: Depend on new same-inode module, rather than
27551         including same-inode.h.
27552         * modules/chdir-safer: New file.
27553
27554         * modules/chown (Depends-on): Add stat-macros.
27555
27556 2006-08-10  Jim Meyering  <jim@meyering.net>
27557
27558         * m4/cycle-check.m4: New file.
27559         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
27560         * m4/dev-ino.m4, m4/same-inode.m4: New files.
27561
27562 2006-08-10  Eric Blake  <ebb9@byu.net>
27563
27564         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
27565         in from original proposal.
27566
27567 2006-08-10  Eric Blake  <ebb9@byu.net>
27568         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
27569
27570         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
27571         namespace.
27572
27573 2006-08-10  Bruno Haible  <bruno@clisp.org>
27574
27575         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
27576         as well.
27577
27578 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27579
27580         Sync from coreutils.
27581
27582         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
27583
27584         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
27585         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
27586
27587 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27588
27589         * modules/restrict: Remove; no longer needed now that we assume
27590         Autoconf 2.59 or later.
27591         * MODULES.html.sh: Remove 'restrict'.
27592         * modules/argp (Depends-on): Remove 'restrict'.
27593         * modules/base64 (Depends-on): Likewise.
27594         * modules/gc (Depends-on): Likewise.
27595         * modules/getaddrinfo (Depends-on): Likewise.
27596         * modules/glob (Depends-on): Likewise.
27597         * modules/inet_ntop (Depends-on): Likewise.
27598         * modules/inet_pton (Depends-on): Likewise.
27599         * modules/memxor (Depends-on): Likewise.
27600         * modules/regex (Depends-on): Likewise.
27601         * modules/strtok_r (Depends-on): Likewise.
27602         * modules/time_r (Depends-on): Likewise.
27603
27604 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27605
27606         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
27607         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
27608         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
27609         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
27610         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
27611         * m4/memxor.m4 (gl_MEMXOR): Likewise.
27612         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
27613         gl_C_RESTRICT replaced by AC_C_RESTRICT.
27614
27615         Merge from coreutils.
27616         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
27617         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
27618         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
27619         * m4/time_r.m4 (gl_TIME_R): Likewise.
27620
27621 2006-08-09  Karl Berry  <karl@gnu.org>
27622
27623         * config/srclist.txt: no more gettext-tools, per Bruno.
27624
27625 2006-08-08  Eric Blake  <ebb9@byu.net>
27626
27627         * modules/verror: New module.
27628         * MODULES.html.sh: Document it.
27629
27630 2006-08-08  Eric Blake  <ebb9@byu.net>
27631
27632         * lib/verror.h, lib/verror.c: New files.
27633
27634 2006-08-08  Eric Blake  <ebb9@byu.net>
27635
27636         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
27637         verror_at_line output complies with GNU Coding Standards even when
27638         file is NULL.
27639
27640 2006-08-07  Bruno Haible  <bruno@clisp.org>
27641
27642         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
27643         versions of AIX.
27644         Reported by Ralf Wildenhues.
27645
27646 2006-08-07  Bruno Haible  <bruno@clisp.org>
27647
27648         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
27649         in an AC_DEFUN. Needed so that the autoconf snippets can use
27650         AC_REQUIRE.
27651
27652 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27653
27654         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27655         Initialize pkgdata_DATA.
27656         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
27657         overriding it.
27658
27659 2006-08-06  Eric Blake  <ebb9@byu.net>
27660
27661         * lib/error.h: Fold in some upstream changes from glibc.
27662         * lib/error.c: Likewise.
27663
27664 2006-08-04  Bruno Haible  <bruno@clisp.org>
27665
27666         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27667         Make the mostlyclean-local rule depend on mostlyclean-generic.
27668         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
27669
27670 2006-07-31  Bruno Haible  <bruno@clisp.org>
27671
27672         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
27673         <stdlib.h>, <string.h>.
27674
27675 2006-07-30  Bruno Haible  <bruno@clisp.org>
27676
27677         * modules/readlink (License): Change to LGPL.
27678
27679 2006-07-30  Bruno Haible  <bruno@clisp.org>
27680
27681         * modules/javaversion (Makefile.am): Distribute javaversion.java and
27682         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
27683         set PKGDATADIR to point to it.
27684
27685 2006-07-30  Bruno Haible  <bruno@clisp.org>
27686
27687         * modules/csharpexec (configure.ac): Comment out macro invocation.
27688         * modules/javaexec (configure.ac): Likewise.
27689         * modules/javacomp-script (configure.ac): Likewise.
27690
27691         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
27692
27693 2006-07-30  Bruno Haible  <bruno@clisp.org>
27694
27695         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
27696         linked-list.
27697
27698 2006-07-30  Bruno Haible  <bruno@clisp.org>
27699
27700         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
27701
27702 2006-07-30  Bruno Haible  <bruno@clisp.org>
27703
27704         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27705         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
27706         get removed.
27707
27708 2006-07-29  Bruno Haible  <bruno@clisp.org>
27709
27710         Make it possible for gnulib-tool to work with locally modified or
27711         augmented gnulib repositories.
27712         * gnulib-tool (func_usage): Document --local-dir option.
27713         (local_gnulib_dir): New variable.
27714         Handle --local-dir option.
27715         (func_lookup_file): New function.
27716         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
27717         (func_get_description, func_get_filelist, func_get_description,
27718         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
27719         func_get_automake_snippet, func_get_include_directive,
27720         func_get_license, func_get_maintainer): Use func_lookup_file.
27721         (func_import, func_create_testdir): Use func_lookup_file.
27722
27723 2006-07-29  Bruno Haible  <bruno@clisp.org>
27724
27725         * modules/setenv (Depends-on): Add unistd.
27726
27727 2006-07-29  Bruno Haible  <bruno@clisp.org>
27728
27729         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
27730
27731 2006-07-29  Bruno Haible  <bruno@clisp.org>
27732
27733         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
27734
27735 2006-07-29  Bruno Haible  <bruno@clisp.org>
27736
27737         * gnulib-tool (import, update): If there is no Makefile.am, look at
27738         aclocal.m4, instead of bailing out.
27739
27740 2006-07-29  Bruno Haible  <bruno@clisp.org>
27741
27742         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
27743         Categorize the options by when they are useful.
27744
27745 2006-07-29  Bruno Haible  <bruno@clisp.org>
27746
27747         * gnulib-tool (func_usage): Document option --no-libtool.
27748         Handle option --no-libtool.
27749         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
27750         for changed semantics of $libtool variable.
27751         (func_import): Likewise. If libtool is not used, show this through
27752         an option --no-libtool.
27753         (func_create_testdir): Update.
27754
27755 2006-07-29  Bruno Haible  <bruno@clisp.org>
27756
27757         * gnulib-tool (func_import): Extend error message about missing
27758         --doc-base.
27759
27760 2006-07-29  Bruno Haible  <bruno@clisp.org>
27761
27762         * gnulib-tool (func_import): Don't create the $docbase directory if
27763         there is no file to store there.
27764
27765 2006-07-29  Bruno Haible  <bruno@clisp.org>
27766
27767         * gnulib-tool (autoconf_minversion): If a --dir option is given and
27768         relevant, look for configure.ac there, not in the current directory.
27769         Also use a simple search for AC_PREREQ, not "autoconf --trace".
27770
27771 2006-07-29  Bruno Haible  <bruno@clisp.org>
27772
27773         * gnulib-tool (SORT): New variable.
27774         (func_usage): Undocument --assume-autoconf option.
27775         Remove --assume-autoconf option handling.
27776         (autoconf_minversion): Determine from the contents of configure.ac.
27777         (func_import): Remove autoconf_minversion handling.
27778         Suggested by Eric Blake.
27779
27780 2006-07-29  Bruno Haible  <bruno@clisp.org>
27781
27782         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
27783
27784 2006-07-29  Bruno Haible  <bruno@clisp.org>
27785
27786         * config/srclist.txt (*setenv.[ch]): Remove rules.
27787
27788 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27789
27790         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
27791
27792 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27793
27794         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
27795         arpa/inet.h.
27796
27797 2006-07-28  Simon Josefsson  <jas@extundo.com>
27798
27799         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
27800         * modules/inet_pton (Depends-on): Likewise.
27801
27802 2006-07-28  Simon Josefsson  <jas@extundo.com>
27803
27804         * m4/netinet_in_h.m4: New file.
27805
27806 2006-07-28  Simon Josefsson  <jas@extundo.com>
27807
27808         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
27809         #include's.
27810
27811 2006-07-28  Simon Josefsson  <jas@extundo.com>
27812
27813         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
27814         #include's.
27815
27816 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
27817
27818         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
27819         setgid on directories only if they set these bits.
27820         * lib/modechange.h: Remove obsolete comment about masks.
27821
27822 2006-07-28  Eric Blake  <ebb9@byu.net>
27823
27824         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
27825         macro expansion.
27826
27827 2006-07-28  Bruno Haible  <bruno@clisp.org>
27828
27829         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
27830
27831 2006-07-28  Bruno Haible  <bruno@clisp.org>
27832
27833         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
27834
27835 2006-07-28  Bruno Haible  <bruno@clisp.org>
27836
27837         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
27838         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
27839         Define fallbacks.
27840         Avoids link error on FreeBSD 4.x.
27841         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27842
27843         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
27844         encoding.
27845         * lib/mbswidth.c (iswcntrl): Likewise.
27846
27847 2006-07-27  Bruno Haible  <bruno@clisp.org>
27848
27849         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
27850         test.
27851
27852 2006-07-27  Bruno Haible  <bruno@clisp.org>
27853
27854         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
27855         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
27856         defined.
27857
27858 2006-07-26  Eric Blake  <ebb9@byu.net>
27859
27860         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
27861
27862 2006-07-26  Eric Blake  <ebb9@byu.net>
27863
27864         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
27865         like mingw that lack mkstemp.
27866         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
27867         avoid compilation warning on mingw.
27868
27869 2006-07-26  Bruno Haible  <bruno@clisp.org>
27870
27871         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
27872         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
27873         INT_FAST*_MIN, INTPTR_MIN.
27874
27875 2006-07-25  Bruno Haible  <bruno@clisp.org>
27876
27877         * modules/version-etc (Depends-on): Add stdarg.
27878
27879 2006-07-25  Bruno Haible  <bruno@clisp.org>
27880
27881         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
27882         complex commands.
27883
27884 2006-07-25  Bruno Haible  <bruno@clisp.org>
27885
27886         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
27887         defined in <stdarg.h> or config.h.
27888
27889 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
27890
27891         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
27892         (gl_STDIO_SAFER): Remove.
27893
27894 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
27895
27896         * MODULES.html.sh (File stream based Input/Output):
27897         Add fopen-safer, tmpfile-safer; remove stdio-safer.
27898         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
27899         * modules/fopen-safer, modules/tmpfile-safer: New files.
27900         * modules/stdio-safer: Remove.
27901
27902 2006-07-24  Bruno Haible  <bruno@clisp.org>
27903
27904         * modules/tmpdir: New file.
27905         * MODULES.html.sh (File system functions): Add it.
27906
27907 2006-07-24  Bruno Haible  <bruno@clisp.org>
27908
27909         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
27910         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
27911
27912 2006-07-24  Bruno Haible  <bruno@clisp.org>
27913
27914         * modules/clean-temp: New file.
27915
27916 2006-07-24  Bruno Haible  <bruno@clisp.org>
27917
27918         * m4/tmpdir.m4: New file, from GNU gettext.
27919
27920 2006-07-24  Bruno Haible  <bruno@clisp.org>
27921
27922         * lib/tmpdir.h: New file, from GNU gettext.
27923         * lib/tmpdir.c: New file, from GNU gettext.
27924
27925 2006-07-24  Bruno Haible  <bruno@clisp.org>
27926
27927         * lib/clean-temp.h: New file, from GNU gettext.
27928         * lib/clean-temp.c: New file, from GNU gettext.
27929
27930 2006-07-23  Eric Blake  <ebb9@byu.net>
27931
27932         * modules/stdio-safer (Files): Add tmpfile-safer.c.
27933         (Depends-on): Add binary-io.
27934
27935 2006-07-23  Eric Blake  <ebb9@byu.net>
27936
27937         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
27938
27939 2006-07-23  Eric Blake  <ebb9@byu.net>
27940
27941         * lib/tmpfile-safer.c: New file.
27942         * lib/stdio-safer.h (fopen_safer): Add prototype.
27943         * lib/stdio--.h (tmpfile): Make safer.
27944
27945 2006-07-23  Bruno Haible  <bruno@clisp.org>
27946
27947         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
27948         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
27949         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
27950         gl_linked_remove_at): Use it.
27951
27952 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27953         and Simon Josefsson <jas@extundo.com>
27954
27955         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
27956
27957         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
27958
27959 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
27960
27961         * modules/close-stream: New file.
27962         * modules/closeout (Description): Make it clear that it exits
27963         with a diagnostic on error.
27964         (Depends-on): Add close-stream.  Remove fpending, stdbool.
27965         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
27966
27967 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
27968
27969         * m4/close-stream.m4: New file.
27970
27971 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
27972
27973         * lib/close-stream.c, lib/close-stream.h: New files.
27974
27975 2006-07-22  Bruno Haible  <bruno@clisp.org>
27976
27977         Merge from GNU gettext 0.15.
27978
27979         2006-05-01  Bruno Haible  <bruno@clisp.org>
27980
27981                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
27982
27983         2006-07-22  Bruno Haible  <bruno@clisp.org>
27984
27985                 * modules/javaversion: New file.
27986                 * MODULES.html.sh (Java): Add javaversion.
27987
27988         2006-03-12  Bruno Haible  <bruno@clisp.org>
27989
27990                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
27991
27992         2005-12-04  Bruno Haible  <bruno@clisp.org>
27993
27994                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
27995                 (untested).
27996
27997         2006-06-21  Bruno Haible  <bruno@clisp.org>
27998
27999                 Avoid warnings from recent versions of mcs.
28000                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
28001                 -o, -L, -r any more. Use options documented since mcs-1.0
28002                 instead. Similarly for -g.
28003
28004         2005-12-04  Bruno Haible  <bruno@clisp.org>
28005
28006                 * build-aux/csharpcomp.sh.in: Suffix for resources is
28007                 .resources, not .resource.
28008
28009         2005-07-09  Bruno Haible  <bruno@clisp.org>
28010
28011                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
28012                 add a .dll suffix.
28013                 Reported by Mark Junker <mjscod@gmx.de>.
28014
28015         2006-07-22  Bruno Haible  <bruno@clisp.org>
28016
28017                 * modules/gettext: Upgrade to gettext-0.15.
28018                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
28019                 m4/visibility.m4.
28020                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
28021
28022 2006-07-22  Bruno Haible  <bruno@clisp.org>
28023
28024         Merge from GNU gettext 0.15.
28025
28026         2006-03-25  Bruno Haible  <bruno@clisp.org>
28027
28028                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
28029
28030         2006-07-21  Bruno Haible  <bruno@clisp.org>
28031
28032                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
28033                 "1.1".
28034
28035         2006-05-09  Bruno Haible  <bruno@clisp.org>
28036
28037                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
28038                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
28039                 for the conftestver execution.
28040
28041         2006-05-01  Bruno Haible  <bruno@clisp.org>
28042
28043                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
28044                 optional target-version argument. Verify that the compiler
28045                 groks source of the specified source-version, or add -source
28046                 option as necessary. Verify that the compiler produces
28047                 bytecode in the specified target-version, or add -target and
28048                 -source options as necessary. Make the result of the test
28049                 available as variable CONF_JAVAC. Also log error output in
28050                 config.log.
28051
28052         2006-03-11  Bruno Haible  <bruno@clisp.org>
28053
28054                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
28055
28056         2006-05-09  Bruno Haible  <bruno@clisp.org>
28057
28058                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
28059                 CLASSPATH_SEPARATOR to a semicolon.
28060
28061         2006-03-12  Bruno Haible  <bruno@clisp.org>
28062
28063                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
28064                 available as variable CONF_JAVA, for subsequent autoconf
28065                 tests. Also log error output in config.log.
28066
28067         2006-07-19  Bruno Haible  <bruno@clisp.org>
28068
28069                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
28070                 that getline works on glibc2 systems. Needed to avoid trouble
28071                 in relocatable.c.
28072                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
28073
28074         2005-12-04  Bruno Haible  <bruno@clisp.org>
28075
28076                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
28077                 launcher (untested).
28078
28079         2005-12-04  Bruno Haible  <bruno@clisp.org>
28080
28081                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
28082
28083         2006-07-22  Bruno Haible  <bruno@clisp.org>
28084
28085                 * gettext.m4: Update from GNU gettext-0.15.
28086                 * nls.m4: Likewise.
28087                 * po.m4: Likewise.
28088                 * inttypes-pri.m4: Likewise.
28089                 * inttypes-h.m4: Renamed from inttypes.m4.
28090                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
28091
28092 2006-07-22  Bruno Haible  <bruno@clisp.org>
28093
28094         Merge from GNU gettext 0.15.
28095
28096         2005-07-05  Bruno Haible  <bruno@clisp.org>
28097
28098                 * printf-args.c (printf_fetchargs): Work around broken
28099                 definition of wint_t on mingw.
28100
28101         2005-02-12  Bruno Haible  <bruno@clisp.org>
28102
28103                 * xallocsa.h: Add extern "C" for C++.
28104
28105         2006-05-17  Bruno Haible  <bruno@clisp.org>
28106
28107                 Cygwin portability.
28108                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
28109
28110         2006-04-30  Bruno Haible  <bruno@clisp.org>
28111
28112                 * progreloc.c: Include <mach-o/dyld.h> if available.
28113                 (find_executable): Use _NSGetExecutablePath when possible.
28114
28115         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
28116
28117                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
28118                 function.
28119
28120         2005-12-29  Bruno Haible  <bruno@clisp.org>
28121
28122                 * progreloc.c (set_program_name_and_installdir): Fix
28123                 compilation error.
28124
28125         2005-12-04  Bruno Haible  <bruno@clisp.org>
28126
28127                 Cygwin portability.
28128                 * progreloc.c: Include <windows.h> also on Cygwin.
28129                 (find_executable): Add support for Cygwin.
28130                 (set_program_name_and_installdir): Handle also platforms with
28131                 nonempty EXEEXT.
28132
28133         2006-07-11  Bruno Haible  <bruno@clisp.org>
28134
28135                 * javacomp.c: Fix a comment.
28136                 Reported by Jim Meyering.
28137
28138         2006-04-30  Bruno Haible  <bruno@clisp.org>
28139
28140                 * javacomp.h (compile_java_class): Add source_version,
28141                 target_version arguments.
28142                 * javacomp.c: Rewritten to choose only a compiler that
28143                 respects the specified source_version and target_version.
28144
28145         2006-06-27  Bruno Haible  <bruno@clisp.org>
28146
28147                 Assume correct S_ISDIR macro.
28148                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
28149
28150         2006-07-22  Bruno Haible  <bruno@clisp.org>
28151
28152                 * javaversion.h: New file, from GNU gettext.
28153                 * javaversion.c: New file, from GNU gettext.
28154                 * javaversion.java: New file, from GNU gettext.
28155                 * javaversion.class: New file, from GNU gettext.
28156
28157         2006-05-17  Bruno Haible  <bruno@clisp.org>
28158
28159                 Cygwin portability.
28160                 * javaexec.c (execute_java_class): Test for jview program
28161                 also on Cygwin.
28162
28163         2006-04-09  Bruno Haible  <bruno@clisp.org>
28164
28165                 * fatal-signal.c: Don't include string.h.
28166                 (at_fatal_signal): Use a copying loop instead of memcpy.
28167
28168         2005-12-04  Bruno Haible  <bruno@clisp.org>
28169
28170                 * csharpexec.c: Add support for 'clix' launcher (untested).
28171                 (execute_csharp_using_sscli): New function.
28172                 (execute_csharp_program): Call it.
28173
28174         2006-06-21  Bruno Haible  <bruno@clisp.org>
28175
28176                 Avoid warnings from recent versions of mcs.
28177                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
28178                 -o, -L, -r any more. Use options documented since mcs-1.0
28179                 instead. Similarly for -g.
28180
28181         2005-07-09  Bruno Haible  <bruno@clisp.org>
28182
28183                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
28184                 add a .dll suffix.
28185                 Reported by Mark Junker <mjscod@gmx.de>.
28186
28187         2006-06-17  Bruno Haible  <bruno@clisp.org>
28188
28189                 * config.charset: Update for NetBSD 3.0.
28190
28191         2006-05-17  Bruno Haible  <bruno@clisp.org>
28192
28193                 Cygwin portability.
28194                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
28195
28196         2006-05-16  Bruno Haible  <bruno@clisp.org>
28197
28198                 * localcharset.c [CYGWIN]: Include <windows.h>.
28199                 (get_charset_aliases): For Cygwin, return the same CPxxx
28200                 aliases list as under WIN32.
28201                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
28202                 the environment variables. Fall back to GetACP().
28203
28204         2006-04-05  Bruno Haible  <bruno@clisp.org>
28205
28206                 * config.charset: Update Juan Manuel Guerrero's address.
28207
28208         2005-02-12  Bruno Haible  <bruno@clisp.org>
28209
28210                 * allocsa.h: Add extern "C" for C++.
28211
28212         2005-02-10  Bruno Haible  <bruno@clisp.org>
28213
28214                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
28215                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
28216
28217         2006-07-22  Bruno Haible  <bruno@clisp.org>
28218
28219                 * gettext.h: Update to GNU gettext-0.15.
28220
28221 2006-07-22  Bruno Haible  <bruno@clisp.org>
28222
28223         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
28224         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
28225         lib-prefix.m4, longdouble.m4, ssize_t.m4.
28226
28227 2006-07-21  Eric Blake  <ebb9@byu.net>
28228
28229         * modules/stdlib-safer: New file.
28230         * MODULES.html.sh (File stream based Input/Output): Add
28231         stdlib-safer.
28232
28233 2006-07-21  Eric Blake  <ebb9@byu.net>
28234
28235         * lib/stdlib-safer.h: New file from coreutils, required by
28236         stdlib--.h.
28237
28238 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
28239
28240         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
28241
28242 2006-07-20  Bruno Haible  <bruno@clisp.org>
28243
28244         * gnulib-tool: Recognize new option --assume-autoconf.
28245         (autoconf_minversion): New variable.
28246         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
28247
28248 2006-07-20  Bruno Haible  <bruno@clisp.org>
28249
28250         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
28251
28252 2006-07-19  Derek R. Price  <derek@ximbiot.com>
28253
28254         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
28255         Reindent and repaginate.
28256
28257 2006-07-19  Derek Price  <derek@ximbiot.com>
28258
28259         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
28260         Correct grammar.
28261
28262 2006-07-17  Bruno Haible  <bruno@clisp.org>
28263
28264         * modules/list: New file.
28265         * modules/array-list: New file.
28266         * modules/carray-list, modules/carray-list-tests: New files.
28267         * modules/linked-list, modules/linked-list-tests: New files.
28268         * modules/avltree-list, modules/avltree-list-tests: New files.
28269         * modules/rbtree-list, modules/rbtree-list-tests: New files.
28270         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
28271         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
28272         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
28273         * modules/oset: New file.
28274         * modules/array-oset: New file.
28275         * modules/avltree-oset, modules/avltree-oset-tests: New files.
28276         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
28277         * tests/test-carray_list.c: New file.
28278         * tests/test-linked_list.c: New file.
28279         * tests/test-avltree_list.c: New file.
28280         * tests/test-rbtree_list.c: New file.
28281         * tests/test-linkedhash_list.c: New file.
28282         * tests/test-avltreehash_list.c: New file.
28283         * tests/test-rbtreehash_list.c: New file.
28284         * tests/test-avltree_oset.c: New file.
28285         * tests/test-rbtree_oset.c: New file.
28286         * MODULES.html.sh (Container data structures): New section.
28287
28288 2006-07-17  Bruno Haible  <bruno@clisp.org>
28289
28290         * m4/gl_list.m4: New file.
28291
28292 2006-07-17  Bruno Haible  <bruno@clisp.org>
28293
28294         * lib/gl_list.h: New file.
28295         * lib/gl_list.c: New file.
28296         * lib/gl_array_list.h: New file.
28297         * lib/gl_array_list.c: New file.
28298         * lib/gl_carray_list.h: New file.
28299         * lib/gl_carray_list.c: New file.
28300         * lib/gl_linked_list.h: New file.
28301         * lib/gl_linked_list.c: New file.
28302         * lib/gl_anylinked_list1.h: New file.
28303         * lib/gl_anylinked_list2.h: New file.
28304         * lib/gl_avltree_list.h: New file.
28305         * lib/gl_avltree_list.c: New file.
28306         * lib/gl_anyavltree_list1.h: New file.
28307         * lib/gl_anyavltree_list2.h: New file.
28308         * lib/gl_rbtree_list.h: New file.
28309         * lib/gl_rbtree_list.c: New file.
28310         * lib/gl_anyrbtree_list1.h: New file.
28311         * lib/gl_anyrbtree_list2.h: New file.
28312         * lib/gl_anytree_list1.h: New file.
28313         * lib/gl_anytree_list2.h: New file.
28314         * lib/gl_linkedhash_list.h: New file.
28315         * lib/gl_linkedhash_list.c: New file.
28316         * lib/gl_anyhash_list1.h: New file.
28317         * lib/gl_anyhash_list2.h: New file.
28318         * lib/gl_avltreehash_list.h: New file.
28319         * lib/gl_avltreehash_list.c: New file.
28320         * lib/gl_rbtreehash_list.h: New file.
28321         * lib/gl_rbtreehash_list.c: New file.
28322         * lib/gl_anytreehash_list1.h: New file.
28323         * lib/gl_anytreehash_list2.h: New file.
28324
28325         * lib/gl_oset.h: New file.
28326         * lib/gl_oset.c: New file.
28327         * lib/gl_array_oset.h: New file.
28328         * lib/gl_array_oset.c: New file.
28329         * lib/gl_avltree_oset.h: New file.
28330         * lib/gl_avltree_oset.c: New file.
28331         * lib/gl_rbtree_oset.h: New file.
28332         * lib/gl_rbtree_oset.c: New file.
28333         * lib/gl_anytree_oset.h: New file.
28334
28335 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
28336
28337         * m4/mkancesdirs.m4: New file.
28338         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
28339         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
28340         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
28341         it.
28342
28343 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
28344
28345         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
28346         * lib/mkancesdirs.h: New files.
28347         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
28348         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
28349         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
28350         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
28351         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
28352         callers changed.  Revamp internals significantly, by not
28353         attempting to create directories that are temporarily more
28354         permissive than the final results.  Do not attempt to use
28355         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
28356         This removes some race conditions, fixes some bugs, and simplifies
28357         things.  Use new dirchownmod function to do owner and mode changes.
28358         * lib/mkdir-p.h: Likewise.
28359         * lib/modechange.c (octal_to_mode): New function.
28360         (struct mode_change): New member mentioned.
28361         (make_node_op_equals): New arg mentioned.  All callers changed.
28362         (mode_compile): Keep track of which mode bits the user has explicitly
28363         mentioned.
28364         (mode_adjust): New arg DIR, so that we implement the X op correctly.
28365         New arg PMODE_BITS, to keep track of which mode bits the user
28366         mentioned; it treats S_ISUID and S_ISGID speciall.
28367         All callers changed.
28368         * lib/modechange.h: Likewise.
28369
28370 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
28371
28372         * MODULES.html.sh: Add mkancestors.
28373         * modules/mkancesdirs: New module.
28374         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
28375         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
28376         The chdir-safer and afs files are now orphans; I'll remove them
28377         unless someone speaks up.
28378         Add lib/dirchownmod.c, lib/dirchownmod.h.
28379         (Depends-on): Remove alloca, chown, save-cwd, dirname.
28380         Add lchown, mkancesdirs.
28381         (Maintainer): Add self.
28382
28383 2006-07-15  Karl Berry  <karl@gnu.org>
28384
28385         * gnulib-tool: help message wording/arrangement.
28386
28387 2006-07-14  Simon Josefsson  <jas@extundo.com>
28388
28389         * doc/gnulib.texi (Libtool and Windows): New section.
28390
28391 2006-07-12  Simon Josefsson  <jas@extundo.com>
28392
28393         * modules/gendocs (License): Fix license, approved by Karl.
28394
28395 2006-07-12  Eric Blake  <ebb9@byu.net>
28396
28397         * MODULES.html.sh: Add gendocs.
28398
28399 2006-07-11  Eric Blake  <ebb9@byu.net>
28400
28401         * modules/fdl: New module, to install doc/fdl.texi.
28402         * MODULES.html.sh: Add new section for documentation modules.
28403         * gnulib-tool: Avoid space-tab.
28404         (--doc-base): New option, to manage files from doc.
28405
28406 2006-07-11  Eric Blake  <ebb9@byu.net>
28407
28408         * m4/absolute-header.m4: Fix comments to match recent change.
28409
28410 2006-07-11  Eric Blake  <ebb9@byu.net>
28411
28412         * gnulib-tool: List --doc-base before --tests-base.
28413
28414 2006-07-11  Derek R. Price  <derek@ximbiot.com>
28415
28416         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
28417
28418 2006-07-11  Bruno Haible  <bruno@clisp.org>
28419
28420         * README: Mention where to put documentation.
28421
28422 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28423
28424         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
28425
28426 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
28427
28428         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
28429         to stdint.m4.
28430
28431 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
28432
28433         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
28434         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
28435         "no/such/file/stdint.h" when there is no such file, so that
28436         the resulting C code can be parsed by dodgy compilers.
28437         Problems reported by Bob Proulx.
28438
28439 2006-07-10  Derek R. Price  <derek@ximbiot.com>
28440
28441         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
28442         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
28443         macros into the GNU _D_EXACT_NAMLEN.
28444         * lib/savedir.c:  Likewise.
28445         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
28446
28447 2006-07-10  Derek R. Price  <derek@ximbiot.com>
28448         and Paul Eggert  <eggert@cs.ucla.edu>
28449
28450         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
28451         * m4/savedir.m4:
28452         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
28453         macros into the GNU _D_EXACT_NAMLEN.
28454
28455 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
28456
28457         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
28458         around the absolute name, to work around a problem with the HP-UX
28459         11.23 native C compiler, reported by Bob Proulx.
28460
28461 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
28462
28463         * doc/maintain.texi, make-stds.texi: Sync from
28464         <http://savannah.gnu.org/projects/gnustandards>.
28465
28466 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
28467
28468         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
28469
28470 2006-07-09  Jim Meyering  <jim@meyering.net>
28471
28472         * m4/glob.m4: Remove a doubled word in a comment.
28473
28474 2006-07-09  Jim Meyering  <jim@meyering.net>
28475
28476         * lib/argp-pv.c: Remove a doubled word in a comment.
28477         * lib/check-version.c (check_version): Likewise.
28478         * lib/javacomp.c (compile_java_class): Likewise.
28479
28480 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
28481
28482         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
28483         for the benefit of people using Autoconf 2.60.  If you want to
28484         support older Autoconf versions you can copy m4/onceonly_2_57.m4
28485         (or m4/onceonly.m4, if pre-2.57) manually.
28486
28487 2006-07-08  Jim Meyering  <jim@meyering.net>
28488
28489         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
28490         comment.
28491         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
28492         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
28493         comment.
28494
28495 2006-07-08  Jim Meyering  <jim@meyering.net>
28496
28497         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
28498
28499 2006-07-07  Simon Josefsson  <jas@extundo.com>
28500
28501         * tests/test-crc.c: Change expected crc value, the test vector
28502         were probably computed using the old broken crc.c?
28503
28504 2006-07-06  Simon Josefsson  <jas@extundo.com>
28505
28506         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
28507         now the canonical place for the M4 file).
28508
28509         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
28510         from the sys_socket dependency now.
28511
28512         * modules/inet_pton (Files): Ditto.
28513
28514         * modules/inet_ntop (Files): Ditto.
28515
28516 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
28517
28518         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
28519         not gl_PREREQ_GETUSERSHELL.
28520
28521 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28522
28523         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
28524         with only one argument, for Autoconf 2.60.
28525         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
28526         expand to nothing, so add a shell command to avoid syntax error.
28527         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
28528
28529 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28530
28531         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
28532
28533 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
28534
28535         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
28536         no longer needed.  Check for isblank decl.
28537         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
28538         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
28539         of existence.
28540
28541 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
28542
28543         * lib/getloadavg.c: Use __VMS, not VMS.
28544         * lib/getopt.c: Likewise.
28545         * lib/getpagesize.h: Likewise.
28546         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
28547         and probably does not work.
28548
28549 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
28550
28551         * lib/.cppi-disable: Add wcwidth.
28552         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
28553         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
28554         (ISGRAPH): Remove.  All uses changed to isgraph.
28555         (FOLD) [!defined _LIBC]: Remove special case.
28556         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
28557         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
28558         HAVE_ISBLANK.
28559         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
28560         case.
28561
28562 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
28563
28564         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
28565         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
28566         brackets.  Other minor changes to suppress some compiler
28567         warnings.
28568
28569 2006-07-06  Derek R. Price  <derek@ximbiot.com>
28570         and Paul Eggert  <eggert@cs.ucla.edu>
28571
28572         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
28573         of invoking obsolescent AC_HEADER_DIRENT macro.
28574         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
28575         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
28576         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
28577         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
28578         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
28579         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
28580         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
28581         * m4/readdir.m4: Remove; no longer needed.
28582
28583 2006-07-06  Derek R. Price  <derek@ximbiot.com>
28584         and Paul Eggert  <eggert@cs.ucla.edu>
28585
28586         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
28587         Don't worry about this obsolete case any more.
28588         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
28589         directories.
28590         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
28591         worry about this obsolete case any more.
28592         * lib/fts.c: Likewise.
28593         * lib/getcwd.c: Likewise.
28594         * lib/glob.h: Likewise.
28595         * lib/savedir.c: Likewise.
28596
28597 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
28598
28599         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
28600         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
28601         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
28602         needed.
28603         All uses removed.
28604         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
28605         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
28606         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
28607         needed.
28608         * m4/getdate.m4 (gl_GETDATE): Likewise.
28609         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
28610         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
28611         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
28612         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
28613         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
28614         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
28615         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
28616         needed.
28617
28618 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
28619
28620         * lib/memcasecmp.c: Include <limits.h>.
28621         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
28622         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
28623         Don't assume isdigit succeeds only on '0' through '9'.
28624
28625 2006-07-05  Eric Blake  <ebb9@byu.net>
28626
28627         * modules/getaddrinfo (Depends-on): Add snprintf.
28628
28629 2006-07-05  Eric Blake  <ebb9@byu.net>
28630
28631         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
28632         to avoid 'header present but could not be compiled' on cygwin.
28633
28634 2006-07-05  Eric Blake  <ebb9@byu.net>
28635
28636         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
28637         missing from netdb.h.
28638         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
28639
28640 2006-07-05  Derek R. Price  <derek@ximbiot.com>
28641
28642         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
28643         no longer needed.
28644         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
28645         * m4/getdate.m4 (gl_GETDATE): Likewise.
28646         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
28647         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
28648         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
28649         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
28650         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
28651
28652 2006-07-05  Derek R. Price  <derek@ximbiot.com>
28653
28654         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
28655         All uses of is_space replaced by isspace.
28656         * lib/exit.h: Don't talk about STDC_HEADERS.
28657         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
28658         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
28659         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
28660         replaced by isprint etc.
28661         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
28662         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
28663         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
28664         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
28665         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
28666         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
28667
28668 2006-07-05  Bruno Haible  <bruno@clisp.org>
28669
28670         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
28671         the function exists, before testing against AIX.
28672         Reported by Martin Lambers <marlam@marlam.de>.
28673
28674 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
28675
28676         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
28677         From Mark D. Baushke.
28678
28679 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
28680
28681         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
28682         to the absolute name, not just one, to bypass Sun C 5.8's
28683         "warning: #include of /usr/include/... may be non-portable".
28684
28685 2006-07-04  Eric Blake  <ebb9@byu.net>
28686
28687         * modules/dirname-tests: New test module.
28688         * tests/test-dirname.c: New file, replacing dirname.c
28689         TEST_DIRNAME section that was recently deleted.
28690
28691 2006-07-04  Bruno Haible  <bruno@clisp.org>
28692
28693         Assume ANSI C header files and <ctype.h> functions.
28694         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
28695         (mbsnwidth): Use isprint, iscntrl instead.
28696
28697 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28698
28699         Merge from coreutils.
28700         * MODULES.html.sh: Add xstrtold.
28701         * modules/xstrtold: New file.
28702         * modules/cycle-check (Files): Add lib/same-inode.h.
28703         * modules/dirname (Files): Add m4/double-slash-root.m4.
28704         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
28705         * modules/mkdir-p (Files): Add lib/same-inode.h.
28706         * modules/same (Files): Add lib/same-inode.h.
28707
28708 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28709
28710         * m4/absolute-header.m4: Renamed from full-header-path.m4.
28711         This is to keep the terminology clean; POSIX talks about
28712         "absolute pathnames", not "full pathnames", but the GNU
28713         Coding Standards say to use "path" for something else;
28714         so use "absolute" to keep both sides happy.
28715         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
28716         Set gl_absolute_header, not gl_full_header_path.
28717         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
28718         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
28719         All uses changed.
28720
28721         Merge from coreutils.
28722
28723         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
28724
28725         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
28726         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
28727         want to require the building of c-strtod.o.
28728         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
28729         needs -lm directly.
28730         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
28731
28732         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
28733
28734         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
28735         --as-needed option if available.  Problem reported by Albert Chin in
28736         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
28737         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
28738         cc merely issues a bunch of annoying warnings for --as-needed
28739         (this problem was reported by Bob Proulx).  Also, try linking with
28740         -lm to detect a bug in binutils 2.16 (this problem was reported
28741         by Ralf Wildenhues).
28742
28743         2006-06-18  Jim Meyering  <jim@meyering.net>
28744
28745         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
28746         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
28747         macro.
28748         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
28749         also check for glibc-2.4's abort-inducing bug.
28750
28751         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
28752         Low-probability clean-up should be to use rmdir to get rid of
28753         the just-created directory, not unlink.
28754
28755         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
28756         configure fail, and request a bug report to inform us about it.
28757         Add a comment that, barring reports to the contrary, in 2007 we'll
28758         assume ftruncate is universally available.
28759
28760         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
28761
28762         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
28763
28764         2006-03-12  Jim Meyering  <jim@meyering.net>
28765
28766         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
28767         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
28768         * m4/same.m4 (gl_SAME): Likewise.
28769         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
28770
28771         2006-03-11  Eric Blake  <ebb9@byu.net>
28772
28773         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
28774         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
28775         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
28776         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
28777
28778 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28779
28780         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
28781         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
28782         reported by Mark D. Baushke, one in
28783         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
28784
28785         Merge from coreutils.
28786
28787         * lib/.cppi-disable: Add stdint_.h.
28788         * lib/.cvsignore: Add stdint.h.
28789
28790         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
28791
28792         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
28793         both double and long double versions.
28794         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
28795         * lib/xstrtold.c: New file.
28796         * lib/xstrtod.h (xstrtold): New decl.
28797
28798         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
28799
28800         * lib/filemode.c (setst): Remove.
28801         (strmode): Rewrite to avoid setst.  This makes the code shorter,
28802         (arguably) clearer, and the generated code is a bit smaller on my
28803         Debian GNU/Linux stable x86 host.
28804
28805         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
28806
28807         * lib/filemode.c: Include "filemode.h" first, to test the interface.
28808         Assume that filemode.h includes sys/types.h and sys/stat.h.
28809         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
28810         (ftypelet): Reorder to put common cases first, for efficiency.
28811         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
28812         to do 'M'.
28813         (strmode): Renamed from mode_string, and now stores 12 bytes instead
28814         of 10, for compatibility with FreeBSD.  All callers changed.
28815         (filemodestring): Now stores 12 bytes instead of 10, and sets file
28816         types that can't be deduced solely from st_mode.  First arg is now a
28817         const pointer.
28818         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
28819         (strmode): Renamed from mode_string.
28820         (filemodestring): New decl.
28821         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
28822         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
28823         needed.
28824         (S_ISPORT, S_ISWHT): New macros, if not already defined.
28825
28826         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
28827
28828         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
28829         fsusage.h now does that.  Include fsusage.h first, to test interface.
28830         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
28831         at most one method (the old code could have generated decls that
28832         didn't conform to C89, not that this was ever exercised).
28833         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
28834
28835         2006-03-19  Jim Meyering  <jim@meyering.net>
28836
28837         Work even in a chroot where d_ino values for entries in "/"
28838         don't match the stat.st_ino values for the same names.
28839         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
28840         number, iterate through all entries again, using lstat instead.
28841         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
28842         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
28843
28844         * lib/getcwd.c (__getcwd): Clarify a comment.
28845         Use memcpy in place of a call to strcpy.
28846
28847         2006-03-12  Jim Meyering  <jim@meyering.net>
28848
28849         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
28850         matches that of the current directory (which we're about to chdir ".."
28851         out of), then save the dev-ino of the parent, instead.
28852
28853         * lib/same-inode.h (SAME_INODE): New file/macro.
28854         * lib/chdir-safer.c (SAME_INODE): Remove definition.
28855         Include "same-inode.h", instead.
28856         * lib/same.c: Likewise.
28857         * lib/cycle-check.h: Include "same-inode.h".
28858         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
28859         * lib/cycle-check.c (SAME_INODE): Remove definition.
28860         * lib/root-dev-ino.h: Include "same-inode.h".
28861
28862         2006-03-11  Eric Blake  <ebb9@byu.net>
28863
28864         * lib/same.c (same_name): s/base_name/last_component/
28865         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
28866         * lib/filenamecat.c (file_name_concat): Likewise.
28867
28868         2006-03-11  Eric Blake  <ebb9@byu.net>,
28869                     Paul Eggert  <eggert@cs.ucla.edu>
28870
28871         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
28872         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
28873         drive prefix.
28874         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
28875         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
28876         (last_component): New method.
28877         * lib/dirname.c (dir_len): Determine when drive letters need a
28878         subsequent slash.  Preserve // when it is special.
28879         (dir_name): Don't append dot when drive letter is absolute.
28880         [TEST_DIRNAME]: Move into a full-blown gnulib test.
28881         * lib/basename.c (base_name): New semantics - malloc the result.
28882         Preserve // when it is special.  Preserve relative files that look
28883         like drive letters.
28884         (base_len): Preserve // when it is special.
28885         (last_component): New method, similar to old base_name semantics.
28886         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
28887         base_name.  Strip redundant slashes from ///.
28888
28889 2006-07-03  Jim Meyering  <jim@meyering.net>
28890
28891         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
28892         macro is used before the first cycle_check call.
28893
28894 2006-07-03  Eric Blake  <ebb9@byu.net>
28895
28896         * modules/dirname (Depends-on): Add xstrndup.
28897
28898 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
28899
28900         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
28901         test cases, so that config.log is a bit easier to follow.
28902
28903 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
28904
28905         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
28906         both are 64 bits, since this seems to be the tradition, and this
28907         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
28908         we ever run into a host that prefers long long to long in this
28909         case, we'll need another configure-time test.  Problem reported by
28910         Jim Meyering.
28911
28912 2006-07-02  Eric Blake  <ebb9@byu.net>
28913
28914         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
28915
28916 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
28917
28918         * modules/inttypes (Depends-on): No longer depends on stdint.
28919         * modules/stdint (Description): Say more about assumptions.
28920         Say that the fast types might differ.  Say macros are used.
28921         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
28922         (Makefile.am): Revise list of substituted symbols to match
28923         new stdint.m4.
28924         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
28925         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
28926         * tests/test-stdint.c (verify_same_types)
28927         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
28928         the code conforms to C99/C89.
28929         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
28930         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
28931
28932 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
28933
28934         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
28935         but fix a bug, by requiring at least 64 bits.
28936         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
28937         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
28938         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
28939         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
28940
28941         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
28942         changes.  Make 2.59 a prerequisite.  Check and substitute for
28943         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
28944         inttypes.h.  Do not use special include files; just use the
28945         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
28946         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
28947         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
28948         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
28949         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
28950         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
28951         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
28952         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
28953         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
28954         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
28955         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
28956         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
28957         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
28958         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
28959         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
28960         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
28961         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
28962         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
28963         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
28964         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
28965         WINT_MAX.  Check for C99 conformance more strictly, by detecting
28966         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
28967         not check for things that C99 does not require, e.g., int8_t.  If
28968         a test isn't needed unless <stdint.h> isn't working, and is
28969         unlikely to be needed for any other reason, then don't do it
28970         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
28971         size_t, since we assume C89 freestanding at least.  Do not check
28972         for sig_atomic_t, wchar_t, or wint_t, since the code now does
28973         the right thing even if the types are not defined.  Instead use:
28974         (gl_STDINT_TYPE_PROPERTIES): New macro.
28975         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
28976         testing whether <sys/types.h> clashes, as Autoconf does this for
28977         us now.  All uses removed.
28978         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
28979         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
28980         (gl_CHECK_TYPE_SAME):
28981         Remove; no longer needed.
28982         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
28983         exists, since we'll return 0 anyway in that case.
28984         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
28985
28986 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
28987
28988         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
28989         possible collision with system files.
28990         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
28991         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
28992         WCHAR_MIN and WCHAR_MAX in this case.
28993         (<stddef.h>): Do not include; no longer needed.
28994         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
28995         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
28996         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
28997         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
28998         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
28999         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
29000         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
29001         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
29002         !defined(__c99))]: Include in this case too, since it's harmless
29003         now.
29004         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
29005         dangerous to do so.
29006         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
29007         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
29008         (_STDINT_MIN, _STDINT_MAX): New macros.
29009         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
29010         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
29011         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
29012         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
29013         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
29014         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
29015         macros, not typedefs; this simplifies things quite a bit.
29016         Use long int for all types narrower than int64_t.
29017         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
29018         Define in terms of long long int or int64_t or long int,
29019         not int64_t or int32_t.  This saves some compile-time testing.
29020         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
29021         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
29022         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
29023         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
29024         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
29025         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
29026         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
29027         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
29028         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
29029         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
29030         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
29031         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
29032         undef any previous version and define our own version, for
29033         simplicity and consistency with the new macros for types.
29034         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
29035         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
29036         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
29037         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
29038         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
29039         @WINT_T_SUFFIX@ to keep things simple here.
29040         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
29041         Simplify by assuming typical 8/16/32/64 host, since we're
29042         already doing that elsewhere anyway.
29043         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
29044         and assume long long int is 64 bits if available.  This
29045         speeds up 'configure'.
29046
29047 2006-07-01  Eric Blake  <ebb9@byu.net>
29048
29049         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
29050         Reported by Andreas Buening.
29051
29052 2006-07-01  Eric Blake  <ebb9@byu.net>
29053
29054         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
29055
29056 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
29057
29058         * lib/getaddrinfo.c: fixed typo
29059
29060 2006-06-29  Jim Meyering  <jim@meyering.net>
29061
29062         * modules/strftime (Maintainer): Add my name, since with the
29063         FPRINTFTIME changes strftime.c has forked from glibc.
29064
29065 2006-06-29  Eric Blake  <ebb9@byu.net>
29066
29067         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
29068
29069 2006-06-29  Eric Blake  <ebb9@byu.net>
29070
29071         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
29072
29073 2006-06-29  Eric Blake  <ebb9@byu.net>
29074
29075         * lib/stat_.h: New file.
29076
29077 2006-06-29  Eric Blake  <ebb9@byu.net>
29078
29079         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
29080         unused static function.
29081
29082 2006-06-29  Eric Blake  <ebb9@byu.net>
29083
29084         * doc/functions.texi (Function Portability): Document missing lstat
29085         on mingw.
29086
29087 2006-06-29  Eric Blake  <ebb9@byu.net>
29088
29089         * MODULES.html.sh: Add sys_stat.
29090         * modules/sys_stat: New module.
29091         * modules/mkstemp (Depends-on): Add sys_stat.
29092
29093 2006-06-29  Derek R. Price  <derek@ximbiot.com>
29094
29095         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
29096
29097 2006-06-29  Derek R. Price  <derek@ximbiot.com>
29098
29099         * m4/c-bs-a.m4: Removed.
29100
29101 2006-06-29  Derek R. Price  <derek@ximbiot.com>
29102
29103         * lib/strftime.c: Assume strftime() exists.
29104
29105 2006-06-29  Derek Price  <derek@ximbiot.com>
29106
29107         * modules/c-bs-a: Removed - \a is C89.
29108         * MODULES.html.sh: Remove c-bs-a.
29109
29110 2006-06-29  Bruno Haible  <bruno@clisp.org>
29111
29112         * modules/wcwidth (License): Change to LGPL.
29113
29114 2006-06-28  Simon Josefsson  <jas@extundo.com>
29115
29116         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
29117         on _WIN32.
29118
29119         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
29120         getnameinfo.
29121
29122 2006-06-28  Simon Josefsson  <jas@extundo.com>
29123
29124         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
29125
29126 2006-06-28  Simon Josefsson  <jas@extundo.com>
29127
29128         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
29129         functions there.  It will succeed on Windows XP, but on Windows
29130         2000 and (presumably) earlier, it will fail, and use the internal
29131         re-implementation.
29132         (use_win32_p): New function.
29133         (getaddrinfo): Use strtoul on servname, to support numeric ports.
29134         Support AI_NUMERICSERV to disable getservbyname.
29135         (getnameinfo): New function, only supports
29136         NI_NUMERICHOST|NI_NUMERICSERV for now.
29137
29138         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
29139         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
29140         getnameinfo.
29141
29142 2006-06-28  Eric Blake  <ebb9@byu.net>
29143
29144         * modules/wcwidth: New file.
29145         * modules/mbchar (Depends-on): Add wcwidth.
29146         * modules/mbswidth (Depends-on): Add wcwidth.
29147         * MODULES.html.sh: Add wcwidth.
29148
29149 2006-06-28  Eric Blake  <ebb9@byu.net>
29150
29151         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
29152         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
29153
29154 2006-06-28  Eric Blake  <ebb9@byu.net>
29155
29156         * lib/xvasprintf.h: Fix comments.
29157
29158 2006-06-28  Eric Blake  <ebb9@byu.net>
29159
29160         * lib/mbchar.h (wcwidth): Include wcwidth.h.
29161         * lib/mbswidth.c (wcwidth): Move from here...
29162         * lib/wcwidth.h: ...to this new file.
29163
29164 2006-06-28  Derek R. Price  <derek@ximbiot.com>
29165
29166         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
29167
29168         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
29169         it's obsolete.
29170         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
29171
29172 2006-06-28  Derek R. Price  <derek@ximbiot.com>
29173
29174         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
29175         Autoconf 2.60 says this stuff was obsolete.
29176
29177 2006-06-28  Bruno Haible  <bruno@clisp.org>
29178
29179         * modules/wcwidth (Files): Add m4/wchar_t.m4.
29180
29181 2006-06-28  Bruno Haible  <bruno@clisp.org>
29182
29183         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
29184         gt_TYPE_WCHAR_T.
29185
29186 2006-06-28  Bruno Haible  <bruno@clisp.org>
29187
29188         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
29189         declaration for wcwidth.
29190         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
29191
29192 2006-06-28  Bruno Haible  <bruno@clisp.org>
29193
29194         * lib/mkdtemp.c [MINGW]: Include <io.h>.
29195         (mkdir): Define using _mkdir.
29196
29197 2006-06-28  Bruno Haible  <bruno@clisp.org>
29198
29199         * lib/getaddrinfo.h: Fix POSIX URL.
29200         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
29201         _WIN32.
29202         (use_win32_p): Make static.
29203         (getaddrinfo): Reject service name if it is empty or does not consist
29204         solely of decimal digits, or if its value is > 65535.
29205         (getnameinfo): Remove useless casts.
29206
29207 2006-06-27  Simon Josefsson  <jas@extundo.com>
29208
29209         * modules/sys_select: New file, suggested by Bruno Haible, Paul
29210         Eggert and Martin Lambers.
29211
29212 2006-06-27  Simon Josefsson  <jas@extundo.com>
29213
29214         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
29215         Eggert and Martin Lambers.
29216
29217 2006-06-27  Bruno Haible  <bruno@clisp.org>
29218
29219         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
29220         result to 0, not to empty.
29221         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
29222
29223 2006-06-27  Bruno Haible  <bruno@clisp.org>
29224
29225         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
29226
29227 2006-06-26  Simon Josefsson  <jas@extundo.com>
29228
29229         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
29230         present.
29231
29232 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
29233
29234         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
29235         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
29236         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
29237
29238 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
29239
29240         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
29241
29242 2006-06-26  Bruno Haible  <bruno@clisp.org>
29243
29244         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
29245
29246 2006-06-26  Bruno Haible  <bruno@clisp.org>
29247
29248         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
29249
29250 2006-06-26  Bruno Haible  <bruno@clisp.org>
29251
29252         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
29253         SGI C compiler in pre-C99 mode.
29254         Suggested by Mark D. Baushke and Larry Jones.
29255
29256 2006-06-26  Bruno Haible  <bruno@clisp.org>
29257
29258         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
29259         WCHAR_MAX.
29260         Reported by Mark D. Baushke and Larry Jones.
29261
29262 2006-06-26  Bruno Haible  <bruno@clisp.org>
29263
29264         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
29265         in pre-C99 mode.
29266         Suggested by Mark D. Baushke and Larry Jones.
29267
29268 2006-06-23  Simon Josefsson  <jas@extundo.com>
29269             Bruno Haible  <bruno@clisp.org>
29270
29271         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
29272         Emit mostlyclean-local rule.
29273         (func_emit_tests_Makefile_am): Likewise.
29274         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
29275
29276 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
29277
29278         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
29279
29280 2006-06-23  Bruno Haible  <bruno@clisp.org>
29281
29282         * tests/test-stdint.c: Update to match ISO C 99 Technical
29283         Corrigendum 1.
29284
29285 2006-06-23  Bruno Haible  <bruno@clisp.org>
29286
29287         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
29288
29289 2006-06-23  Bruno Haible  <bruno@clisp.org>
29290
29291         * lib/stdint_.h: Treat IRIX like OpenBSD.
29292
29293 2006-06-23  Bruno Haible  <bruno@clisp.org>
29294
29295         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
29296         ISO C 99 Technical Corrigendum 1.
29297
29298 2006-06-22  Simon Josefsson  <jas@extundo.com>
29299
29300         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
29301         MinGW.
29302
29303 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
29304
29305         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
29306         needed.  Some compiler complained about some of them.  Problem reported
29307         by Larry Jones in
29308         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
29309
29310 2006-06-21  Simon Josefsson  <jas@extundo.com>
29311
29312         * tests/test-getaddrinfo.c: New file.
29313
29314         * modules/getaddrinfo-tests: New file.
29315
29316         * MODULES.html.sh: Add inet_pton.
29317
29318         * modules/inet_pton: New file.
29319
29320 2006-06-21  Simon Josefsson  <jas@extundo.com>
29321
29322         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
29323         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
29324         of using the (limited) gnulib implementation on Windows XP.
29325
29326         * m4/inet_pton.m4: New file.
29327
29328 2006-06-21  Simon Josefsson  <jas@extundo.com>
29329
29330         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
29331         variable.
29332
29333         * lib/socket_.h: Don't define WINVER.
29334
29335         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
29336         slightly modified to work in gnulib.
29337
29338 2006-06-21  Simon Josefsson  <jas@extundo.com>
29339
29340         * doc/gnulib.texi (Windows sockets): Add.
29341
29342 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
29343
29344         * lib/read-file.c (fread_file): Start with buffer allocation of
29345         0 bytes rather than 1 byte; this simplifies the code.
29346         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
29347         code to free buffer and save/restore errno.
29348         (internal_read_file): Remove unused local.
29349
29350 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
29351
29352         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
29353         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
29354         Problem reported by Denis Excoffier in
29355         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
29356
29357 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
29358
29359         * modules/sys_socket, modules/socklen: Include sys/types since
29360         FreeBSD 4.x's sys/socket.h needs it.
29361
29362 2006-06-19  Simon Josefsson  <jas@extundo.com>
29363
29364         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
29365
29366 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
29367
29368         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
29369
29370 2006-06-19  Bruno Haible  <bruno@clisp.org>
29371
29372         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
29373         and FULL_PATH_INTTYPES_H in angle brackets.
29374         Reported by Mark D. Baushke <mdb@gnu.org>.
29375
29376 2006-06-17  Eric Blake  <ebb9@byu.net>
29377
29378         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
29379         errno.
29380
29381 2006-06-17  Bruno Haible  <bruno@clisp.org>
29382
29383         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
29384         <sys/inttypes.h>.
29385
29386 2006-06-17  Bruno Haible  <bruno@clisp.org>
29387
29388         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
29389         whether errno is declared. Assume <errno.h> declares errno.
29390
29391 2006-06-17  Bruno Haible  <bruno@clisp.org>
29392
29393         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
29394
29395 2006-06-17  Bruno Haible  <bruno@clisp.org>
29396
29397         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
29398         problem on Solaris 2.5.1.
29399
29400 2006-06-16  Eric Blake  <ebb9@byu.net>
29401
29402         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
29403         * lib/unicodeio.c [!defined errno]: Likewise.
29404         * lib/strtol.c [!defined errno]: Likewise.
29405         * lib/strtod.c [!defined errno]: Likewise.
29406
29407 2006-06-15  Eric Blake  <ebb9@byu.net>
29408
29409         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
29410
29411 2006-06-15  Eric Blake  <ebb9@byu.net>
29412
29413         * config/srclist.txt (ssize_t.m4): Lose sync.
29414
29415 2006-06-15  Bruno Haible  <bruno@clisp.org>
29416
29417         * modules/stdint (Files): Include m4/full-header-path.m4,
29418         m4/size_max.m4, m4/wchar_t.m4.
29419         (Makefile.am): Many more substitutions.
29420         * modules/stdint-tests: New file.
29421         * tests/test-stdint.c: New file.
29422
29423 2006-06-15  Bruno Haible  <bruno@clisp.org>
29424
29425         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
29426         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
29427         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
29428         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
29429         gl_CHECK_TYPE_SAME): New macros.
29430
29431 2006-06-15  Bruno Haible  <bruno@clisp.org>
29432
29433         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
29434
29435 2006-06-15  Bruno Haible  <bruno@clisp.org>
29436
29437         * lib/stdint_.h: Rewritten to be fully auto-configured.
29438         Fixes bug on HP-UX/IA64.
29439
29440 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
29441
29442         * lib/getdate.y (__attribute__): Don't define if already defined.
29443         Problem reported by Larry Jones.
29444         * lib/utimens.c (__attribute__): Likewise.
29445
29446 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
29447
29448         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
29449         reported by Andreas Schwab.
29450
29451 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29452             Bruno Haible  <bruno@clisp.org>
29453
29454         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
29455         check for the declaration of strnlen and a run test that exposes the
29456         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
29457         rpl_strndup.
29458
29459 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29460             Bruno Haible  <bruno@clisp.org>
29461
29462         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
29463
29464 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29465
29466         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
29467         compile test, for Tru64 4.0D.
29468
29469 2006-05-28  Karl Berry  <karl@gnu.org>
29470
29471         * config/srclist.txt (printf-args.c): lose sync.
29472
29473 2006-05-26  Martin Lambers  <marlam@marlam.de>
29474
29475         * lib/getpass.c: Updates the test for the native W32 API, and adds
29476         missing includes, thus fixing compilation warnings.
29477
29478 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
29479
29480         * lib/exclude.c (exclude_fnmatch): New function.
29481         (excluded_file_name): Call exclude_fnmatch.
29482         * lib/exclude.h (excluded_file_name): New prototype
29483
29484 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
29485
29486         * lib/tempname.c (small_open, large_open): New macros.
29487         (__open, __open64) [!_LIBC]: Remove.
29488         (__gen_tempname): Use small_open and large_open instead of __open
29489         and __open64.  This fixes a portability bug on HP-UX 11.11i
29490         reported by Simon Wing-Tang in
29491         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
29492
29493 2006-05-24  Bruno Haible  <bruno@clisp.org>
29494
29495         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
29496         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
29497         Reported by Thorsten Maerz <torte@netztorte.de> via
29498         Aaron Stone <aaron@serendipity.cx>.
29499
29500 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
29501
29502         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
29503         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
29504         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
29505         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
29506         not really conditional on the cache.
29507         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
29508
29509 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
29510
29511         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
29512         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
29513         (my_usleep): Don't mishandle maximum value.
29514
29515 2006-05-19  Jim Meyering  <jim@meyering.net>
29516
29517         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
29518
29519 2006-05-17  Bruno Haible  <bruno@clisp.org>
29520
29521         Cygwin portability.
29522         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
29523
29524 2006-05-17  Bruno Haible  <bruno@clisp.org>
29525
29526         * lib/stdint_.h: Fix recognition of Cygwin.
29527
29528 2006-05-15  Bruno Haible  <bruno@clisp.org>
29529
29530         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
29531         on libtool patch by Ralf Wildenhues.
29532
29533 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
29534
29535         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
29536         test for C99 conformance; (bool) 0.5 is an integer constant
29537         expression, but (bool) -0.5 is not.  Problem reported by Fedor
29538         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
29539
29540 2006-05-11  Simon Josefsson  <jas@extundo.com>
29541
29542         * m4/xvasprintf.m4: Fix obvious typo.
29543
29544 2006-05-11  Jim Meyering  <jim@meyering.net>
29545
29546         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
29547         James Lemley.
29548
29549 2006-05-10  Simon Josefsson  <jas@extundo.com>
29550
29551         * lib/md4.c: Typo fix, update copyright years.
29552         (K1, K2): Don't use L because it turn computations into 64-bit on
29553         64-bit platforms.
29554
29555 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
29556
29557         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
29558         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
29559         unwanted sign propagation, e.g., on hosts with 64-bit int.
29560         There still are some problems with reeelly weird theoretical hosts
29561         (e.g., 33-bit int) but it's not worth worrying about now.
29562         * lib/sha1.c (rol): Likewise.
29563         (K1, K2, K3, K4): Remove unnecessary L suffix.
29564
29565 2006-05-10  Bruno Haible  <bruno@clisp.org>
29566
29567         * lib/des.c: Cast to avoid warnings.
29568
29569 2006-05-09  Bruno Haible  <bruno@clisp.org>
29570
29571         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
29572         (Depends-on): Depend also on xsize, stdarg.
29573         (configure.ac): Add gl_XVASPRINTF.
29574
29575 2006-05-09  Bruno Haible  <bruno@clisp.org>
29576
29577         * m4/xvasprintf.m4: New file.
29578
29579 2006-05-09  Bruno Haible  <bruno@clisp.org>
29580
29581         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
29582         (EOVERFLOW): Define fallback value.
29583         (xstrcat): New function.
29584         (xvasprintf): Recognize the special case of a string concatenation.
29585
29586 2006-05-08  Eric Blake  <ebb9@byu.net>
29587
29588         * gnulib-tool (func_version): Base copyright year on CVS date.
29589         (func_emit_copyright_notice): New function.
29590         (func_emit_lib_Makefile_am): Use it.
29591         (func_emit_tests_Makefile_am): Likewise.
29592         (func_import): Likewise.
29593
29594 2006-05-08  Bruno Haible  <bruno@clisp.org>
29595
29596         * modules/stdarg: New file.
29597         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
29598
29599 2006-05-08  Bruno Haible  <bruno@clisp.org>
29600
29601         * m4/stdarg.m4: New file, from GNU gettext.
29602
29603 2006-05-08  Bruno Haible  <bruno@clisp.org>
29604
29605         * config/srclist.txt (build-aux/config.rpath): different from latest
29606         release.
29607
29608 2006-05-08  Bruno Haible  <bruno@clisp.org>
29609
29610         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
29611
29612 2006-05-05  Jim Meyering  <jim@meyering.net>
29613
29614         * m4/warning.m4: New file, derived from bison's file by the same name.
29615
29616 2006-05-03  Bruno Haible  <bruno@clisp.org>
29617
29618         * lib/stdint_.h: Shorter URL.
29619         * lib/inttypes.h: Likewise.
29620
29621 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
29622
29623         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
29624
29625 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
29626
29627         * lib/verify.h: Document the internals better.  Most of this change
29628         was written by Bruno Haible.
29629
29630 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
29631
29632         * doc/verify.texi: New file, partly based on a proposal by
29633         Bruno Haible.
29634
29635 2006-05-02  Bruno Haible  <bruno@clisp.org>
29636
29637         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
29638         test from here...
29639         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
29640
29641 2006-04-29  Bruno Haible  <bruno@clisp.org>
29642
29643         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
29644         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
29645
29646 2006-04-29  Bruno Haible  <bruno@clisp.org>
29647
29648         * gnulib-tool: Make --update option actually work.
29649
29650 2006-04-29  Bruno Haible  <bruno@clisp.org>
29651
29652         * doc/gcd.texi: New file.
29653         * doc/gnulib.texi: Include it.
29654
29655 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
29656
29657         * lib/getdate.y (get_date): When adding relative date, start with the
29658         initial time, not with the result of the first mktime call.
29659
29660 2006-04-25  Bruno Haible  <bruno@clisp.org>
29661
29662         * gnulib-tool (func_import): Output the include directives in three
29663         blocks, sorted separately.
29664         Reported by Ben Pfaff <blp@cs.stanford.edu>.
29665
29666 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
29667
29668         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
29669         to define main with arguments, for C++.  Reported by Eric Blake.
29670         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
29671         Prefer 'int main ()' to 'int main (void)', for C++.
29672         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
29673         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
29674         for 'main', for C99 and C++.
29675
29676 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
29677
29678         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
29679         Don't assume that exit status -1 is valid.
29680         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
29681         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
29682         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
29683         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
29684         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
29685         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
29686         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
29687         functions can be used without declaring them, or that you can
29688         exit with status -1.
29689         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
29690
29691 2006-04-24  Karl Berry  <karl@gnu.org>
29692
29693         * config/srclist.txt (longdouble.m4): sync lost.
29694
29695 2006-04-24  Eric Blake  <ebb9@byu.net>
29696
29697         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
29698
29699 2006-04-24  Bruno Haible  <bruno@clisp.org>
29700
29701         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
29702         poll() implementation in AIX.
29703         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29704
29705 2006-04-24  Bruno Haible  <bruno@clisp.org>
29706
29707         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
29708         assigned exactly once.
29709
29710 2006-04-23  Claudio Fontana  <claudio@gnu.org>
29711             Bruno Haible  <bruno@clisp.org>
29712
29713         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
29714         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
29715         for AM_CPPFLAGS.
29716
29717 2006-04-23  Bruno Haible  <bruno@clisp.org>
29718
29719         * modules/copy-file: Depend on unistd.
29720         * modules/execute: Likewise.
29721         * modules/fatal-signal: Likewise.
29722         * modules/findprog: Likewise.
29723         * modules/mkdtemp : Likewise.
29724         * modules/pipe: Likewise.
29725         * modules/wait-process: Likewise.
29726
29727 2006-04-23  Bruno Haible  <bruno@clisp.org>
29728
29729         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
29730         condition was already detected.
29731         Reported by Ben Pfaff <blp@cs.stanford.edu>.
29732
29733 2006-04-23  Bruno Haible  <bruno@clisp.org>
29734
29735         * lib/copy-file.c: Include <unistd.h> unconditionally.
29736         * lib/execute.c: Likewise.
29737         * lib/fatal-signal.c: Likewise.
29738         * lib/findprog.c: Likewise.
29739         * lib/mkdtemp.c: Likewise.
29740         * lib/pipe.h: Likewise.
29741         * lib/pipe.c: Likewise.
29742         * lib/wait-process.h: Likewise.
29743
29744 2006-04-23  Bruno Haible  <bruno@clisp.org>
29745
29746         * gnulib-tool (func_usage): Fix --import description. Document
29747         --update.
29748         (func_import): Create temporary file in a temporary directory, if
29749         --dry-run is specified. Silence errors from 'grep' when there are no
29750         m4 files in $m4dir.
29751         (func_create_testdir): Silence errors from 'grep' when there are no
29752         m4 files in $m4dir.
29753         Reported by Karl Berry <karl@freefriends.org>.
29754
29755 2006-04-20  Bruno Haible  <bruno@clisp.org>
29756
29757         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
29758         one argument, so that the code will be portable to Autoconf 2.60.
29759         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
29760         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
29761         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
29762
29763 2006-04-19  Derek Price  <derek@ximbiot.com>
29764             Eric Blake  <ebb9@byu.net>
29765
29766         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
29767         rather than "/full/path.h".  Update comment to match.  Shorten &
29768         generalize m4_translit call via AS_TR_CPP.
29769
29770 2006-04-19  Derek Price  <derek@ximbiot.com>
29771             Eric Blake  <ebb9@byu.net>
29772
29773         * lib/inttypes.h: Correct grammar in comment.
29774
29775 2006-04-18  Derek Price  <derek@ximbiot.com>
29776             Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         * modules/inttypes: New file.
29779         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
29780
29781 2006-04-18  Derek Price  <derek@ximbiot.com>
29782             Paul Eggert  <eggert@cs.ucla.edu>
29783
29784         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
29785         New files.
29786
29787 2006-04-18  Derek Price  <derek@ximbiot.com>
29788             Paul Eggert  <eggert@cs.ucla.edu>
29789
29790         * lib/inttypes.h: New file.
29791         * lib/strtoimax.c: Assume <inttypes.h>.
29792
29793 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
29794
29795         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
29796         isn't mounted.  Problem reported by Kir Kolyshkin.
29797
29798 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
29799
29800         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
29801         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
29802         Derek R. Price.
29803         * lib/regex.h (RE_DUP_MAX): Update comment to match current
29804         implementation.
29805
29806 2006-04-12  Eric Blake  <ebb9@byu.net>
29807
29808         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
29809         is now done automatically by the corresponding Autoconf macro.
29810
29811 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
29812
29813         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
29814         time_r.h.
29815
29816 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
29817
29818         Merge regex changes from libc, removing some of our
29819         POSIX-conformance changes that were rejected and redoing them in a
29820         less-intrusive way.
29821
29822         * lib/regcomp.c (re_compile_internal, init_dfa):
29823         Length arg is now size_t, not Idx.  All uses changed.
29824         (peek_token): Forward decl now says internal_function.
29825         (__re_error_msgid, __re_error_msgid_idx):
29826         Now static rather than extern with attribute_hidden.
29827         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
29828         For some reason libc prefers K&R style defns for external functions.
29829         (regerror) [!defined _LIBC]: Likewise.
29830         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
29831         (seek_collating_symbol_entry, lookup_collation_sequence_value):
29832         (build_range_exp, build_collating_symbol):
29833         Use K&R-style defn.
29834         (re_compile_fastmap): Use '\0' to memset, not 0.
29835         (utf8_sb_map): Make the calculations more obvious.
29836         (init_dfa, parse_bracket_exp, build_charclass_op):
29837         Call calloc and cast result, as glibc does.
29838         (init_word_char, fetch_token, peek_token, peek_token_bracket):
29839         (build_range_exp, build_collating_symbol):
29840         Now internal functions.
29841
29842         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
29843
29844         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
29845         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
29846         Don't depend on VMS; depend on __VMS instead, for POSIX
29847         namespace cleanness.
29848         (regoff_t): Define to ssize_t, not long int.
29849
29850         Remove the REG_ macros named below.  Instead, make the old names
29851         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
29852         __USE_GNU_REGEX.
29853         (REG_BACKSLASH_ESCAPE_IN_LISTS):
29854         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
29855         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
29856         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
29857         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
29858         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
29859         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
29860         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
29861         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
29862         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
29863         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
29864         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
29865         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
29866         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
29867         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
29868         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
29869         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
29870         (REG_NREGS):
29871         Remove.  All uses replaced by the old RE_* names.
29872         (RE_BACKSLASH_ESCAPE_IN_LISTS):
29873         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
29874         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
29875         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
29876         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
29877         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
29878         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
29879         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
29880         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
29881         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
29882         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
29883         Don't bother having these macros be independent of each others'
29884         values, since they no longer exist in the POSIX name space.
29885
29886         Rename the following member names back to their old names,
29887         unless !__USE_GNU_REGEX.  All uses changed back.
29888         (buffer): Renamed from re_buffer.
29889         (allocated): Renamed from re_allocated.
29890         (used): Renamed from re_used.
29891         (syntax): Renamed from re_syntax.
29892         (fastmap): Renamed from re_fastmap.
29893         (translate): Renamed from re_translate.
29894         (can_be_null): Renamed from re_can_be_null.
29895         (regs_allocated): Renamed from re_regs_allocated.
29896         (fastmap_accurate): Renamed from re_fastmap_accurate.
29897         (no_sub): Renamed from re_no_sub.
29898         (not_bol): Renamed from re_not_bol.
29899         (not_eol): Renamed from re_not_eol.
29900         (newline_anchor): Renamed from re_newline_anchor.
29901         (num_regs): Renamed from rm_num_regs.
29902         (start): Renamed from rm_start.
29903         (end): Renamed from rm_end.
29904
29905         (free_state): Move up a bit.
29906
29907         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
29908         #define to be empty.
29909         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
29910         when that is what is intended.
29911         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
29912         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
29913         (MAX): New macro.
29914         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
29915         All uses changed back to re_malloc, etc.  It's now the caller's
29916         responsibility to check for overflow; all callers changed.
29917         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
29918         (re_x2nrealloc): Remove.
29919         (free_state): Remove decl.
29920
29921         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
29922         (re_set_registers, re_exec):
29923         Use K&R-style defn.
29924
29925         2006-01-31  Roland McGrath  <roland@redhat.com>
29926
29927         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
29928         Reported by Mike Frysinger <vapier@gentoo.org>.
29929
29930         2006-01-15  Andreas Jaeger  <aj@suse.de>
29931
29932         [BZ #1950]
29933         * lib/regex_internal.c (re_string_reconstruct): Adjust for
29934         build_wcs_upper_buffer change.
29935         (build_wcs_upper_buffer): Change return type.
29936
29937         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
29938
29939         * lib/regex_internal.h: Include <stdint.h> if available.
29940
29941         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
29942
29943         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
29944
29945         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
29946
29947         * lib/regcomp.c: Adjust for changed secondary hash function.
29948
29949         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
29950
29951         * lib/regex.h: Pretty printing.
29952         Clean up namespace a bit.
29953
29954         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
29955
29956         * lib/regexec.c (update_cur_sifted_state, check_arrival,
29957         check_arrival_add_next_nodes): Avoid using uninitialized variable.
29958
29959         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
29960                     Ulrich Drepper  <drepper@redhat.com>
29961
29962         [BZ #1302]
29963         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
29964         changed.
29965         (bitset_word_t): Renamed from bitset_word.  All uses changed.
29966
29967         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
29968
29969         [BZ #281]
29970         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
29971         * lib/regcomp.c: Remove unnecessary uses of
29972         unsigned RE_TRANSLATE_TYPE.
29973         * lib/regex_internal.h: Likewise.
29974         * lib/regex_internal.c: Likewise.
29975         * lib/regexec.c: Likewise.
29976         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
29977
29978         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
29979
29980         * lib/regexec.c (find_recover_state): Remove unnecessary
29981         initialization.
29982         (transit_state_bkref): Make DFA a const pointer.
29983         (get_subexp): Likewise.
29984         (check_arrival): Likewise.
29985         (update_cur_sifted_state): Likewise.
29986         (re_search_internal): Likewise.
29987         (prune_impossible_nodes): Likewise.
29988         (acquire_init_state_context): Likewise.
29989         (proceed_next_node): Likewise.
29990         (set_regs): Likewise.
29991         (free_fail_stack_return): Likewise.
29992         (check_arrival_expand_ecl): Mark DFA parameter as const.
29993         (check_arrival_expand_ecl_sub): Likewise.
29994         (check_subexp_limits): Likewise.
29995         (sub_epsilon_src_nodes):  Likewise.
29996         (add_epsilon_src_nodes):  Likewise.
29997         (merge_state_array): Likewise.
29998         (update_regs): Likewise.
29999         (build_trtable): Likewise.
30000         (sift_states_backward): Mark MCTX parameter as const.
30001         (build_sifted_states): Likewise.
30002         (update_cur_sifted_state): Likewise.
30003         (sift_states_mkref): Likewise.
30004         (check_arrival_expand_ecl): Mark eclosure as const.
30005         (check_dst_limits_calc_pos_1): Likewise.
30006         * lib/regex_internal.h (re_match_context_t): Make dfa a const
30007         pointer.
30008
30009         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
30010
30011         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
30012         (transit_state_sb): Likewise.
30013         (transit_state_mb): Likewise.
30014         (sift_states_iter_mb): Likewise.
30015         (check_arrival_add_next_nodes): Likewise.
30016         (check_node_accept_bytes): Change first parameter to pointer-to-const.
30017         [_LIBC] (re_search_2_stub): Use mempcpy.
30018
30019         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
30020         mbrtowc for very simple UTF-8 case.
30021
30022         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
30023         a pointer-to-const.
30024         (re_acquire_state_context): Likewise.
30025         * lib/regex_internal.h: Adjust prototypes.
30026
30027         * lib/regex.c: Prevent using C++ compilers.
30028
30029         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
30030         (re_acquire_state_context): Likewise.
30031
30032 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
30033
30034         * modules/regex (Depends-on): Add ssize_t.
30035
30036 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
30037
30038         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
30039         translation table.
30040
30041 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
30042
30043         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
30044
30045 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
30046             Bruno Haible  <bruno@clisp.org>
30047
30048         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
30049         <sys/types.h> and <inttypes.h>.
30050
30051 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30052
30053         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
30054         `__error_t_defined', so argp.h will not typedef the former.
30055
30056 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
30057
30058         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
30059         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
30060         glibc names.  Even if glibc is changed to conform to POSIX, the
30061         traditional names will be available anyway, since regex depends on
30062         the extensions module.  Also, fix a longstanding typo in the
30063         implementation of Spencer ERE test #75 from grep 2.3.  Problems
30064         reported by Emanuele Giaquinta.  Also, change sense of cached
30065         variable, so that the message makes sense.
30066
30067 2006-03-24  Simon Josefsson  <jas@extundo.com>
30068
30069         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
30070         including some doc fixes.
30071         (base64_encode_alloc): Fix +1 bug on allocation failures.
30072
30073 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30074
30075         * lib/base64.c (base64_encode): Do not read past end of array with
30076         unsanitized input on systems with CHAR_BIT > 8.
30077
30078 2006-03-24  Eric Blake  <ebb9@byu.net>
30079
30080         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
30081
30082 2006-03-22  Karl Berry  <karl@gnu.org>
30083
30084         * config/srclist.txt (*setenv.[ch]): get from coreutils.
30085         * config/srclistvars.sh (COREUTILS): new var.
30086
30087 2006-03-17  Jim Meyering  <jim@meyering.net>
30088
30089         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
30090         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
30091
30092 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
30093
30094         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
30095         no longer needs it.  Instead, check that regoff_t is as least
30096         as wide as ptrdiff_t.
30097
30098         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
30099         so that our regex.h stays compatible with the installed regex.
30100         This is helpful for installers who configure --without-included-regex.
30101         Problem reported by Emanuele Giaquinta.
30102
30103 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
30104
30105         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
30106         Typedef to long int, not to off_, as POSIX will likely change
30107         in that direction.
30108
30109 2006-03-15  Eric Blake  <ebb9@byu.net>
30110
30111         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
30112
30113 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
30114
30115         * lib/argp-help.c (validate_uparams): Fix typo
30116         * lib/argp-parse.c (argp_default_options): Consistently begin help
30117         messages with a lowercase letter.
30118
30119 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
30120
30121         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
30122         overrun buffers and shouldn't be used (much as gets shouldn't be
30123         used).
30124         * lib/time_r.c (asctime_r, ctime_r): Likewise.
30125
30126 2006-03-08  Simon Josefsson  <jas@extundo.com>
30127
30128         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
30129         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30130
30131 2006-03-08  Simon Josefsson  <jas@extundo.com>
30132
30133         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
30134         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30135
30136 2006-03-08  Simon Josefsson  <jas@extundo.com>
30137
30138         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
30139         signal that configure disabled the device.
30140
30141 2006-03-08  Simon Josefsson  <jas@extundo.com>
30142
30143         * build-aux/maint.mk: Fix refresh-po, to handle no translated
30144         languages.
30145
30146 2006-03-07  Simon Josefsson  <jas@extundo.com>
30147
30148         * modules/getopt (Depends-on): Add unistd.
30149
30150         * modules/unistd: New file.
30151
30152 2006-03-07  Simon Josefsson  <jas@extundo.com>
30153
30154         * modules/gc-random: New file.
30155
30156 2006-03-07  Simon Josefsson  <jas@extundo.com>
30157
30158         * m4/unistd_h.m4: New file.
30159
30160 2006-03-07  Simon Josefsson  <jas@extundo.com>
30161
30162         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
30163         test to be side-effect free by storing the result in the cache
30164         variable gl_cv_lib_readline, and moving the assignment of
30165         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
30166         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30167
30168 2006-03-07  Simon Josefsson  <jas@extundo.com>
30169
30170         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
30171         error on missing devices (the functions will return an error).
30172
30173         * m4/gc.m4: Move random stuff to gc-random.m4
30174
30175 2006-03-07  Simon Josefsson  <jas@extundo.com>
30176
30177         * lib/unistd_.h: New file.
30178
30179 2006-03-07  Simon Josefsson  <jas@extundo.com>
30180
30181         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
30182
30183 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
30184
30185         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
30186         Problem reported by Juan Manuel Guerrero.
30187
30188 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
30189
30190         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
30191         the unistd module.
30192         * lib/getlogin_r.c: Likewise.
30193         * lib/getlogin_r.h: Likewise.
30194         * lib/glob.c: Likewise.
30195         * lib/pagealign_alloc.c: Likewise.
30196         * lib/unistd_.h: Remove; no longer needed.
30197
30198 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
30199
30200         * MODULES.html.sh (Support for systems lacking POSIX:2001):
30201         Add unistd.
30202         * modules/c-stack (Depends-on): Add unistd.
30203         * modules/getlogin_r: Likewise.
30204         * modules/glob: Likewise.
30205         * modules/pagealign_alloc: Likewise.
30206         * modules/unistd (Files): Remove lib/unistd_.h.
30207         (EXTRA_DIST): Remove.
30208         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
30209         need unistd_.h.
30210         (MOSTLYCLEANFILES): Remove unistd.h-t.
30211
30212 2006-03-03  Simon Josefsson  <jas@extundo.com>
30213
30214         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
30215
30216 2006-03-03  Simon Josefsson  <jas@extundo.com>
30217
30218         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
30219         libidn and bison.
30220
30221 2006-03-03  Simon Josefsson  <jas@extundo.com>
30222
30223         * build-aux/maint.mk: Add indent target.
30224
30225 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
30226
30227         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
30228         our replacement poll.h in any case, to avoid a differing
30229         declaration from a system header.  Seen on AIX.
30230
30231 2006-03-01  Simon Josefsson  <jas@extundo.com>
30232
30233         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
30234         <kasal@ucw.cz>.
30235
30236 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
30237
30238         * modules/gettime (Depends-on): Add extensions module.
30239         * modules/nanosleep (Depends-on): Likewise.
30240         * modules/settime (Depends-on): Likewise.
30241
30242 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
30243
30244         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
30245         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
30246         pedantically.
30247         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
30248         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
30249
30250         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
30251         not "==".  Reported by Ralf Wildenhues.
30252
30253 2006-03-01  Karl Berry  <karl@gnu.org>
30254
30255         * doc/Copyright/request-*: new files, synced from gnuorg.
30256
30257 2006-03-01  Karl Berry  <karl@gnu.org>
30258
30259         * config/srclist.txt (Copyright/*): new entries.
30260
30261 2006-02-28  Simon Josefsson  <jas@extundo.com>
30262
30263         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
30264
30265 2006-02-27  Simon Josefsson  <jas@extundo.com>
30266
30267         * lib/base64.h: Indent #define's.  From Jim Meyering
30268         <jim@meyering.net>.
30269
30270 2006-02-27  Jim Meyering  <jim@meyering.net>
30271
30272         Revert the change of 2006-02-24, so these files can continue
30273         to be sync'd from gettext.
30274         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
30275         of `config.h'.
30276
30277 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
30278
30279         * modules/intprops: New file.
30280         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
30281         Add intprops.
30282         * modules/getloadavg (Files): Remove lib/intprops.h.
30283         (Depends-on): Add intprops.
30284         * modules/human: Likewise.
30285         * modules/inttostr: Likewise.
30286         * modules/openat: Likewise.
30287         * modules/sig2str: Likewise.
30288         * modules/userspec: Likewise.
30289         * modules/utimecmp: Likewise.
30290         * modules/xnanosleep: Likewise.
30291         * modules/xstrtol: Likewise.
30292
30293 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
30294
30295         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
30296         * modules/lock-tests (TESTS): Use $(EXEEXT).
30297         * modules/tls-tests: Likewise.
30298         * modules/argp-tests: Likewise.
30299         (check_PROGRAMS): New var, replacing...
30300         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
30301
30302 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30303
30304         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
30305         `config.h'.
30306
30307 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
30308
30309         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
30310
30311 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30312
30313         Sync from coreutils.
30314         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
30315         gl_CHDIR_SAFER.
30316
30317 2006-02-22  Jim Meyering  <jim@meyering.net>
30318
30319         Sync from coreutils.
30320         * m4/chdir-safer.m4: New file.
30321
30322 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
30323
30324         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
30325         AT_FDCWD exceeds INT_MAX.
30326         * lib/openat.h (AT_FDCWD): Likewise.
30327
30328 2006-02-17  Eric Blake  <address@hidden>
30329
30330         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
30331
30332 2006-02-16  Simon Josefsson  <jas@extundo.com>
30333
30334         * modules/getaddrinfo (Depends-on): Add sys_socket.
30335
30336 2006-02-15  Simon Josefsson  <jas@extundo.com>
30337
30338         * build-aux/maint.mk: Add dsyntax-check rule.
30339
30340 2006-02-15  Eric Blake  <ebb9@byu.net>
30341
30342         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
30343         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
30344         'present but cannot compile' warnings on cygwin.
30345         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
30346         use ws2tcpip.h if sys/socket.h works.
30347         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
30348         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
30349
30350 2006-02-14  Simon Josefsson  <jas@extundo.com>
30351
30352         * modules/maintainer-makefile (Files): Rename.
30353
30354         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
30355         and (the local) Makefile.cfg to maint-cfg.mk.
30356
30357         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
30358         to the latter.
30359
30360         * modules/maintainer-makefile: New module.
30361
30362         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
30363         severaly stripped to make it possible to build it up from scratch
30364         with reliable tests.
30365
30366         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
30367         fixes to permit overriding the default actions when configure and
30368         makefile are not available.
30369
30370 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
30371
30372         Sync from coreutils.
30373         * modules/lstat (Depends-on): Don't depend on xalloc.
30374         (License): Change from GPL to LGPL, since this is now simply a
30375         replacement for a libc function.
30376
30377 2006-02-14  Jim Meyering  <jim@meyering.net>
30378
30379         Sync from coreutils.
30380
30381         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
30382         failure on deficient systems, and simplify gnulib lgpl dependencies.
30383         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
30384         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
30385
30386         * lib/xalloc-die.c: Remove unused definition of N_.
30387
30388 2006-02-14  Jim Meyering  <jim@meyering.net>
30389
30390         Sync from coreutils.
30391         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
30392         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
30393         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
30394         double-quote uses of that variable, to accommodate the rare case in
30395         which getmntent is available in none of the libraries checked.  This
30396         happens at least on FreeBSD 5.0.
30397
30398 2006-02-13  Simon Josefsson  <jas@extundo.com>
30399
30400         * gnulib-tool (Usage): Fix --import, from
30401         karl@freefriends.org (Karl Berry).
30402
30403 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
30404
30405         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
30406
30407 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
30408
30409         * lib/argp-namefrob.h: Restore changes accidentally lost during the
30410         "autoupdate" on 2005-12-12.
30411
30412 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
30413
30414         * modules/closeout (Depends-on): Remove atexit.
30415
30416 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
30417
30418         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
30419         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
30420
30421 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
30422
30423         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
30424         __EXTENSIONS__ if this causes compilation to fail.  Problem
30425         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
30426         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
30427
30428 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
30429
30430         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
30431         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
30432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
30433         All uses changed.
30434
30435 2006-01-26  Simon Josefsson  <jas@extundo.com>
30436
30437         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
30438         prototype is visible on mingw32.
30439
30440         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
30441         for mingw32.
30442
30443         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
30444         mingw32).
30445
30446 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
30447
30448         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
30449         attempt to open for write; this always fails, at least on POSIX
30450         hosts.  This reinstates the 2006-01-09 change, which was
30451         inadvertently removed.
30452
30453 2006-01-26  Bruno Haible  <bruno@clisp.org>
30454
30455         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
30456         Reported by Paul Eggert.
30457
30458 2006-01-26  Bruno Haible  <bruno@clisp.org>
30459             Paul Eggert  <eggert@cs.ucla.edu>
30460
30461         * lib/stdbool_.h (_Bool)
30462         [(! (defined __cplusplus || defined __BEOS__)
30463           && !defined __GNUC__
30464           && !(defined __HP_cc || defined __xlc__
30465                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
30466                || defined __sgi))]:
30467         #define to signed char in these cases too; this simplifies
30468         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
30469         etc., separately) and makes it more conservative.
30470
30471 2006-01-25  Simon Josefsson  <jas@extundo.com>
30472
30473         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
30474         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
30475         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
30476
30477 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
30478
30479         * lib/argp-namefrob.h: Bugfix. Remove stray #
30480
30481 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
30482
30483         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
30484         so that we test the test.
30485         Check for yet another HP-UX cc bug involving *bool |= bool.
30486
30487 2006-01-25  Karl Berry  <karl@gnu.org>
30488
30489         * config/srclist.txt (vasnprintf.c): sync lost.
30490
30491 2006-01-25  Jim Meyering  <jim@meyering.net>
30492
30493         Sync from the stable (b5) branch of coreutils:
30494
30495         * lib/fts.c (fts_children): Don't let close() clobber errno from
30496         failed fchdir().
30497
30498         * lib/fts.c (fts_stat): When following a symlink-to-directory,
30499         don't necessarily interpret stat-fails+lstat-succeeds as indicating
30500         a dangling symlink.  That can also happen at least for ELOOP.
30501         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
30502         FYI, this bug predates the inclusion of fts.c in coreutils.
30503
30504         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
30505         in their own block, so pre-c99 compilers don't object.
30506
30507         Avoid the double-free (first in fts_read, second in fts_close) that
30508         would occur when an `active' directory is made inaccessible (e.g.,
30509         via chmod a-x) during a traversal.
30510         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
30511         before returning.  Reproduce this failure by
30512         mkdir -p a/b; cd a; chmod a-x . b
30513         Reported by Stavros Passas.
30514
30515 2006-01-25  Jim Meyering  <jim@meyering.net>
30516
30517         * lib/fileblocks.c: Remove more useless parentheses.
30518         * lib/readutmp.h: Likewise.
30519
30520 2006-01-25  Bruno Haible  <bruno@clisp.org>
30521
30522         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
30523         warnings.
30524         Reported by Paul Eggert.
30525
30526 2006-01-25  Bruno Haible  <bruno@clisp.org>
30527
30528         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
30529         rid of a trap command. For Solaris sh.
30530         Reported by Mark D. Baushke <mdb@gnu.org>.
30531
30532 2006-01-24  Simon Josefsson  <jas@extundo.com>
30533
30534         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
30535         Bruno.
30536
30537 2006-01-24  Karl Berry  <karl@gnu.org>
30538
30539         * config/srclist.txt (argp-namefrob.h): sync lost.
30540
30541 2006-01-24  Jim Meyering  <jim@meyering.net>
30542
30543         * modules/openat (Files): Add lib/intprops.h.
30544         From Mark D. Baushke.
30545
30546 2006-01-24  Jim Meyering  <jim@meyering.net>
30547
30548         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
30549         Reported by Mark D. Baushke.
30550
30551 2006-01-24  Jim Meyering  <jim@meyering.net>
30552
30553         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
30554
30555 2006-01-24  Bruno Haible  <bruno@clisp.org>
30556
30557         * modules/strnlen (Maintainer): Change from glibc to all.
30558
30559 2006-01-24  Bruno Haible  <bruno@clisp.org>
30560
30561         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
30562         Patch by Paul Eggert.
30563
30564 2006-01-24  Bruno Haible  <bruno@clisp.org>
30565
30566         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
30567         already has it.
30568         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
30569         2005-11-26.
30570
30571         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
30572         'signed char' to avoid problems with the built-in _Bool type.
30573         Reported by Paul Eggert on 2005-11-26.
30574
30575 2006-01-24  Bruno Haible  <bruno@clisp.org>
30576
30577         * gnulib-tool (func_import): Avoid constructing complicated sed
30578         expressions inside backquote.
30579         Report and solution by Mark D. Baushke <mdb@gnu.org>.
30580
30581 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
30582
30583         These changes imported from libc.
30584         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
30585         test and two separate function calls.
30586         * lib/strndup.c (__strndup): Add libc_hidden_def.
30587
30588 2006-01-23  Simon Josefsson  <jas@extundo.com>
30589
30590         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
30591         Remove the test_*_SOURCES variable: automake infers it by default.
30592         * modules/tls-tests: Likewise.
30593
30594 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
30595
30596         Work around porting bugs reported by Dieter in
30597         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
30598         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
30599         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
30600         Include "getopt.h" first, to check interface.
30601         (getenv): Declare only if defined HAVE_DECL_GETENV &&
30602         !HAVE_DECL_GETENV.
30603         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
30604         (__strndup): Revert to K&R-style function dfns, the glibc style.
30605         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
30606         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
30607         Include strnlen.h first, to get prototype properly.
30608         (strnlen): Renamed from __strnlen.
30609         Remove weak alias.
30610
30611 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
30612
30613         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
30614
30615 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
30616
30617         * config/srclist.txt: Adjust to reflect glibc reorganization.
30618         This affects only comments.
30619
30620 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
30621
30622          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
30623          Reported by Bruce Korb <bkorb@gnu.org>.
30624
30625 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
30626
30627         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
30628         to pacify gcc -Wswitch-default.
30629
30630 2006-01-22  Bruno Haible  <bruno@clisp.org>
30631
30632         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
30633         temporary buffer for sprintf, take into account the precision also
30634         for 'd', 'i', 'u', 'o', 'x', 'X'.
30635
30636 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
30637
30638         * modules/argp-tests: New module
30639         * tests/test-argp.c: New file
30640         * tests/test-argp-2.sh: New file
30641
30642 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
30643
30644         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
30645         (__argp_base_name): Removed
30646         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
30647         typo.
30648         (__argp_base_name): Provide macro definition or extern declaration
30649         depending on the configuration
30650
30651 2006-01-20  Simon Josefsson  <jas@extundo.com>
30652
30653         * modules/inet_ntop (Depends-on): Depend on sys_socket.
30654
30655 2006-01-20  Simon Josefsson  <jas@extundo.com>
30656
30657         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
30658
30659 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
30660
30661         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
30662         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
30663         Suggested by Bruno Haible.
30664
30665 2006-01-20  Karl Berry  <karl@gnu.org>
30666
30667         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
30668         until changes propagate, I guess.
30669
30670 2006-01-19  Simon Josefsson  <jas@extundo.com>
30671
30672         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
30673
30674 2006-01-19  Simon Josefsson  <jas@extundo.com>
30675
30676         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
30677
30678 2006-01-19  Simon Josefsson  <jas@extundo.com>
30679
30680         * gnulib-tool: Set check_PROGRAMS.
30681
30682         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
30683         modules/des-tests, modules/gc-arcfour-tests,
30684         modules/gc-arctwo-tests, modules/gc-des-tests,
30685         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
30686         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
30687         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
30688         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
30689         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
30690         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
30691         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
30692         test_*_SOURCES.
30693
30694 2006-01-18  Simon Josefsson  <jas@extundo.com>
30695
30696         * modules/socklen (Depends-on): Depend on sys_socket.
30697
30698 2006-01-18  Simon Josefsson  <jas@extundo.com>
30699
30700         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
30701         modules/des-tests, modules/gc-arcfour-tests,
30702         modules/gc-arctwo-tests, modules/gc-des-tests,
30703         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
30704         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
30705         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
30706         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
30707         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
30708         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
30709         $(EXEEXT) to automake TESTS variable, for mingw32.
30710
30711 2006-01-17  Simon Josefsson  <jas@extundo.com>
30712
30713         * modules/socklen (Include): Need sys/socket.h.
30714
30715 2006-01-17  Bruno Haible  <bruno@clisp.org>
30716
30717         * modules/ssize_t (Include): Add <sys/types.h>.
30718
30719 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
30720
30721         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
30722         it's not portable and it doesn't work with cross-compiles.
30723         Problem reported by Bruno Haible.  Fix missing-$ typo in
30724         'test "gl_cv_ignore_unused_libraries" ...' that prevented
30725         -zignore from being used with Sun's C compiler.
30726
30727 2006-01-12  Simon Josefsson  <jas@extundo.com>
30728
30729         * lib/base64.c: Fix warning, reported by Bruno Haible
30730         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
30731
30732 2006-01-12  Bruno Haible  <bruno@clisp.org>
30733
30734         * modules/ldd: New file.
30735         * build-aux/ldd.sh.in: New file.
30736         * MODULES.html.sh (Support for building libraries and executables): Add
30737         ldd.
30738
30739 2006-01-12  Bruno Haible  <bruno@clisp.org>
30740
30741         * m4/ldd.m4: New file.
30742
30743 2006-01-12  Bruno Haible  <bruno@clisp.org>
30744
30745         * gnulib-tool (func_import, func_create_testdir): Don't go into an
30746         endless loop while replacing $auxdir with build-aux.
30747
30748 2006-01-11  Simon Josefsson  <jas@extundo.com>
30749
30750         * lib/stdint_.h (SIZE_MAX): Add missing (.
30751
30752 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
30753
30754         Sync from coreutils.
30755         * lib/md5.c: Fix commentary typos.
30756         (alignof, UNALIGNED_P): No need for a GCC-specific version.
30757         * lib/md5.h (__attribute__): Remove; unused.
30758         * lib/sha1.c: Fix commentary to match md5 better.
30759         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
30760         so that we don't need to worry about alignment.  All uses changed.
30761         This merges the 2005-10-28 md5 change into sha1.
30762
30763 2006-01-11  Jim Meyering  <jim@meyering.net>
30764
30765         Sync from coreutils.
30766         * lib/md5.c (OP): Fix spacing.
30767
30768 2006-01-11  Bruno Haible  <bruno@clisp.org>
30769
30770         Ensure automatic ordering between gl_LOCK and gl_ARGP.
30771         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
30772         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
30773
30774 2006-01-11  Bruno Haible  <bruno@clisp.org>
30775
30776         Ensure automatic ordering between gl_LOCK and gl_ARGP.
30777         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
30778         the "early" section as well.
30779
30780 2006-01-11  Bruno Haible  <bruno@clisp.org>
30781
30782         Avoid "ar: no archive members specified" error on MacOS X.
30783         * gnulib-tool (func_modules_add_dummy): New function.
30784         (func_import, func_create_testdir): Invoke it.
30785
30786 2006-01-11  Bruno Haible  <bruno@clisp.org>
30787
30788         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
30789         with $auxdir in AC_CONFIG_FILES statements.
30790
30791 2006-01-11  Bruno Haible  <bruno@clisp.org>
30792
30793         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30794         Initialize also noinst_HEADERS to empty.
30795
30796 2006-01-11  Bruno Haible  <bruno@clisp.org>
30797
30798         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
30799         variables.
30800         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
30801         autoreconf.
30802
30803 2006-01-11  Bruno Haible  <bruno@clisp.org>
30804
30805         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
30806         overridable by the user.
30807         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30808
30809 2006-01-10  Simon Josefsson  <jas@extundo.com>
30810
30811         * modules/sys_socket: New file.
30812
30813 2006-01-10  Simon Josefsson  <jas@extundo.com>
30814
30815         * m4/sys_socket_h.m4: New file.
30816
30817 2006-01-10  Simon Josefsson  <jas@extundo.com>
30818
30819         * lib/socket_.h: New file.
30820
30821 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
30822
30823         * modules/readutmp (Maintainer): Add myself.
30824
30825 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
30826
30827         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
30828         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
30829         People who are still concerned with buggy memcmp implementations
30830         can invoke gl_FUNC_MEMCMP themselves.
30831
30832 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
30833
30834         * lib/regex_internal.h (BITSET_WORD_BITS):
30835         Work around a bug in 64-bit PGC (before version 6.1-2), where the
30836         preprocessor mishandles large unsigned values as if they were signed.
30837         Problem reported by Claudio Fontana in
30838         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
30839
30840 2006-01-10  Jim Meyering  <jim@meyering.net>
30841
30842         Avoid the double-free (first in fts_read, second in fts_close) that
30843         would occur when an `active' directory is made inaccessible (e.g.,
30844         via chmod a-x) during a traversal.
30845         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
30846         before returning.  Reproduce this failure by
30847         mkdir -p a/b; cd a; chmod a-x . b
30848         Reported by Stavros Passas.
30849
30850         Sync from coreutils.
30851         * lib/sha1.c: Tweak grammar in a comment.
30852
30853 2006-01-10  Jim Meyering  <jim@meyering.net>
30854
30855         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
30856         Patch by Joerg Sonnenberger.
30857
30858 2006-01-10  Bruno Haible  <bruno@clisp.org>
30859
30860         * modules/readutmp: Depend on module free.
30861         * modules/strtok_r: Depend on module restrict.
30862
30863 2006-01-10  Bruno Haible  <bruno@clisp.org>
30864
30865         * modules/gettext (configure.ac): Add an invocation of
30866         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
30867
30868 2006-01-10  Bruno Haible  <bruno@clisp.org>
30869
30870         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
30871         Reported by Werner Lemberg <wl@gnu.org>.
30872
30873 2006-01-10  Bruno Haible  <bruno@clisp.org>
30874
30875         * lib/localcharset.c: Update from GNU gettext.
30876
30877 2006-01-10  Bruno Haible  <bruno@clisp.org>
30878
30879         * lib/argp.h (__const): Remove macro. Use const instead.
30880         * lib/argp-fmtstream.h (__const): Likewise.
30881         * lib/glob_.h (__const): Remove macro.
30882         * lib/glob-libc.h: Use const instead of __const.
30883
30884 2006-01-10  Bruno Haible  <bruno@clisp.org>
30885
30886         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
30887         variable.
30888         Needed to avoid an automake error regarding the 'gettext' module.
30889
30890 2006-01-09  Simon Josefsson  <jas@extundo.com>
30891
30892         * modules/inet_ntop (Depends-on): Add restrict.
30893
30894 2006-01-09  Simon Josefsson  <jas@extundo.com>
30895
30896         * modules/gc-rijndael-tests (License): Put under LGPL.
30897
30898         * modules/gc-des-tests (License): Likewise.
30899
30900         * modules/gc-arcfour-tests (License): Likewise.
30901
30902         * modules/gc-arctwo-tests (License): Likewise.
30903
30904         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
30905
30906         * modules/gc-hmac-sha1-tests (Files): Likewise.
30907
30908         * modules/gc-hmac-md5-tests (License): Likewise.
30909
30910         * modules/gc-sha1-tests (License): Likewise.
30911
30912         * modules/gc-md5-tests (License): Likewise.
30913
30914         * modules/gc-md4-tests (License): Likewise.
30915
30916         * modules/gc-md2-tests (License): Likewise.
30917
30918         * modules/gc-tests (License): Likewise.
30919
30920         * modules/des-tests (License): Likewise.
30921
30922         * modules/md4-tests (License): Likewise.
30923
30924         * modules/md2-tests (License): Likewise.
30925
30926 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
30927
30928         Sync from coreutils:
30929
30930         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
30931         * modules/lib-ignore: New file.
30932         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
30933         chdir-safer.m4, lchmod.m4.
30934         * modules/openat: Add mkdirat.c, openat-priv.h.
30935
30936 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
30937
30938         Sync from coreutils.
30939         * m4/lib-ignore.m4: New file.
30940         * m4/lchmod.m4: New file.
30941
30942 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
30943
30944         Sync from coreutils.
30945         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
30946         for write access: POSIX says that must fail.
30947         * lib/fts.c (diropen): Likewise.
30948         * lib/save-cwd.c (save_cwd): Likewise.
30949         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
30950         well, for minor improvements on hosts that lack O_DIRECTORY.
30951         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
30952         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
30953         Fall back on chown if open failed with EACCES.
30954
30955         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
30956         Report an error at compile-time if only a 1-second nominal clock
30957         resolution is found.
30958
30959         * lib/lchmod.h: New file.
30960         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
30961         (make_dir_parents): Use lchown rather than chown, and
30962         lchmod rather than chmod.
30963
30964         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
30965         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
30966         "proc" reported by n0dalus.
30967
30968         * lib/mountlist.c: Include <limits.h>.
30969         (dev_from_mount_options)
30970         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
30971         New function.  It no longer assumes "dev=" has the System V meaning
30972         on Linux (since it doesn't).  It also parses "dev=" more carefully.
30973         (read_file_system_list)
30974         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
30975         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
30976         dev= in that case.
30977
30978         * lib/posixtm.h (PDS_PRE_2000): New macro.
30979         * lib/posixtm.c (year): Arg is now syntax_bits rather than
30980         allow_century.  All usages changed.  Reject dates outside the range
30981         1969-1999 if PDS_PRE_2000 is used.
30982
30983 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
30984
30985         Sync from coreutils.
30986         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
30987         (Time of day items): Mention the possibility of leap seconds.
30988         Problem reported by Dr. David Alan Gilbert.
30989
30990 2006-01-09  Jim Meyering  <jim@meyering.net>
30991
30992         Sync from coreutils.
30993
30994         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
30995
30996         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
30997
30998         * lib/modechange.c (mode_compile): Reject an invalid mode string
30999         that starts with an octal digit.  From Andreas Gruenbacher.
31000
31001         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
31002         and dup to open_safer and dup_safer, respectively.
31003         (openat_permissive): Fix typo in comment.
31004
31005         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
31006         "gettext.h"; either no longer needed or are guaranteed by openat.h.
31007         (_): Remove; no longer needed.
31008         (openat): Renamed from rpl_openat; no need for rpl_openat
31009         since openat.h renames openat for us.
31010         Replace most of the body with a call to openat_permissive,
31011         to avoid duplicate code.
31012         Port to (probably hypothetical) environments were mode_t is
31013         wider than int.
31014         (openat_permissive): Require mode arg, so that we can check
31015         types better.  Put it just after flags.  Change cwd failure
31016         indicator from pointer-to-bool to pointer-to-errno-value.
31017         All callers changed.
31018         Invoke openat_save_fail and/or openat_restore_fail if
31019         cwd_errno is null, so that openat can call us.
31020         (openat_permissive, fdopendir, fstatat, unlinkat):
31021         Simplify errno handling to avoid some duplicate code,
31022         as it's OK to set errno on success.
31023         * lib/openat.h: Revamp code so that function macros depend on
31024         __OPENAT_PREFIX only, not also on AT_FDCWD.
31025         (openat_ro): Remove.  Caller changed to use openat_permissive.
31026         (openat_permissive): Now a macro, if not a function.
31027         (openat_restore_fail, openat_save_fail): Now always functions,
31028         since mkdirat needs them even if __OPENAT_PREFIX is defined.
31029
31030         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
31031         and openat.c.
31032         * lib/mkdirat.c: Include openat-priv.h.
31033         Remove definitions of macros defined therein.
31034         * lib/openat.c: Likewise.
31035
31036         * lib/mkdirat.c (mkdirat): New file and function.
31037         * lib/openat.h (mkdirat): Declare.
31038
31039         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
31040
31041         * lib/openat.h (openat_permissive): Declare.
31042         (openat_ro): Define.
31043
31044         * lib/openat.c (EXPECTED_ERRNO): New macro.
31045         (openat_permissive): New function -- used in remove.c rewrite.
31046         (all functions): Set errno just before returning, only if there
31047         was an actual failure.
31048         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
31049
31050         Emulate openat-family functions using Linux's procfs, if possible.
31051         Idea and some code based on Ulrich Drepper's glibc changes.
31052
31053         * lib/openat.c: (BUILD_PROC_NAME): New macro.
31054         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
31055         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
31056         before falling back on save_cwd and restore_cwd.
31057         (fdopendir, fstatat, unlinkat): Likewise.
31058
31059         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
31060         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
31061
31062         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
31063         as second argument to va_arg.  Otherwise, some versions of gcc
31064         warn that `if this code is reached, the program will abort'.
31065
31066 2006-01-09  Jim Meyering  <jim@meyering.net>
31067
31068         Sync from coreutils.
31069         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
31070         Require openat-priv.h.
31071
31072 2006-01-09  Bruno Haible  <bruno@clisp.org>
31073
31074         * modules/strnlen (Include): Use strnlen.h.
31075
31076 2006-01-09  Bruno Haible  <bruno@clisp.org>
31077
31078         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
31079
31080 2006-01-09  Bruno Haible  <bruno@clisp.org>
31081
31082         * lib/sysexit_.h (EX_OK): New macro.
31083         Suggested by Martin Lambers <marlam@marlam.de>.
31084
31085 2006-01-09  Bruno Haible  <bruno@clisp.org>
31086
31087         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
31088         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
31089
31090 2006-01-09  Bruno Haible  <bruno@clisp.org>
31091
31092         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
31093         numbers.
31094
31095 2006-01-09  Bruno Haible  <bruno@clisp.org>
31096
31097         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
31098         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
31099         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
31100         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
31101
31102 2006-01-09  Bruno Haible  <bruno@clisp.org>
31103
31104         * build-aux/javacomp.sh.in: New file, moved from lib/.
31105         * modules/javacomp-script (Files): Update.
31106         (configure.ac): Add AC_CONFIG_FILES invocation.
31107         (EXTRA_DIST): Remove variable.
31108
31109         * build-aux/javaexec.sh.in: New file, moved from lib/.
31110         * modules/javaexec (Files): Update.
31111         (configure.ac): Add AC_CONFIG_FILES invocation.
31112         (EXTRA_DIST): Remove javaexec.sh.in.
31113
31114         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
31115         * modules/csharpcomp-script (Files): Update.
31116         (configure.ac): Add AC_CONFIG_FILES invocation.
31117         (EXTRA_DIST): Remove variable.
31118
31119         * build-aux/csharpexec.sh.in: New file, moved from lib/.
31120         * modules/csharpexec (Files): Update.
31121         (configure.ac): Add AC_CONFIG_FILES invocation.
31122         (EXTRA_DIST): Remove csharpexec.sh.in.
31123
31124 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
31125
31126         Sync from coreutils.
31127
31128         Add POSIX ACL support
31129         * lib/acl.h (copy_acl, set_acl): Add declarations.
31130         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
31131         systems other than Linux.
31132         (chmod_or_fchmod): New function: use fchmod when possible,
31133         and chmod otherwise.
31134         (file_has_acl): Add a POSIX ACL implementation, with a
31135         Linux-specific subcase.
31136         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
31137         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
31138         acls are unsupported.
31139         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
31140         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
31141         are unsupported.
31142
31143 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
31144
31145         Sync from coreutils.
31146         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
31147
31148 2006-01-07  Bruno Haible  <bruno@clisp.org>
31149
31150         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
31151         gl_EARLY.
31152
31153 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
31154
31155         * lib/strftime.c (tzname): Don't declare if it is already #defined.
31156         Problem reported for Mingw by Mark Junker.
31157
31158 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
31159
31160         * README: Gnulib normally doesn't generate a tarball.
31161
31162 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
31163
31164         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
31165         long int, not int, for nanosecond counts, so that people who are
31166         used to POSIX struct timespec won't be surprised.  Reported by Jim
31167         Meyering.
31168
31169 2005-12-28  Bruno Haible  <bruno@clisp.org>
31170
31171         * build-aux/config.rpath: Update from GNU gettext.
31172
31173 2005-12-16  Jim Meyering  <jim@meyering.net>
31174
31175         * modules/fprintftime: New module.
31176         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
31177
31178 2005-12-16  Jim Meyering  <jim@meyering.net>
31179
31180         * m4/fprintftime.m4: New file.
31181
31182 2005-12-16  Jim Meyering  <jim@meyering.net>
31183
31184         * lib/fprintftime.c, lib/fprintftime.h: New files.
31185
31186 2005-12-15  Simon Josefsson  <jas@extundo.com>
31187
31188         * modules/socklen (configure.ac): Fix M4 macro name, to align with
31189         new m4/socklen.m4.
31190
31191 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
31192
31193         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
31194         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
31195
31196 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
31197
31198         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
31199         * lib/argp-help.c (fill_in_uparams): Check if the constructed
31200         struct uparams is valid. Fall back to the default values if it is
31201         not.
31202
31203 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
31204
31205         * modules/argp (Files): Add argp-pin.c
31206         (Depends-on): dirname
31207         (lib_SOURCES): Add argp-pin.c
31208
31209 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
31210
31211         * m4/argp.m4:  Check if program_invocation_name and
31212         program_invocation_short_name are declared and define appropriate
31213         macros if they are not.
31214
31215 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
31216
31217         * lib/argp-help.c (__argp_base_name): New function
31218         (__argp_short_program_name): Rewrite using __argp_base_name
31219         * lib/argp-namefrob.h: Define program_invocation_name and
31220         program_invocation_short_name if requested
31221         (__argp_base_name): Add prototype
31222         * lib/argp-parse.c (argp_def): Use gettext wrappers
31223         (argp_default_parser): Use __argp_base_name
31224         * lib/argp-pin.c: New file. Defines program_invocation_name and
31225         program_invocation_short_name on systems that lack them.
31226
31227 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
31228
31229         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
31230         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
31231         porting problem reported by Georg Schwarz in
31232         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
31233
31234 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
31235
31236         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
31237         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
31238         porting problem reported by Georg Schwarz in
31239         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
31240
31241 2005-12-05  Bruno Haible  <bruno@clisp.org>
31242
31243         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
31244         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
31245         Reported by Mark Junker <mjscod@gmx.de>.
31246
31247 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
31248
31249         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
31250         Use implementation from Albert Chin, with some
31251         comments/corrections by Stepan Kasal and myself.
31252
31253 2005-12-02  Bruno Haible  <bruno@clisp.org>
31254
31255         * gnulib-tool (func_import): Accept GPLed build tool modules when
31256         --lgpl is given.
31257         * modules/csharpcomp-script: New file.
31258         * modules/csharpcomp: Depend on it.
31259         * modules/javacomp-script: New file.
31260         * modules/javacomp: Depend on it.
31261         Suggested by Simon Josefsson.
31262
31263 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
31264
31265         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
31266         statement, to work around an HP-UX 10.20 compiler bug reported by
31267         Peter O'Gorman.
31268
31269 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
31270
31271         * modules/savedir (Depends-on): Add openat.
31272
31273 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
31274
31275         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
31276         (uintmax_t) [defined uintmax_t]: Do not declare.
31277         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
31278         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
31279         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
31280         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
31281         sake of portability to weird hosts that C allows (though we don't
31282         know of any practical examples).
31283
31284         * lib/savedir.h (fdsavedir): New decl.
31285         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
31286         contains most of the former guts of savedir.
31287         (savedir): Use savedirstream.
31288         Include "openat.h".
31289
31290 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
31291
31292         * modules/obstack (Files): Add m4/ulonglong.m4.
31293         Problem reported by Davide Angelocola.
31294
31295 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
31296
31297         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
31298         coreutils no longer futzes with rounding modes.
31299
31300 2005-11-14  Jim Meyering  <jim@meyering.net>
31301
31302         * lib/mkstemp-safer.c: Include <config.h>, required for possible
31303         replacement of mkstemp.
31304
31305 2005-11-10  Simon Josefsson  <jas@extundo.com>
31306
31307         * lib/readline.c: Remove EOL.
31308
31309 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
31310
31311         * modules/gethrxtime (Depends-on): Add gettime.
31312
31313 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
31314
31315         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
31316         or gettimeofday; no longer needed.
31317
31318 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
31319
31320         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
31321         time business.
31322         (gethrxtime) [! (HAVE_NANOUPTIME
31323         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
31324         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
31325         our own approximation.
31326
31327 2005-11-08  Eric Blake  <ebb9@byu.net>
31328
31329         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
31330
31331 2005-11-08  Eric Blake  <ebb9@byu.net>
31332
31333         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
31334
31335 2005-11-04  Bruno Haible  <bruno@clisp.org>
31336
31337         * gnulib-tool: Implement --update mode.
31338
31339 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
31340
31341         Fix porting problem reported by Theodoros V. Kalamatianos.
31342         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
31343         Don't assume that futimes failing means we must fail.
31344
31345 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
31346
31347         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
31348         variables to suggest the intended function of the PATH_MAX check.
31349
31350 2005-10-30  Kean Johnston  <jkj@sco.com>
31351
31352         Trivial changes to support SCO systems.
31353         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
31354         as PATH_MAX.
31355         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
31356         where __ptr is null when no I/O is pending.
31357
31358 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
31359
31360         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
31361         leave errno alone.  Problem reported by Dmitry V. Levin.
31362
31363 2005-10-28  Simon Josefsson  <jas@extundo.com>
31364
31365         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
31366         Test more.
31367
31368         * tests/test-gc-md2.c, tests/test-md2.c: New files.
31369
31370         * modules/md2, modules/md2-tests: New files.
31371
31372 2005-10-28  Simon Josefsson  <jas@extundo.com>
31373
31374         * m4/inet_ntop.m4: More tests.
31375
31376         * m4/gc-md2.m4, md2.m4: New file.
31377
31378 2005-10-28  Simon Josefsson  <jas@extundo.com>
31379
31380         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
31381         "restrict" keywords, as per POSIX.  Protect the function
31382         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
31383         Don't use K&R prototypes.  Check the sprintf return values.
31384         Re-define EAFNOSUPPORT if not present.  Indent.
31385
31386         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
31387         suggested by Bruno Haible <bruno@clisp.org>.
31388
31389         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
31390
31391         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
31392
31393         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
31394         libgcrypt).
31395
31396         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
31397
31398         * lib/md2.h, lib/md2.c: New files.
31399
31400 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
31401
31402         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
31403         errno alone.  Problem reported by Frederic Jolliton.
31404
31405 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
31406
31407         * modules/verify (License): Change from GPL to LGPL.  This is a
31408         tiny module and there are apparently near-equivalents that are
31409         under the BSD license.
31410
31411 2005-10-24  Simon Josefsson  <jas@extundo.com>
31412
31413         * modules/sha1: Relicense to LGPL.
31414
31415 2005-10-24  Simon Josefsson  <jas@extundo.com>
31416
31417         * lib/md4.h: Shrink buffer size, now that we changed the type.
31418
31419 2005-10-23  Simon Josefsson  <jas@extundo.com>
31420
31421         * gnulib-tool (func_import): Fix --tests-base.
31422
31423 2005-10-22  Simon Josefsson  <jas@extundo.com>
31424
31425         * modules/arcfour (Depends-on): Need stdint.
31426
31427 2005-10-22  Simon Josefsson  <jas@extundo.com>
31428
31429         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
31430         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
31431
31432 2005-10-22  Simon Josefsson  <jas@extundo.com>
31433
31434         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
31435         suggested by Bruno Haible <bruno@clisp.org>.
31436
31437 2005-10-22  Simon Josefsson  <jas@extundo.com>
31438
31439         * lib/crc.h: Include stddef.h, for size_t.
31440
31441 2005-10-22  Simon Josefsson  <jas@extundo.com>
31442
31443         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
31444         arcfour_context struct (simplify test vector testing in GNU
31445         Shishi).
31446
31447 2005-10-21  Simon Josefsson  <jas@extundo.com>
31448
31449         * modules/des, modules/des-tests: New files.
31450
31451         * modules/gc-des, modules/gc-des-tests: New files.
31452
31453         * tests/test-des.c, tests/test-gc-des.c: New file.
31454
31455 2005-10-21  Simon Josefsson  <jas@extundo.com>
31456
31457         * modules/arctwo, modules/arctwo-tests: New files.
31458
31459         * tests/test-arctwo.c: New file.
31460
31461         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
31462
31463         * tests/test-gc-arctwo.c: New file.
31464
31465 2005-10-21  Simon Josefsson  <jas@extundo.com>
31466
31467         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
31468         Bruno Haible <bruno@clisp.org>.
31469
31470         * m4/gc-des.m4: New file.
31471
31472 2005-10-21  Simon Josefsson  <jas@extundo.com>
31473
31474         * m4/arctwo.m4: New file.
31475
31476         * m4/gc-arctwo.m4: New file.
31477
31478 2005-10-21  Simon Josefsson  <jas@extundo.com>
31479
31480         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
31481         block.
31482
31483 2005-10-21  Simon Josefsson  <jas@extundo.com>
31484
31485         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
31486         <bruno@clisp.org>.
31487
31488         * lib/hmac-sha1.c (hmac_sha1): Likewise.
31489
31490         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
31491         Bruno Haible <bruno@clisp.org>.
31492
31493         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
31494         <bruno@clisp.org>.
31495
31496 2005-10-21  Simon Josefsson  <jas@extundo.com>
31497
31498         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
31499
31500 2005-10-21  Simon Josefsson  <jas@extundo.com>
31501
31502         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
31503
31504 2005-10-21  Simon Josefsson  <jas@extundo.com>
31505
31506         * lib/des.h, lib/des.c: New files.
31507
31508         * lib/gc-gnulib.c: Support DES.c
31509
31510 2005-10-21  Simon Josefsson  <jas@extundo.com>
31511
31512         * lib/arctwo.h, lib/arctwo.c: New files.
31513
31514         * lib/gc-gnulib.c: Support ARCTWO.
31515
31516 2005-10-21  Simon Josefsson  <jas@extundo.com>
31517
31518         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
31519         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31520
31521 2005-10-21  Simon Josefsson  <jas@extundo.com>
31522
31523         * gnulib-tool (func_import, func_create_testdir): Define automake
31524         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
31525         Makefile.am snippet),
31526         suggested by Bruno Haible <bruno@clisp.org>.
31527
31528         * modules/gc (Makefile.am): Use it.
31529
31530 2005-10-21  Bruno Haible  <bruno@clisp.org>
31531
31532         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
31533         patch.
31534
31535 2005-10-19  Simon Josefsson  <jas@extundo.com>
31536
31537         * tests/test-gc-rijndael.c: New file.
31538
31539         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
31540
31541 2005-10-19  Simon Josefsson  <jas@extundo.com>
31542
31543         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
31544         interface too.
31545
31546 2005-10-19  Simon Josefsson  <jas@extundo.com>
31547
31548         * tests/test-gc-arcfour.c: New file.
31549
31550         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
31551
31552 2005-10-19  Simon Josefsson  <jas@extundo.com>
31553
31554         * modules/gc-md4, modules/gc-md4-tests: New file.
31555
31556         * tests/test-gc-md4.c: New file.
31557
31558 2005-10-19  Simon Josefsson  <jas@extundo.com>
31559
31560         * m4/gc-md4.m4: New file.
31561
31562 2005-10-19  Simon Josefsson  <jas@extundo.com>
31563
31564         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
31565         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
31566         <kasal@ucw.cz>.
31567
31568 2005-10-19  Simon Josefsson  <jas@extundo.com>
31569
31570         * m4/gc-arcfour.m4: New file.
31571
31572         * m4/gc-rijndael.m4: New file.
31573
31574 2005-10-19  Simon Josefsson  <jas@extundo.com>
31575
31576         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
31577
31578 2005-10-19  Simon Josefsson  <jas@extundo.com>
31579
31580         * lib/gc-gnulib.c: Support ARCFOUR.
31581
31582 2005-10-19  Simon Josefsson  <jas@extundo.com>
31583
31584         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
31585         support.
31586
31587         * lib/gc.h: Add ECB enum type.
31588
31589         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
31590
31591 2005-10-18  Simon Josefsson  <jas@extundo.com>
31592
31593         * tests/test-md5.c: New file.
31594
31595         * modules/md5-tests: New file.
31596
31597 2005-10-18  Simon Josefsson  <jas@extundo.com>
31598
31599         * tests/test-md4.c: New file.
31600
31601         * modules/md4, modules/md4-tests: New files.
31602
31603 2005-10-18  Simon Josefsson  <jas@extundo.com>
31604
31605         * m4/md4.m4: New file.
31606
31607 2005-10-18  Simon Josefsson  <jas@extundo.com>
31608
31609         * lib/md4.h, lib/md4.c: New files, based on md5.?.
31610
31611 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
31612
31613         * gnulib-tool (func_create_testdir): Omit the second check whether
31614         BUILT_SOURCES in nonempty.
31615
31616 2005-10-17  Simon Josefsson  <jas@extundo.com>
31617
31618         * tests/test-rijndael.c: New file.
31619
31620 2005-10-17  Simon Josefsson  <jas@extundo.com>
31621
31622         * modules/sha1: Depend on stdint instead of md5.
31623
31624         * modules/md5: Depend on stdint, remove uint32_t.
31625
31626 2005-10-17  Simon Josefsson  <jas@extundo.com>
31627
31628         * modules/gc-sha1-tests: New file.
31629
31630         * tests/test-gc-sha1.c: New file.
31631
31632 2005-10-17  Simon Josefsson  <jas@extundo.com>
31633
31634         * m4/md5.m4: Remove call to uint32_t.m4.
31635
31636 2005-10-17  Simon Josefsson  <jas@extundo.com>
31637
31638         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
31639
31640         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
31641         md5.h.
31642
31643         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
31644
31645         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
31646
31647 2005-10-17  Simon Josefsson  <jas@extundo.com>
31648
31649         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
31650
31651 2005-10-17  Simon Josefsson  <jas@extundo.com>
31652
31653         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
31654
31655 2005-10-17  Simon Josefsson  <jas@extundo.com>
31656
31657         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
31658
31659         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
31660
31661 2005-10-17  Bruno Haible  <bruno@clisp.org>
31662
31663         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
31664         that it can also be used in a test.
31665
31666 2005-10-16  Bruno Haible  <bruno@clisp.org>
31667
31668         * gnulib-tool (func_emit_tests_Makefile_am): Also define
31669         TESTS_ENVIRONMENT, so that individual tests can augment it.
31670
31671         * gnulib-tool (func_create_testdir): Use an intermediate target for
31672         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
31673         macros, like $(ALLOCA_H), which cannot be passed through the command
31674         line.
31675
31676 2005-10-15  Simon Josefsson  <jas@extundo.com>
31677
31678         * modules/rijndael-tests: New file.
31679
31680         * modules/rijndael: New file.
31681
31682 2005-10-15  Simon Josefsson  <jas@extundo.com>
31683
31684         * m4/rijndael.m4: New file.
31685
31686 2005-10-15  Simon Josefsson  <jas@extundo.com>
31687
31688         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
31689
31690         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
31691
31692 2005-10-14  Simon Josefsson  <jas@extundo.com>
31693
31694         * tests/test-arcfour.c: New file.
31695
31696         * modules/arcfour, modules/arcfour-tests: New files.
31697
31698 2005-10-14  Simon Josefsson  <jas@extundo.com>
31699
31700         * m4/arcfour.m4: New file.
31701
31702 2005-10-14  Simon Josefsson  <jas@extundo.com>
31703
31704         * lib/arcfour.h, lib/arcfour.c: New files.
31705
31706 2005-10-14  Roland McGrath  <roland@redhat.com>
31707
31708         Import from libc.  [BZ #1331]
31709         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
31710         macro argument.
31711         Reported by Matej Vela <vela@debian.org>.
31712
31713 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
31714
31715         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
31716         include <wchar.h>; no longer needed.
31717
31718 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
31719
31720         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
31721
31722 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
31723         and  Ulrich Drepper  <drepper@redhat.com>
31724
31725         Import from libc.
31726         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
31727         instead of inline stream orientation test and two separate
31728         function calls.  Pay no attention to USE_IN_LIBIO.
31729
31730 2005-10-13  Simon Josefsson  <jas@extundo.com>
31731
31732         * modules/gc-hmac-md5-tests: New file.
31733
31734         * tests/test-gc-hmac-sha1.c: New file.
31735
31736         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
31737
31738         * modules/gc-hmac-md5-tests: New file.
31739
31740         * tests/test-gc-md5.c: New file.
31741
31742         * modules/gc-md5-tests: New file.
31743
31744 2005-10-13  Simon Josefsson  <jas@extundo.com>
31745
31746         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
31747         Move memory allocation outside of loop.
31748
31749 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
31750
31751         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
31752         intermediate directory is in a read-only file system.  Problem
31753         reported by Eric Blake.
31754
31755 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
31756
31757         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
31758
31759 2005-10-12  Simon Josefsson  <jas@extundo.com>
31760
31761         * tests/test-hmac-sha1.c: New file.
31762
31763         * modules/hmac-sha1-tests: New file.
31764
31765         * modules/hmac-sha1: New file.
31766
31767 2005-10-12  Simon Josefsson  <jas@extundo.com>
31768
31769         * modules/gc-sha1: New file.
31770
31771 2005-10-12  Simon Josefsson  <jas@extundo.com>
31772
31773         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
31774
31775         * tests/test-gc-pbkdf2-sha1.c: New file.
31776
31777 2005-10-12  Simon Josefsson  <jas@extundo.com>
31778
31779         * modules/gc-md5, modules/gc-hmac-md5: New files.
31780
31781         * modules/gc (Files): Remove md5, memxor and hmac files.
31782
31783 2005-10-12  Simon Josefsson  <jas@extundo.com>
31784
31785         * m4/gc-pbkdf2-sha1.m4: New file.
31786
31787         * m4/gc-hmac-sha1.m4: New file.
31788
31789         * m4/gc-sha1: New file.
31790
31791         * m4/hmac-sha1.m4: New file.
31792
31793 2005-10-12  Simon Josefsson  <jas@extundo.com>
31794
31795         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
31796
31797         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
31798
31799 2005-10-12  Simon Josefsson  <jas@extundo.com>
31800
31801         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
31802         suggested by Bruno Haible <bruno@clisp.org>.
31803
31804 2005-10-12  Simon Josefsson  <jas@extundo.com>
31805
31806         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
31807
31808 2005-10-12  Simon Josefsson  <jas@extundo.com>
31809
31810         * lib/gc-pbkdf2-sha1.c: New file.
31811
31812         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
31813
31814 2005-10-12  Simon Josefsson  <jas@extundo.com>
31815
31816         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
31817
31818         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
31819
31820 2005-10-12  Simon Josefsson  <jas@extundo.com>
31821
31822         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
31823         GC_USE_HMAC_MD5, respectively.
31824
31825         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
31826         (gc_md5): Fix typo.
31827
31828         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
31829
31830         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
31831
31832         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
31833
31834 2005-10-12  Bruno Haible  <bruno@clisp.org>
31835
31836         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
31837         Reported by Stepan Kasal <kasal@ucw.cz>.
31838
31839 2005-10-11  Simon Josefsson  <jas@extundo.com>
31840
31841         * tests/test-crc.c: New file.
31842
31843         * modules/crc, modules/crc-tests: New files.
31844
31845 2005-10-11  Simon Josefsson  <jas@extundo.com>
31846
31847         * m4/crc.m4: New file.
31848
31849 2005-10-11  Simon Josefsson  <jas@extundo.com>
31850
31851         * lib/gc.h: Add gc_hash and gc_hash_buffer.
31852
31853         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
31854
31855         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
31856
31857 2005-10-11  Simon Josefsson  <jas@extundo.com>
31858
31859         * lib/crc.h, lib/crc.c: New files.
31860
31861         * lib/gc.h (gc_hash_buffer): Add doc.
31862
31863 2005-10-11  Bruno Haible  <bruno@clisp.org>
31864
31865         * modules/c-strcasestr: New file.
31866         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
31867
31868 2005-10-11  Bruno Haible  <bruno@clisp.org>
31869
31870         * modules/c-strcase: New file.
31871         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
31872
31873 2005-10-11  Bruno Haible  <bruno@clisp.org>
31874
31875         * lib/strcasecmp.c: Include limits.h.
31876         (strcasecmp): Avoid integer overflow on exotic platforms.
31877         * lib/strncasecmp.c: Include limits.h.
31878         (strncasecmp): Avoid integer overflow on exotic platforms.
31879         Reported by Paul Eggert.
31880
31881 2005-10-11  Bruno Haible  <bruno@clisp.org>
31882
31883         * lib/c-strcasestr.h: New file, from GNU gettext.
31884         * lib/c-strcasestr.c: New file, from GNU gettext.
31885
31886 2005-10-11  Bruno Haible  <bruno@clisp.org>
31887
31888         * lib/c-strcase.h: New file, from GNU gettext.
31889         * lib/c-strcasecmp.c: New file, from GNU gettext.
31890         * lib/c-strncasecmp.c: New file, from GNU gettext.
31891
31892 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
31893
31894         * modules/mempcpy (License): GPL -> LGPL.
31895         * modules/strchrnul (License): Likewise.
31896         * modules/sysexits (License): Likewise.
31897
31898 2005-10-08  Simon Josefsson  <jas@extundo.com>
31899
31900         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
31901
31902 2005-10-07  Simon Josefsson  <jas@extundo.com>
31903
31904         * m4/memxor.m4: Remove gl_C_RESTRICT call.
31905
31906 2005-10-06  Simon Josefsson  <jas@extundo.com>
31907
31908         * tests/test-hmac-md5.c: New file.
31909
31910         * modules/hmac-md5-tests: New file.
31911
31912         * modules/hmac-md5: New file.
31913
31914 2005-10-06  Simon Josefsson  <jas@extundo.com>
31915
31916         * m4/hmac-md5.m4: New file.
31917
31918         * m4/memxor.m4: Require gl_C_RESTRICT.
31919
31920 2005-10-06  Simon Josefsson  <jas@extundo.com>
31921
31922         * lib/memxor.c (memxor): Avoid casts and warnings.
31923
31924 2005-10-06  Simon Josefsson  <jas@extundo.com>
31925
31926         * lib/hmac-md5.c: New file.
31927
31928         * lib/hmac.h: New file.
31929
31930 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
31931
31932         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
31933         promotes to int, not unsigned int, to catch the AIX 5.3
31934         compiler bug.
31935
31936 2005-10-05  Simon Josefsson  <jas@extundo.com>
31937
31938         * modules/memxor: New file.
31939
31940         * modules/iconv (Files): Move config.rpath to havelib, it is used
31941         there.
31942
31943         * modules/havelib (Files): Add config.rpath.
31944
31945 2005-10-05  Simon Josefsson  <jas@extundo.com>
31946
31947         * m4/memxor.m4: New file.
31948
31949 2005-10-05  Simon Josefsson  <jas@extundo.com>
31950
31951         * lib/memxor.c (memxor): Fix compiler error.
31952
31953         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
31954         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
31955
31956         * lib/memxor.h, lib/memxor.c: New files.
31957
31958         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
31959         we assume all systems have it, suggested by Jim Meyering
31960         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
31961         any systems lack sys/socket.h; mingw32 is known to lack it, but we
31962         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
31963         same reasons.
31964
31965 2005-10-05  Simon Josefsson  <jas@extundo.com>
31966
31967         * config/srclist.txt: Add glibc bug 1423 for md5.h.
31968
31969 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
31970
31971         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
31972         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
31973         needed, since the source code now assumes these .h files.
31974
31975 2005-10-05  Derek Price  <derek@ximbiot.com>
31976
31977         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
31978
31979 2005-10-05  Bruno Haible  <bruno@clisp.org>
31980
31981         * modules/stdint (License): Change to LGPL.
31982
31983 2005-10-04  Simon Josefsson  <jas@extundo.com>
31984
31985         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
31986         D. Baushke" <mdb@gnu.org>.
31987
31988 2005-10-04  Bruno Haible  <bruno@clisp.org>
31989
31990         * lib/verify.h (verify_true): Provide alternative definition for C++.
31991
31992 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
31993
31994         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
31995         (SSIZE_MAX): New macro, if not already defined.
31996         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
31997         than 2 GiB.
31998
31999 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
32000
32001         Sync from coreutils.
32002         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
32003         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
32004         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
32005         ULLONG_MAX doesn't work with 2.7.2.1.
32006
32007 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
32008
32009         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
32010         From Ben Pfaff.
32011
32012         * modules/exclude (Depends-on): Depend on verify.
32013         * modules/strtoimax (Depends-on): Likewise.
32014         * modules/utimecmp (Depends-on): Likewise.
32015
32016 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
32017
32018         * lib/exclude.c: Include verify.h.
32019         (verify): Remove.  All callers changed to use verify.h's version.
32020         * lib/strtoimax.c: Likewise.
32021         * lib/utimecmp.c: Likewis.e
32022
32023         Sync from coreutils.
32024         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
32025         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
32026         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
32027         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
32028         bother returning ENOSYS if settimeofday or stime fails; just let
32029         them return whatever errno they want to return.
32030         * lib/utimens.c: Include unistd.h, for dup2.
32031         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
32032         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
32033
32034 2005-10-02  Jim Meyering  <jim@meyering.net>
32035
32036         Sync from coreutils.
32037         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
32038         from glibc-2.2.5 that fails for read-only files.
32039
32040 2005-10-02  Jim Meyering  <jim@meyering.net>
32041
32042         Sync from coreutils.
32043         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
32044         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
32045         `#if HAVE_CONFIG_H'.
32046         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
32047         Remove AT_FDCWD test.
32048         Do not consume the fd unless successful.
32049         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
32050         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
32051         block, so that we don't even try to compile it if settimeofday is
32052         available.  This works around a compilation failure on OSF1 V5.1,
32053         due to stime requiring a `long int*' while tv_sec is `int'.
32054
32055 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
32056
32057         Sync from coreutils.
32058         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
32059         against `yes', rather than just testing for nonempty.
32060
32061 2005-10-01  Simon Josefsson  <jas@extundo.com>
32062
32063         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
32064         and Darwin.
32065
32066         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
32067         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
32068         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
32069         freeaddrinfo and gai_strerror are declared by the POSIX headers.
32070         Check if struct addrinfo is declared.
32071
32072 2005-10-01  Simon Josefsson  <jas@extundo.com>
32073
32074         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
32075         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
32076         AI_* and EAI_* definitions.  Protect function declarations.
32077
32078 2005-10-01  Jim Meyering  <jim@meyering.net>
32079
32080         Sync from coreutils.
32081
32082         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
32083         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
32084         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
32085         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
32086         in the inet and nsl libraries.  Required on Solaris 5.7.
32087
32088 2005-10-01  Jim Meyering  <jim@meyering.net>
32089
32090         Sync from coreutils.
32091         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
32092         in the inet and nsl libraries.  Required on Solaris 5.7.
32093
32094 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
32095
32096         * lib/getdelim.c (getdelim): Remove unused variables.
32097
32098 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
32099
32100         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
32101         so that the code works even with ancient cpp.  Portability problem
32102         with GCC 2.7.2.1 reported by Thomas M.Ott.
32103
32104 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
32105
32106         * modules/regex (Depends-on): Add strcase.
32107
32108         * modules/gethostname (Licence): Change from GPL to LGPL, since
32109         gethostname.c is a trivial implementation of a standard library
32110         function.
32111         * modules/poll (License): Change from GPL to LGPL, since it's
32112         derived from LGPL code.
32113
32114 2005-09-27  Jim Meyering  <jim@meyering.net>
32115
32116         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
32117         HAVE_CONFIG_H.
32118
32119         * lib/intprops.h (signed_type_or_expr__): Define.
32120         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
32121         for unsigned types.
32122
32123 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
32124
32125         * lib/verify.h (verify_expr): Remove, replacing with:
32126         (verify_true): New macro that returns true instead of void.
32127         (verify_type__): Remove.
32128         (verify): Use verify_true rather than verify_type__.
32129
32130 2005-09-26  Bruno Haible  <bruno@clisp.org>
32131
32132         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
32133         is necessary.
32134         (lib_SOURCES): Remove mbchar.c.
32135         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
32136         (Files): Add m4/mbrtowc.m4.
32137         * modules/mbiter: Likewise.
32138         * modules/mbuiter: Likewise.
32139
32140 2005-09-26  Bruno Haible  <bruno@clisp.org>
32141
32142         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
32143         compile mbchar.c if they are not both present.
32144         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
32145         * m4/mbiter.m4 (gl_MBITER): Likewise.
32146         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
32147         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
32148         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
32149
32150 2005-09-25  Jim Meyering  <jim@meyering.net>
32151
32152         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
32153         also uses socklen_t.
32154
32155 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
32156
32157         * lib/utimens.c (ENOSYS): Define if not already defined.
32158         (futimens): Support having a null PATH if the file descriptor
32159         is nonnegative.
32160
32161         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
32162         Remove.
32163         (__attribute): Define to empty unless GCC 3.1 or later.
32164         This works around a core dump on OpenBSD 3.4, which has GCC
32165         2.95.3, which dumps core when given __attribute__(()).  It also
32166         simplifies other tests, since we really don't want to bother with
32167         worrying about which ancient version of GCC supported what.
32168         Original problem reported by Yoann Vandoorselaere, with part of
32169         the fix suggested by Derek Price.
32170
32171 2005-09-24  Jim Meyering  <jim@meyering.net>
32172
32173         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
32174         so we can once again use a positive bitfield width of 1 -- now we
32175         don't have to explain why we were using a bitfield width of 2.
32176
32177 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
32178
32179         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
32180         and similarly for the other external symbols.  Problem reported
32181         by James Gallager.
32182
32183         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
32184         bug reported by Jim Meyering.
32185
32186         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
32187         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
32188         not needed, since socklen is a prerequisite module.
32189
32190 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
32191
32192         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
32193         Problem reported by Eric Blake.
32194         (getaddrinfo): Initialize se so that it's not garbage.
32195         Redo internal storage allocation so that it doesn't make unportable
32196         assumptions about alignment.
32197         Fix a memory leak.
32198
32199         * lib/utimens.c (futimens): Use futimesat if available.
32200         Prefer it to futimes since it doesn't have the futimes bug.
32201
32202         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
32203         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
32204         Instead, declare a function that returns a pointer to an array,
32205         and use verify_type__ to declare the size of the array.
32206         Problem and germ of a solution reported by Bruno Haible.
32207         (verify_type__): Use 2, not 1, for bitfield size, to avoid
32208         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
32209
32210 2005-09-23  Jim Meyering  <jim@meyering.net>
32211
32212         Sync from coreutils.
32213         Correct build failure (socklen_t not defined) on at least
32214         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
32215         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
32216
32217 2005-09-23  Jim Meyering  <jim@meyering.net>
32218
32219         * modules/getaddrinfo (Depends-on): Add socklen.
32220
32221 2005-09-23  Bruno Haible  <bruno@clisp.org>
32222
32223         * tests/test-verify.c: New file.
32224
32225 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
32226
32227         Sync from coreutils.
32228
32229         * modules/argmatch (Depends-on): Add verify.
32230         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
32231         unistd-safer.
32232         * modules/save-cwd (Depends-on): Likewise.
32233
32234         * modules/openat (Files): Add lib/openat-die.c.
32235         (Depends-on): Remove error, exitfail.
32236         Add dirname.
32237
32238         * modules/verify: New file.
32239         * MODULES.html.sh (Diagnostics <assert.h>): New section,
32240         with "verify" module.
32241
32242 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
32243
32244         Sync from coreutils.
32245
32246         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
32247         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
32248         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
32249         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
32250         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
32251         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
32252         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
32253         Don't bother checking for string.h, stdlib.h, unistd.h.
32254         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
32255         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
32256         module's job.
32257         * m4/jm-macros.m4 (gl_MACROS): Likewise.
32258         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
32259
32260         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
32261         (gl_GETDATE): Use it.
32262
32263         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
32264
32265 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
32266
32267         Sync from coreutils.
32268
32269         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
32270         stat-time.h.
32271         * lib/argmatch.h: Include verify.h
32272         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
32273         (ARGMATCH_ASSERT): Remove; unused.
32274         * lib/canonicalize.c: Assume STDC_HEADERS.
32275         * lib/exclude.c: Include "strcase.h".
32276         * lib/regex_internal.h [!defined _LIBC]: Likewise.
32277         * lib/getusershell.c: Include stdio--.h rather than stdio.h
32278         and stdio-safer.h.
32279         (getusershell): Call fopen, not fopen_safer.
32280         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
32281         Do not include unistd-safer.h.
32282         (save_cwd): Don't call fd_safer; no longer needed
32283         now that we include fcntl--.h.
32284
32285         * lib/getdate.y (relative_time): New type.
32286         (RELATIVE_TIME_0): New constant.
32287         (parser_control): Use relative_time instead of doing it ourselves.
32288         (%union): Add new relative_time rel member.
32289         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
32290         Now typeless.
32291         (relunit, relunit_snumber): Now of type rel.
32292         (zone, rel, relunit, get_date): Adjust to above changes.
32293
32294         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
32295         Do not include unistd-safer.h.
32296         (getloadavg): Don't call fd_safer; no longer needed
32297         now that we include fcntl--.h.
32298
32299         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
32300         (make_dir_parents): Treat ENOSYS like EEXIST.
32301
32302         Improve quality of diagnostics on restore_cwd failure.
32303         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
32304         (make_dir_parents): Last arg is now int * (for errno), not bool *.
32305         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
32306         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
32307         each time through the loop.  Do not diagnose restore_cwd failure;
32308         that is the caller's job (and perhaps the caller does not care).
32309
32310         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
32311         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
32312         If the file already exists but is not a directory, don't bother
32313         to try to make its parents.
32314         Close potential file descriptor leak if we can't chdir("/") (!).
32315         Don't always return true if chdir($PWD) fails; return true only
32316         if the requested action was done successfully (except for the
32317         chdir($PWD)).
32318         Don't log final directory unless we actually made it.
32319         Refactor to avoid duplicate code to fix up permissions.
32320         Don't attempt to fix up parent permissions if chdir($PWD) fails.
32321
32322         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
32323         to make it a bit faster and (I hope) clearer.
32324         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
32325         Fix bug in formats like %2N.
32326
32327         * lib/verify.h: New file.
32328
32329 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
32330
32331         Sync from coreutils.
32332         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
32333
32334 2005-09-22  Jim Meyering  <jim@meyering.net>
32335
32336         Sync from coreutils.
32337
32338         * m4/lstat.m4 (gl_FUNC_LSTAT):
32339         Use AC_LIBSOURCES to require lstat.c and lstat.h.
32340         Remove obsolete comment.
32341         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
32342         * m4/xstrtod.m4: Likewise.
32343
32344         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
32345
32346 2005-09-22  Jim Meyering  <jim@meyering.net>
32347
32348         Sync from coreutils.
32349
32350         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
32351
32352         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
32353         the .tm_year member, since otherwise gcc-4.0 would now warn about
32354         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
32355
32356         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
32357         order to avoid an unsuppressible warning from gcc on 64-bit systems.
32358
32359         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
32360         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
32361         when run in a time zone for which daylight savings time is in effect
32362         for the starting date.
32363
32364         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
32365         stop us from restricting permissions of just-created absolute-named
32366         directories.
32367         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
32368         to restore initial working directory.
32369         * lib/mkdir-p.c (make_dir_parents): New parameter:
32370         different_working_dir, to tell caller if/when we change the working
32371         directory and are unable to return to the initial one.
32372         * lib/mkdir-p.h (make_dir_parents): Update prototype.
32373         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
32374         `return false'.  This fixes a bug introduced on 2004-07-30.
32375
32376         * lib/openat.c (fdopendir): Be sure to close the supplied
32377         file descriptor before returning.  This makes our replacement
32378         implementation a little closer to Solaris's, where fdopendir
32379         ties the file descriptor to the returned DIR* pointer.
32380         * lib/openat.c (unlinkat): New function.
32381         * lib/openat.h (unlinkat): Add prototype.
32382         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
32383         (openat_restore_fail): Rename from openat_restore_die.
32384         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
32385
32386         Provide an alternative to exiting immediately upon save_cwd or
32387         restore_cwd failure.  Now, an application can arrange e.g.,
32388         to perform a longjump in that case.
32389         * lib/openat.c: Include dirname.h.
32390         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
32391         (rpl_openat, fdopendir, fstatat): Call openat_save_die
32392         and openat_restore_die rather than calling error directly.
32393         Don't include "error.h" or "exitfail.h"; they're no longer needed.
32394
32395         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
32396         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
32397         define.
32398
32399         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
32400         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
32401                             int utc, int nanoseconds);
32402         Background:
32403         date should not have to allocate a megabyte of virtual memory to
32404         handle a format argument like +%1048575T.  When implemented with
32405         strftime, it must allocate such a buffer, use strftime to fill it
32406         in, print it, then free it.
32407         With fprintftime, it simply prints everything and exits.
32408         With no need for memory allocation, that's one fewer way to fail.
32409         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
32410         optional field width, not before, so we accept %9:z, not %:9z.
32411         (my_strftime): Be sure to use L_('x') for literals.
32412
32413         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
32414         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
32415         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
32416         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
32417         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
32418         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
32419         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
32420         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
32421         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
32422         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
32423         * lib/xgethostname.c, lib/xreadlink.c:
32424         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
32425
32426         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
32427         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
32428         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
32429         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
32430         and don't include <sys/file.h>).
32431
32432 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
32433
32434         Sync from coreutils.
32435
32436         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
32437         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
32438         [!LDAV_DONE]: Avoid unused variable warning.
32439
32440 2005-09-21  Bruno Haible  <bruno@clisp.org>
32441
32442         * lib/unicodeio.h (unicode_to_mb): New declaration.
32443
32444 2005-09-20  Derek Price  <derek@ximbiot.com>
32445
32446         * lib/getaddrinfo.c: Don't include <netdb.h> included from
32447         getaddrinfo.h.
32448
32449 2005-09-20  Bruno Haible  <bruno@clisp.org>
32450
32451         * gnulib-tool: Remove trailing slashes from the values specified for
32452         --source-base, --m4-base, --tests-base, --aux-dir.
32453         Suggested by Simon Josefsson <jas@extundo.com>.
32454
32455 2005-09-20  Bruno Haible  <bruno@clisp.org>
32456
32457         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
32458         func_modules_to_filelist, func_import, func_create_testdir): Make all
32459         sorting results locale-independent, so that gnulib-cache.m4 doesn't
32460         change when gnulib-tool is invoked in a different locale.
32461
32462 2005-09-19  Simon Josefsson  <jas@extundo.com>
32463
32464         * m4/socklen.m4: Fix typo.
32465
32466 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32467
32468         Use a consistent style for including <config.h>.
32469         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
32470         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
32471         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
32472         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
32473         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
32474         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
32475         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
32476         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
32477         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
32478         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
32479         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
32480         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
32481         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
32482         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
32483         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
32484         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
32485         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
32486         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
32487         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
32488         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
32489         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
32490         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
32491         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
32492         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
32493         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
32494         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
32495         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
32496         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
32497         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
32498         lib/xstrtoumax.c, lib/yesno.c:
32499         Standardize inclusion of config.h.
32500         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
32501         lib/inttostr.h:  Removed inclusion of config.h from header files.
32502         * lib/inttostr.c:  Adjusted in-tree users.
32503         * lib/timespec.h: Remove superfluous warning to include config.h.
32504         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
32505         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
32506         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
32507         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
32508         config.h with HAVE_CONFIG_H.
32509
32510 2005-09-19  Jim Meyering  <jim@meyering.net>
32511
32512         * modules/pathmax (License): Change to LGPL.
32513
32514 2005-09-19  Derek Price  <derek@ximbiot.com>
32515
32516         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
32517
32518 2005-09-19  Bruno Haible  <bruno@clisp.org>
32519
32520         * gnulib-tool (import): Provide default for --tests-base.
32521
32522 2005-09-19  Bruno Haible  <bruno@clisp.org>
32523
32524         * doc/quote.texi: New file, extracted from gnulib.texi.
32525         * doc/ctime.texi: New file, extracted from gnulib.texi.
32526         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
32527         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
32528         * doc/gnulib.texi: Include them.
32529
32530 2005-09-18  Bruno Haible  <bruno@clisp.org>
32531
32532         Portability fix.
32533         * gnulib-tool (func_readlink): New function.
32534         (func_ln_if_changed): Use it.
32535
32536 2005-09-18  Bruno Haible  <bruno@clisp.org>
32537
32538         * gnulib-tool: Support --with-tests also with --import.
32539         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
32540         (func_import): Use variables $testsbase and $inctests. Emit a
32541         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
32542         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
32543         SUBDIRS += $testsdir.
32544         (func_create_testdir): Update.
32545
32546 2005-09-18  Bruno Haible  <bruno@clisp.org>
32547
32548         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
32549         instead of $dry_run.
32550         (func_cp_if_changed, func_mv_if_changed): Remove functions.
32551         (func_ln_if_changed): Don't handle dry-run here.
32552         (func_import): In dry-run mode, detect more precisely which actions
32553         would be performed, and don't use "...ing" verbs.
32554
32555 2005-09-18  Bruno Haible  <bruno@clisp.org>
32556
32557         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
32558         (func_import): Use join on two temporary files instead of three nested
32559         loops, in order to determine which files are new or old.
32560
32561 2005-09-18  Bruno Haible  <bruno@clisp.org>
32562
32563         * gnulib-tool (func_import): Comment out code that spits out the
32564         new files with --dry-run.
32565
32566 2005-09-18  Bruno Haible  <bruno@clisp.org>
32567
32568         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
32569
32570 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
32571
32572         * lib/stat-time.h: New file.
32573         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
32574         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
32575         in a different way.
32576         (timespec_cmp): New function.
32577         * lib/utimecmp.c: Include stat-time.h.
32578         (SYSCALL_RESOLUTION): Depend on whether various struct stat
32579         members exist, not on the obsolescent ST_MTIM_NSEC.
32580         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
32581
32582 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
32583
32584         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
32585
32586 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
32587
32588         * MODULES.html.sh (File system functions): Add stat-time.
32589         * modules/stat-time: New file.
32590         * modules/timespec (Files): Remove m4/st_mtim.m4; this
32591         is now done in a different way, by the stat-time module.
32592         * modules/utimecmp (Depends-on): Add stat-time.
32593
32594 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
32595
32596         * m4/st_mtim.m4: Remove.  Superseded by...
32597         * m4/stat-time.m4: New file.
32598         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
32599         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
32600
32601 2005-09-15  Derek Price  <derek@ximbiot.com>
32602
32603         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
32604
32605 2005-09-15  Derek Price  <derek@ximbiot.com>
32606
32607         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
32608         * lib/regex_internal.c: Ditto, using this...
32609         (__GNUC_PREREQ): ...new macro.
32610         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
32611         using...
32612         (__GNUC_PREREQ): ...this new macro.
32613
32614         * lib/strstr.h: Include string.h. Define strstr as a macro here.
32615
32616 2005-09-15  Derek Price  <derek@ximbiot.com>
32617             Paul Eggert  <eggert@cs.ucla.edu>
32618
32619         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
32620         changes, consolidating in...
32621         * lib/regex_internal.h: ...this file.
32622
32623 2005-09-13  Jim Meyering  <jim@meyering.net>
32624
32625         * lib/canon-host.c: Filter through gnu indent and reword comments
32626         slightly.
32627         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
32628
32629 2005-09-13  Derek Price  <derek@ximbiot.com>
32630
32631         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
32632         failure.
32633         Reported by Jim Meyering  <jim@meyering.net>.
32634
32635 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
32636
32637         * lib/base64.c: Typo.
32638         (base64_encode): Put b64str in initialized data section.
32639
32640 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
32641
32642         Merge glibc and coreutils changes into gnulib, plus a few
32643         extra fixes.
32644         * lib/md5.c: Use #error rather than a string.
32645         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
32646         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
32647         (__attribute__): Define to empty for non recent-GCC.
32648         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
32649         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
32650         Renamed from their non-__ counterparts, with new macros replacing
32651         them if not _LIBC.  Add __THROW attribute.
32652         (rol): Remove.
32653         (struct md5_ctx): Align buffer if using GCC.
32654         * lib/sha1.h (struct sha1_ctx): Likewise.
32655         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
32656         The old name was backwards.
32657         (NOTSWAP): Remove; not used.
32658         (rol): New macro, moved here from md5.h.
32659         (sha1_process_block): Remove a FIXME that doesn't make sense.
32660
32661 2005-09-12  Derek Price  <derek@ximbiot.com>
32662
32663         Return usable errors from canon-host.
32664         * lib/canon-host.h: New file.
32665         * lib/canon-host.c (canon_host): Wrap...
32666         (canon_host_r): ...this new function, which now relies exclusively on
32667         getaddrinfo.
32668         (ch_strerror): New function.
32669         (last_cherror): New global.
32670         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
32671         interface.
32672         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
32673         void *.
32674         (freeaddrinfo): Free ai->ai_canonname when set.
32675
32676 2005-09-12  Derek Price  <derek@ximbiot.com>
32677
32678         Make canon-host require getaddrinfo.
32679         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
32680         AC_LIBSOURCE canon-host.h.  Call...
32681         (gl_PREREQ_CANON_HOST): ...this new function, which requires
32682         gl_GETADDRINFO.
32683         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
32684
32685 2005-09-12  Derek Price  <derek@ximbiot.com>
32686
32687         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
32688         LGPL.
32689         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
32690
32691 2005-09-12  Derek Price  <derek@ximbiot.com>
32692
32693         * lib/gai_strerror.c: Include config.h when available.  Include
32694         getaddrinfo.h before other headers to test interface.
32695         Reported by Larry Jones <lawrence.jones@ugs.com>.
32696
32697 2005-09-12  Derek Price  <derek@ximbiot.com>
32698             Paul Eggert  <eggert@cs.ucla.edu>
32699
32700         * modules/glob (Files): Add glob-libc.h.
32701
32702 2005-09-12  Derek Price  <derek@ximbiot.com>
32703             Paul Eggert  <eggert@cs.ucla.edu>
32704
32705         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
32706         glob_.h, glob-libc.h.
32707         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
32708
32709 2005-09-12  Derek Price  <derek@ximbiot.com>
32710             Paul Eggert  <eggert@cs.ucla.edu>
32711
32712         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
32713         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
32714         protecting things that should be done only in gnulib contexts.
32715         * lib/glob_.h: New file, containing only the glob things needed for
32716         gnulib.
32717         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
32718         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
32719         (glob, globfree, glob_pattern_p): Now defined simply in terms of
32720         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
32721         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
32722         and to respect the namespace rules better.
32723
32724 2005-09-08  Simon Josefsson  <jas@extundo.com>
32725
32726         * modules/socklen: New file.
32727
32728 2005-09-08  Simon Josefsson  <jas@extundo.com>
32729
32730         * m4/socklen.m4: New file.
32731
32732 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
32733
32734         * modules/utimens (Files): Add m4/utimbuf.m4, since
32735         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
32736         Reported by Sergey Poznyakoff.
32737
32738 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
32739
32740         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
32741         definitions, since that's the preferred style in glibc.
32742         Fix a minor spacing issue, and update copyright notice to match
32743         glibc's.
32744
32745 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
32746
32747         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
32748
32749 2005-09-06  Simon Josefsson  <jas@extundo.com>
32750
32751         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
32752         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
32753
32754 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32755
32756         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
32757         warning.
32758
32759 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32760
32761         * config/srclist.txt: Add glibc bug 1302.
32762
32763 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
32764
32765         Change bitset word type from unsigned int to unsigned long int,
32766         as this has better performance on typical 64-bit hosts.
32767         Port bitset code to hosts with unusual word sizes.
32768         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
32769         (build_collating_symbol):
32770         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
32771         argument is a bitset.  This is merely a style issue, but it makes
32772         it clearer that an entire array is expected.
32773         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
32774         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
32775         Port to the case where bitset_word is not the same as unsigned int.
32776         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
32777         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
32778         Likewise.
32779         * lib/regexec.c (check_dst_limits_calc_pos_1,
32780         check_subexp_matching_top):
32781         (build_trtable, group_nodes_into_DFAstates):
32782         Likewise.
32783         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
32784         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
32785         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
32786         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
32787         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
32788         * lib/regcomp.c (optimize_subexps, lower_subexp):
32789         Work even if bitset_word has holes in its bitwise representation.
32790         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
32791         * lib/regexec.c (check_dst_limits_calc_pos_1,
32792         check_subexp_matching_top):
32793         Likewise.
32794         * lib/regex_internal.c (re_string_reconstruct):
32795         Don't assume UCHAR_MAX == 255.
32796         * lib/regex_internal.h (bitset_set_all): Likewise.
32797         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
32798         All uses changed.
32799         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
32800         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
32801         All uses changed.
32802         (BITSET_WORD_MAX): New macro.
32803         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
32804         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
32805         (bitset_empty, bitset_copy):
32806         Prefer sizeof (bitset) to multiplying it out ourselves.
32807         (bitset_not_merge): Remove; unused.
32808         (bitset_contain): Return bool, not unsigned int with one bit on.
32809         All callers changed.
32810         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
32811         alignment than re_node_set; do this by defining a new internal
32812         type struct dests_alloc and using it to allocate memory.
32813
32814 2005-09-05  Bruno Haible  <bruno@clisp.org>
32815
32816         * gnulib-tool (func_import): Fix comparison in handling of symbolic
32817         links.
32818
32819 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
32820
32821         * modules/size_max (Makefile.am): Add size_max.h
32822
32823 2005-09-04  Derek Price  <derek@ximbiot.com>
32824
32825         * gnulib-tool (func_import): Fix reversed $symbolic logic.
32826
32827 2005-09-03  Simon Josefsson  <jas@extundo.com>
32828
32829         * gnulib-tool: Fix typo.
32830
32831 2005-09-03  Simon Josefsson  <jas@extundo.com>
32832
32833         * config/srclist.txt: Add glibc bug 1293.
32834
32835 2005-09-03  Derek Price  <derek@ximbiot.com>
32836
32837         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
32838         From Larry Jones <lawrence.jones@ugs.com>.
32839
32840 2005-09-02  Simon Josefsson  <jas@extundo.com>
32841
32842         * modules/socklen: New file.
32843
32844 2005-09-02  Simon Josefsson  <jas@extundo.com>
32845
32846         * modules/havelib: New module.
32847
32848         * modules/gettext, modules/iconv, modules/lock, modules/readline:
32849         Use havelib.
32850
32851 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
32852
32853         Check for arithmetic overflow when calculating sizes, to prevent
32854         some buffer-overflow issues.  These patches are conservative, in the
32855         sense that when I couldn't determine whether an overflow was possible,
32856         I inserted a run-time check.
32857         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
32858         macros.
32859         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
32860         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
32861         (re_xnrealloc, re_x2nrealloc): New inline functions.
32862         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
32863         parse_bracket_exp):
32864         (build_equiv_class, build_charclass): Check for arithmetic overflow
32865         in size expression calculations.
32866         * lib/regex_internal.c (re_string_realloc_buffers):
32867         (build_wcs_upper_buffer, re_node_set_add_intersect):
32868         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
32869         (re_dfa_add_node, register_state): Likewise.
32870         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
32871         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
32872         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
32873         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
32874
32875 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
32876
32877         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
32878         m4/ulonglong.m4.  Problem reported by Martin Lambers.
32879
32880 2005-09-02  Bruno Haible  <bruno@clisp.org>
32881
32882         Support for lib vs. lib64 distinction on biarch platforms.
32883         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
32884         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
32885         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
32886
32887 2005-09-02  Bruno Haible  <bruno@clisp.org>
32888
32889         * gnulib-tool (import): In the other first-use case, provide defaults
32890         as well.
32891
32892 2005-09-02  Bruno Haible  <bruno@clisp.org>
32893
32894         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
32895         patches not yet found in the latest gettext release.
32896
32897 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
32898
32899         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
32900         to avoid a collision with bits/local_lim.h in glibc.
32901         All uses changed.  Problem reported by Dmitry V. Levin in
32902         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
32903
32904         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
32905         bugs in int versus size_t comparisons.
32906         (re_string_context_at): Fix bug where the code assumed that
32907         Idx is signed.
32908
32909         Use bool where appropriate.
32910         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
32911         All callers changed.
32912         (calc_eclosure_iter): Likewise, for ROOT arg.
32913         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
32914         (build_charclass_op): Likewise, for NON_MATCH arg.
32915         * lib/regex_internal.c (re_string_allocate, re_string_construct):
32916         (re_string_construct_common): Likewise, for ICASE arg.
32917         * lib/regexec.c (re_search_2_stub, re_search_stub):
32918         Likewise, for RET_LEN arg.
32919         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
32920         (set_regs): Likewise, for FL_BACKTRACK arg.
32921         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
32922         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
32923         (calc_eclosure_iter, parse_bracket_exp):
32924         Use bool for internal variables that are booleans.
32925         * lib/regexec.c (re_search_internal, check_matching,
32926         proceed_next_node):
32927         (set_regs, build_sifted_states, sift_states_bkref):
32928         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
32929         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
32930         (find_collation_sequence_value):
32931         Likewise.
32932         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
32933         (re_node_set_compare):
32934         Return bool, not int. All callers changed.
32935         * lib/regexec.c (check_halt_node_context, check_dst_limits):
32936         (build_trtable, check_node_accept): Likewise.
32937         * lib/regex_internal.h: Include stdbool.h.
32938
32939         Fix bugs uncovered when converting to bool.
32940         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
32941         failure instead of charging ahead blindly.
32942         * lib/regex_internal.c (register_state): Likewise.
32943         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
32944         for freeing internal storage.
32945         (group_nodes_into_DFA_states): Use unsigned int, not int, for
32946         bitset pieces used as boolean, to avoid undefined behavior
32947         on hosts that do int overflow checking.
32948
32949 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
32950
32951         * config/srclist.txt: Add glibc bugs 1285-1287.
32952
32953 2005-09-01  Jim Meyering  <jim@meyering.net>
32954
32955         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
32956         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
32957         Require gl_STAT_MACROS, too.
32958
32959 2005-09-01  Bruno Haible  <bruno@clisp.org>
32960
32961         * gnulib-tool (import): In the first-use case, provide defaults.
32962
32963 2005-09-01  Bruno Haible  <bruno@clisp.org>
32964
32965         * gnulib-tool (func_import): Remove the .tmp files.
32966
32967 2005-09-01  Bruno Haible  <bruno@clisp.org>
32968
32969         * gnulib-tool (func_import): Fix handling of symbolic links.
32970
32971 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
32972
32973         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
32974         old glibc regex code mishandles strings longer than 2**31 bytes.
32975         This patch fixes this when the regex code is used in gnulib
32976         (i.e., outside glibc).
32977
32978         This patch should not affect the use of the regex code inside
32979         glibc.  No doubt this problem also needs to be handled for glibc
32980         as well, but the result will be an incompatible change to the
32981         glibc ABI, and the old ABI will have to be supported too.  That
32982         can be the the subject for another patch.
32983
32984         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
32985         governing whether the rest of this patch is active.  By default,
32986         the macro is disabled and the patch has no effect.
32987         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
32988         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
32989         (struct re_pattern_buffer, re_search, re_search_2, re_match):
32990         (re_match_2, re_set_registers): Use the new types.
32991         * lib/regex_internal.h (Idx, re_hashval_t): New types.
32992         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
32993         New macros.
32994         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
32995         (re_string_context_at, bin_tree_t, re_dfastate_t):
32996         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
32997         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
32998         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
32999         (re_string_char_size_at, re_string_wchar_at):
33000         (re_string_elem_size_at):
33001         Use the new types and macros to port to 64-bit hosts.
33002         Use unsigned types for internal values, so that the code
33003         mostly works even for arrays larger than SSIZE_MAX.
33004         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
33005         (search_duplicated_node, calc_eclosure_iter, fetch_number):
33006         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
33007         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
33008         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
33009         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
33010         (calc_inveclosure, parse_dup_op, build_range_exp):
33011         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
33012         (fetch_number, create_token_tree, mark_opt_subexp):
33013         Likewise.
33014         * lib/regex_internal.c (re_string_construct_common,
33015         create_ci_newstate):
33016         (create_cd_newstate, re_string_allocate, re_string_construct):
33017         (re_string_realloc_buffers, build_wcs_upper_buffer):
33018         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
33019         (re_string_reconstruct, re_string_peek_byte_case):
33020         (re_string_fetch_byte_case, re_string_context_at):
33021         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
33022         (re_node_set_init_copy, re_node_set_add_intersect):
33023         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
33024         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
33025         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
33026         (re_acquire_state, re_acquire_state_context, register_state):
33027         Likewise.
33028         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
33029         search_cur_bkref_entry):
33030         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
33031         (re_search_internal, re_search_2_stub, re_search_stub)
33032         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
33033         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
33034         (update_cur_sifted_state, check_dst_limits):
33035         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
33036         (check_subexp_limits, sift_states_bkref, merge_state_array):
33037         (check_subexp_matching_top, get_subexp, get_subexp_sub):
33038         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
33039         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
33040         (expand_bkref_cache, check_node_accept_bytes):
33041         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
33042         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
33043         (acquire_init_state_context, check_halt_node_context):
33044         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
33045         (sift_states_backward, clean_state_log_if_needed):
33046         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
33047         (find_recover_state, transit_state_sb, transit_state_mb):
33048         (transit_state_bkref, build_trtable, match_ctx_clean):
33049         Likewise.
33050         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
33051         to work around an assumption that REG_MISSING is negative.
33052
33053         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
33054         (seek_collating_symbol_entry) [defined _LIBC]:
33055         (lookup_collation_sequence_value) [defined _LIBC]:
33056         (build_range_exp, build_collating_symbol) [defined _LIBC]:
33057         Use prototypes rather than old-style function definitions.
33058         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
33059         (transit_state_sb) [0]:
33060         (find_collation_sequence_value) [defined _LIBC]: Likewise.
33061
33062         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
33063         rm_eo.
33064
33065         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
33066         (optimize_subexps, lower_subexp):
33067         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
33068         since the signed shift might overflow.  Use 1u<<31 instead.
33069         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
33070         Likewise.
33071         * lib/regexec.c (check_dst_limits_calc_pos_1,
33072         check_subexp_matching_top): Likewise.
33073
33074         * lib/regcomp.c (optimize_subexps, lower_subexp):
33075         Use CHAR_BIT rather than 8, for clarity.
33076         * lib/regexec.c (check_dst_limits_calc_pos_1):
33077         (check_subexp_matching_top): Likewise.
33078         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
33079         have to worry about portability issues when shifting it left.
33080         Remove no-longer-needed test for table_size > 0.
33081         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
33082         in a word, as the resulting behavior is undefined.
33083         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
33084         in one case, a <= should have been an <, and in another case the
33085         whole test was missing.
33086         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
33087         the standard name CHAR_BIT.
33088         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
33089         this is not true on one's complement and signed-magnitude hosts.
33090
33091         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
33092         next_last_offset.
33093         (struct re_dfa_t): Remove unused member states_alloc.
33094         * lib/regcomp.c (init_dfa): Don't initialize unused members.
33095
33096 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33097
33098         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
33099         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
33100         and large-file glibc and in 32-bit large-file Solaris.
33101
33102 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33103
33104         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
33105         lengths fit in regoff_t; this isn't true if regoff_t is the same
33106         width as size_t.
33107         * lib/regex.c (re_search_internal): 5th arg is LAST_START
33108         (= START + RANGE) instead of RANGE.  This avoids overflow
33109         problems when regoff_t is the same width as size_t.
33110         All callers changed.
33111         (re_search_2_stub): Check for overflow when adding the
33112         sizes of the two strings.
33113         (re_search_stub): Check for overflow when adding START
33114         to RANGE; if it occurs, substitute the extreme value.
33115
33116 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
33117
33118         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
33119
33120 2005-08-31  Jim Meyering  <jim@meyering.net>
33121
33122         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
33123         a pointer-to-const.
33124         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
33125         (register_state): Likewise.
33126         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
33127         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
33128         (group_nodes_into_DFAstates): Likewise.
33129
33130 2005-08-31  Jim Meyering  <jim@meyering.net>
33131
33132         * check-module: Add a FIXME comment.
33133
33134 2005-08-31  Eric Blake  <ebb9@byu.net>
33135
33136         * modules/unistd-safer (Files): Add unistd--.h.
33137         * modules/stdio-safer (Files): Add stdio--.h.
33138
33139 2005-08-31  Derek Price  <derek@ximbiot.com>
33140
33141         * lib/getdelim.c (getdelim): Return EOF on EOF.
33142         Reported by Larry Jones <lawrence.jones@ugs.com>.
33143
33144 2005-08-31  Bruno Haible  <bruno@clisp.org>
33145
33146         Avoid unnecessary diffs in the generated lib/Makefile.am.
33147         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
33148         the generated files.
33149         (func_import): Don't set cmd.
33150
33151 2005-08-31  Bruno Haible  <bruno@clisp.org>
33152
33153         * lib/strstr.c: Include <stddef.h>, for NULL.
33154         * lib/strcasestr.c: Likewise.
33155         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
33156
33157 2005-08-31  Bruno Haible  <bruno@clisp.org>
33158
33159         * gnulib-tool: New option --macro-prefix.
33160         (func_import): Use macro_prefix.
33161         (import): Handle option --macro-prefix.
33162
33163 2005-08-31  Bruno Haible  <bruno@clisp.org>
33164
33165         * gnulib-tool (import): Rename most ac_* variables to cached_*.
33166         Also use new variables cached_lgpl, cached_libtool.
33167
33168 2005-08-31  Bruno Haible  <bruno@clisp.org>
33169
33170         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
33171         always instantiating them.
33172
33173 2005-08-31  Bruno Haible  <bruno@clisp.org>
33174
33175         * gnulib-tool (func_import): Read the previous cached settings
33176         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
33177         earlier added by gnulib but are now dropped. Warn when a gnulib file
33178         overwrites a non-gnulib file.
33179
33180 2005-08-31  Bruno Haible  <bruno@clisp.org>
33181
33182         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
33183         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
33184         projects that don't keep autogenerated files in CVS. Put into
33185         actioncmd only the specified modules, not the transitive closure.
33186
33187 2005-08-31  Bruno Haible  <bruno@clisp.org>
33188
33189         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
33190         Create directories that shall be filled.
33191         (import): Don't look for gl_* macros in configure.ac. Recurse across
33192         all directories containing a gnulib-cache.m4 files, if meaningful.
33193
33194 2005-08-31  Bruno Haible  <bruno@clisp.org>
33195
33196         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
33197         (import): Set seen_libtool when we see gl_LIBTOOL.
33198
33199 2005-08-31  Bruno Haible  <bruno@clisp.org>
33200
33201         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
33202         declaration macro definitions from generated gnulib.m4.
33203
33204 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
33205
33206         * lib/iconvme.h: Add prototype for iconv_alloc.
33207
33208 2005-08-29  Simon Josefsson  <jas@extundo.com>
33209
33210         * lib/iconvme.c: Fix errno.
33211
33212 2005-08-29  Bruno Haible  <bruno@clisp.org>
33213
33214         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
33215         that it works when the directory contains spaces.
33216
33217 2005-08-29  Bruno Haible  <bruno@clisp.org>
33218
33219         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
33220
33221 2005-08-29  Bruno Haible  <bruno@clisp.org>
33222
33223         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
33224         Emit more advice.
33225
33226 2005-08-29  Bruno Haible  <bruno@clisp.org>
33227         and Stepan Kasal  <kasal@ucw.cz>
33228
33229         * check-module: If more parameters are given, check each of them
33230         separately; add more exceptions, as noted by Jim Meyering.
33231         (check_module): New procedure.
33232         (%exempt_header): Now contains all exceptions.
33233
33234 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
33235
33236         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
33237
33238 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
33239
33240         * lib/iconvme.c: Split iconv_string into iconv_alloc.
33241
33242 2005-08-28  Bruno Haible  <bruno@clisp.org>
33243
33244         * m4/gnulib-tool.m4: New file.
33245
33246 2005-08-27  Jim Meyering  <jim@meyering.net>
33247
33248         * modules/unistd-safer (Files): Add pipe-safer.c.
33249         * modules/fcntl-safer (Files): Add creat-safer.c.
33250
33251 2005-08-27  Jim Meyering  <jim@meyering.net>
33252
33253         * m4/stdlib-safer.m4: New file.  From coreutils.
33254         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
33255         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
33256         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
33257         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
33258         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
33259
33260 2005-08-27  Jim Meyering  <jim@meyering.net>
33261
33262         * lib/fopen-safer.c: Merge minor changes from coreutils.
33263         * lib/dup-safer.c: Likewise.
33264         * lib/fd-safer.c: Likewise.
33265
33266         Merge from coreutils.
33267         * lib/stdio--.h: New file.
33268         * lib/stdlib--.h: New file.
33269         * lib/mkstemp-safer.c: New file.
33270
33271         GNU tar needs these.
33272         * lib/pipe-safer.c: New file.
33273         * lib/creat-safer.c: New file.
33274         * lib/fcntl--.h (creat): Define to creat_safer.
33275         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
33276         * lib/unistd--.h (pipe): Define to pipe_safer.
33277         * lib/unistd-safer.h: Declare pipe_safer.
33278
33279 2005-08-26  Simon Josefsson  <jas@extundo.com>
33280
33281         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
33282         Haible <bruno@clisp.org>.
33283
33284 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
33285
33286         * lib/regex_internal.h: Remove all references to
33287         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
33288         or better.
33289         (bitset_not, bitset_merge, bitset_not_merge):
33290         (bitset_mask, re_string_allocate, re_string_construct):
33291         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
33292         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
33293         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
33294         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
33295         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
33296         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
33297         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
33298         (re_acquire_state_context):
33299         Remove unnecessary forward decls.
33300         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
33301         Put __attribute at function definition,
33302         now that the function decl has been removed.
33303         * lib/regex_internal.c (re_string_peek_byte_case):
33304         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
33305         Likewise.
33306
33307 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
33308
33309         * m4/regex.m4: Add AC_PREREQ(2.50).
33310         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
33311
33312 2005-08-25  Simon Josefsson  <jas@extundo.com>
33313
33314         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
33315         __fsetlocking.
33316
33317 2005-08-25  Simon Josefsson  <jas@extundo.com>
33318
33319         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
33320         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
33321         GLIBC specific code.
33322
33323 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33324
33325         Make regex safe for g++.  This fixes one real bug (an "err"
33326         that should have been "*err").  g++ problem reported by
33327         Sam Steingold.
33328         * lib/regex_internal.h (re_calloc): New macro, consistent with
33329         re_malloc etc.  All callers of calloc changed to use re_calloc.
33330         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
33331         not int.  All callers changed.
33332         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
33333         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
33334         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
33335         (find_recover_state): Change "err" to "*err"; this fixes what
33336         appears to be a real bug.
33337         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
33338         versus int.
33339
33340 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33341
33342         * modules/regex (Depends-on): Add malloc, since the code
33343         assumes that !malloc(0) means failure.
33344
33345 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33346
33347         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
33348
33349         alloca modernization/simplification for regex.
33350         * lib/regex.c: Remove portability cruft for alloca.  This no longer
33351         needs to be at the start of the file, and can be moved into
33352         regex_internal.h and simplified.
33353         * lib/regex_internal.h: Include <alloca.h>.
33354         (__libc_use_alloca) [!defined _LIBC]: New macro.
33355         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
33356         now works outside glibc.
33357
33358 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
33359
33360         * config/srclist.txt: Add glibc bugs 1241, 1245.
33361
33362 2005-08-25  Jim Meyering  <jim@meyering.net>
33363
33364         * lib/open-safer.c: Include <config.h>.
33365         Otherwise, we'd lose LARGEFILE support in any file using
33366         e.g. "fcntl--.h"
33367
33368 2005-08-25  Bruno Haible  <bruno@clisp.org>
33369
33370         * m4/minmax.m4: Require autoconf 2.52.
33371         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
33372         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
33373         alternatives of translit over the alphabet.
33374         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
33375
33376 2005-08-24  Simon Josefsson  <jas@extundo.com>
33377
33378         * tests/test-getpass.c: New file.
33379
33380 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
33381
33382         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
33383         for GNU regex features.
33384
33385 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
33386
33387         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
33388         * lib/regex.h (regerror): Likewise.
33389
33390         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
33391         requires this.  (The code never needed it.)
33392
33393         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
33394         All uses of recently-renamed identifiers changed to use the new,
33395         POSIX-compliant names.  The code will build and run just fine
33396         without these changes, but it's better to eat our own dog food
33397         and use the standard-conforming names.
33398
33399         * lib/regex.h: Fix a multitude of POSIX name space violations.
33400         These changes have an effect only for programs that define
33401         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
33402         do not change anything for programs compiled in the normal way.
33403         Also, there is no effect on the ABI.
33404
33405         (_REGEX_SOURCE): New macro.
33406         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
33407         defined and _GNU_SOURCE is not; this fixes a name space violation.
33408
33409         Rename the following macros to obey POSIX requirements.
33410         The old names are still visible as macros if _REGEX_SOURCE is defined.
33411         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
33412         RE_BACKSLASH_ESCAPE_IN_LISTS.
33413         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
33414         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
33415         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
33416         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
33417         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
33418         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
33419         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
33420         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
33421         (REG_INTERVALS): renamed from RE_INTERVALS.
33422         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
33423         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
33424         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
33425         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
33426         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
33427         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
33428         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
33429         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
33430         RE_UNMATCHED_RIGHT_PAREN_ORD.
33431         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
33432         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
33433         (REG_DEBUG): renamed from RE_DEBUG.
33434         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
33435         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
33436         unusual, since we can't clash with the POSIX REG_ICASE.
33437         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
33438         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
33439         (REG_NO_SUB): renamed from RE_NO_SUB.
33440         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
33441         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
33442         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
33443         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
33444         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
33445         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
33446         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
33447         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
33448         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
33449         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
33450         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
33451         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
33452         RE_SYNTAX_POSIX_MINIMAL_BASIC.
33453         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
33454         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
33455         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
33456         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
33457         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
33458         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
33459         (REG_FIXED): Renamed from REGS_FIXED.
33460         (REG_NREGS): Renamed from RE_NREGS.
33461
33462         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
33463         of other REG_* macros, since POSIX says the user is allowed to
33464         #undef these macros selectively.
33465
33466         (reg_errcode_t): Update comment stating what other tables need
33467         to be consistent.
33468
33469         Rename the following enum values to obey POSIX requirements.
33470         The old names are still visible as macros.
33471         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
33472         is not defined, since GNU is supposed to be a superset of POSIX as
33473         much as possible, and since we want reg_errcode_t to be a signed
33474         type for implementation consistency.
33475         (_REG_NOERROR): Renamed from REG_NOERROR.
33476         (_REG_NOMATCH): Renamed from REG_NOMATCH.
33477         (_REG_BADPAT): Renamed from REG_BADPAT.
33478         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
33479         (_REG_ECTYPE): Renamed from REG_ECTYPE.
33480         (_REG_EESCAPE): Renamed from REG_EESCAPE.
33481         (_REG_ESUBREG): Renamed from REG_ESUBREG.
33482         (_REG_EBRACK): Renamed from REG_EBRACK.
33483         (_REG_EPAREN): Renamed from REG_EPAREN.
33484         (_REG_EBRACE): Renamed from REG_EBRACE.
33485         (_REG_BADBR): Renamed from REG_BADBR.
33486         (_REG_ERANGE): Renamed from REG_ERANGE.
33487         (_REG_ESPACE): Renamed from REG_ESPACE.
33488         (_REG_BADRPT): Renamed from REG_BADRPT.
33489         (_REG_EEND): Renamed from REG_EEND.
33490         (_REG_ESIZE): Renamed from REG_ESIZE.
33491         (_REG_ERPAREN): Renamed from REG_ERPAREN.
33492         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
33493         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
33494         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
33495         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
33496
33497         (_REG_RE_NAME, _REG_RM_NAME): New macros.
33498         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
33499         changed.  But support the old name if the new one is not defined
33500         and if _REGEX_SOURCE.
33501
33502         Change the following member names in struct re_pattern_buffer.
33503         The old names are still supported if !_REGEX_SOURCE.
33504         The new names are always supported, regardless of _REGEX_SOURCE.
33505         (re_buffer): Renamed from buffer.
33506         (re_allocated): Renamed from allocated.
33507         (re_used): Renamed from used.
33508         (re_syntax): Renamed from syntax.
33509         (re_fastmap): Renamed from fastmap.
33510         (re_translate): Renamed from translate.
33511         (re_can_be_null): Renamed from can_be_null.
33512         (re_regs_allocated): Renamed from regs_allocated.
33513         (re_fastmap_accurate): Renamed from fastmap_accurate.
33514         (re_no_sub): Renamed from no_sub.
33515         (re_not_bol): Renamed from not_bol.
33516         (re_not_eol): Renamed from not_eol.
33517         (re_newline_anchor): Renamed from newline_anchor.
33518
33519         Change the following member names in struct re_registers.
33520         The old names are still supported if !_REGEX_SOURCE.
33521         The new names are always supported, regardless of _REGEX_SOURCE.
33522         (rm_num_regs): Renamed from num_regs.
33523         (rm_start): Renamed from start.
33524         (rm_end): Renamed from end.
33525
33526         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
33527         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
33528         Prepend __ to parameter names.
33529
33530         Undo yesterday's changes.
33531
33532 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
33533
33534         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
33535         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
33536         lib/regex.c.
33537
33538 2005-08-24  Jim Meyering  <jim@meyering.net>
33539
33540         Sync from coreutils.
33541         * m4/fcntl-safer.m4: New file.
33542
33543         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
33544         and object files for this module.
33545
33546 2005-08-24  Jim Meyering  <jim@meyering.net>
33547
33548         Sync from coreutils.
33549         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
33550
33551 2005-08-24  Jim Meyering  <jim@meyering.net>
33552
33553         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
33554         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
33555
33556 2005-08-24  Jim Meyering  <jim@meyering.net>
33557
33558         * modules/fcntl-safer: New module.
33559         * modules/fts (Depends-on): Add fcntl-safer.
33560         * MODULES.html.sh (File descriptor based Input/Output):
33561         Add fcntl-safer.
33562
33563 2005-08-24  Bruno Haible  <bruno@clisp.org>
33564
33565         Support for unit test modules.
33566         * modules/README: Mention tests modules.
33567         * modules/TEMPLATE-TESTS: New file.
33568         * gnulib-tool: New options --extract-tests-module, --with-tests and
33569         --tests-base (unused for the moment).
33570         (testsbase, inctests): New variables.
33571         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
33572         (func_verify_module): Exclude TEMPLATE-TESTS.
33573         (func_verify_nontests_module, func_verify_tests_module): New functions.
33574         (func_get_dependencies): Add implicit dependency for tests modules.
33575         (func_get_tests_module): New function.
33576         (func_modules_transitive_closure): When --with-tests was specified,
33577         include the unit tests as well, unless explicitly avoided.
33578         (func_emit_lib_Makefile_am): Ignore the tests modules here.
33579         (func_emit_tests_Makefile_am): New function.
33580         (func_create_testdir): When --with-tests was specified, emit a
33581         tests/ directory.
33582         * MODULES.html.sh (Future developments): Update.
33583
33584 2005-08-24  Bruno Haible  <bruno@clisp.org>
33585
33586         * modules/tls-tests: New file.
33587         * tests/test-tls.c: New file, from GNU gettext.
33588
33589 2005-08-24  Bruno Haible  <bruno@clisp.org>
33590
33591         * modules/lock-tests: New file.
33592         * tests/test-lock.c: New file, from GNU gettext.
33593
33594 2005-08-24  Bruno Haible  <bruno@clisp.org>
33595
33596         * lib/lock.h: Add multiple inclusion guard.
33597         * lib/tls.h: Add multiple inclusion guard.
33598
33599 2005-08-24  Bruno Haible  <bruno@clisp.org>
33600
33601         * gnulib-tool: Add support for the --aux-dir option to
33602         --create-testdir, --create-megatestdir, --test, --megatest.
33603         (func_create_testdir, func_create_megatestdir): Optionally emit a
33604         AC_CONFIG_AUX_DIR directive.
33605         (create-testdir, create-megatestdir, test, megatest): Provide a
33606         default value for $auxdir.
33607
33608 2005-08-24  Bruno Haible  <bruno@clisp.org>
33609
33610         * gnulib-tool (import): Use compound statement instead of subshell
33611         where possible.
33612
33613 2005-08-24  Bruno Haible  <bruno@clisp.org>
33614
33615         * gnulib-tool (import): Change --aux-dir default to "build-aux".
33616
33617 2005-08-24  Bruno Haible  <bruno@clisp.org>
33618
33619         * gnulib-tool (func_version): Update.
33620
33621 2005-08-24  Bruno Haible  <bruno@clisp.org>
33622
33623         * gnulib-tool (func_import, func_create_testdir,
33624         func_create_megatestdir): Quote all autoconf macro arguments.
33625
33626 2005-08-24  Bruno Haible  <bruno@clisp.org>
33627
33628         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
33629         option --force, because --force causes the aclocal.m4 of each
33630         subdirectory to be newer than the corresponding config.h.in.
33631
33632 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
33633
33634         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
33635         All contents moved to gl_REGEX.
33636         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
33637         assume that it does.
33638
33639 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
33640
33641         * lib/regex.h (REG_NOSYS)
33642         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
33643         Define, since POSIX requires it as of 2001.
33644         (_REG_ENOSYS)
33645         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
33646         New private symbol, used to keep the enum signed in all cases.
33647         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
33648         Youngman in
33649         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
33650
33651         * lib/regex_internal.c (re_string_skip_chars, register_state):
33652         (calc_state_hash):
33653         Remove forward decls; no longer needed now that we use prototypes.
33654         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
33655         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
33656         (clean_state_log_if_needed): Likewise.
33657
33658 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
33659
33660         * config/srclist.txt: Add glibc bugs 1231-1233.
33661
33662 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
33663
33664         Fix problems reported by Sam Steingold in
33665         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
33666         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
33667         assumed that reg_errcode_t is a signed type, which is not
33668         necessarily true if _XOPEN_SOURCE is not defined.
33669         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
33670         since some compilers warn about it otherwise.
33671
33672 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
33673
33674         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
33675         (init_word_char, create_initial_state, duplicate_node_closure):
33676         (fetch_token, peek_token_bracket, build_range_exp):
33677         (build_collating_symbol): Remove forward decls; no longer needed
33678         now that we use prototypes.
33679
33680         * lib/regcomp.c:
33681         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
33682         (re_compile_fastmap_iter, regcomp, regerror, regfree):
33683         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
33684         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
33685         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
33686         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
33687         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
33688         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
33689         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
33690         (build_range_exp, build_collating_symbol, parse_bracket_exp):
33691         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
33692         (build_charclass, build_charclass_op, fetch_number, create_tree):
33693         (create_token_tree, mark_opt_subexp, duplicate_tree):
33694         Use prototypes rather than old-style definitions.
33695
33696         * lib/regex_internal.c:
33697         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
33698         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
33699         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
33700         (re_string_reconstruct, re_string_peek_byte_case):
33701         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
33702         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
33703         (re_node_set_init_copy, re_node_set_add_intersect):
33704         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
33705         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
33706         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
33707         (re_acquire_state, re_acquire_state_context, register_state):
33708         (create_ci_newstate, create_cd_newstate, free_state):
33709         Likewise.
33710         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
33711         re_search_2):
33712         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
33713         (re_search_internal, prune_impossible_nodes):
33714         (acquire_init_state_context, check_matching, static):
33715         (check_halt_node_context, check_halt_state_context, proceed_next_node):
33716         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
33717         (update_regs, sift_states_backward, build_sifted_states):
33718         (clean_state_log_if_needed, merge_state_array):
33719         (update_cur_sifted_state, add_epsilon_src_nodes):
33720         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
33721         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
33722         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
33723         (find_recover_state, check_subexp_matching_top, transit_state_mb):
33724         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
33725         (check_arrival, check_arrival_add_next_nodes):
33726         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
33727         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
33728         (check_node_accept_bytes, check_node_accept, extend_buffers):
33729         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
33730         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
33731         (sift_ctx_init):
33732         Likewise.
33733
33734         * lib/regex_internal.h:
33735         (re_string_allocate, re_string_construct, re_string_reconstruct):
33736         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
33737         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
33738         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
33739         (re_string_context_at, re_string_peek_byte_case):
33740         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
33741         is defined, since we now use prototypes always.
33742
33743         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
33744         C89 or better.  All uses removed.
33745
33746 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
33747
33748         * config/srclist.txt: Add glibc bugs 1220-1227.
33749
33750 2005-08-20  Jim Meyering  <jim@meyering.net>
33751
33752         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
33753         of unused local, dfa.
33754
33755 2005-08-20  Bruno Haible  <bruno@clisp.org>
33756
33757         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
33758
33759 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33760
33761         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
33762         (re_node_set_insert_last, re_dfa_add_node):
33763         Rename local variables to avoid GCC shadowing warnings.
33764
33765 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33766
33767         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
33768         [defined lint]: Suppress bogus uninitialized-variable warnings.
33769
33770         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
33771         and let the caller return REG_ESPACE if out of space.  This
33772         removes an uninitialied-variable warning with GCC 4.0.1, and also
33773         avoids taking the address of a local variable.  All callers
33774         changed.
33775
33776 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33777
33778         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
33779         $LIBCSRC/posix/regexec.c.
33780         Add glibc bug 1217 for regcomp.c.
33781
33782 2005-08-19  Jim Meyering  <jim@meyering.net>
33783
33784         * lib/regexec.c (proceed_next_node): Redo local variables to
33785         avoid GCC shadowing warnings.
33786
33787 2005-08-18  Bruno Haible  <bruno@clisp.org>
33788
33789         * lib/strstr.c (strstr): Fix return value in multibyte case.
33790         * lib/strcasestr.c (strcasestr): Likewise.
33791
33792 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
33793
33794         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
33795
33796 2005-08-17  Jim Meyering  <jim@meyering.net>
33797
33798         Make the %s format (seconds since the epoch) work for a negative
33799         number and when used with a zero-padded field width, e.g. %015s.
33800
33801         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
33802         label so that it precedes the code to set `digits'.  Otherwise,
33803         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
33804         print `00-22'.  Now, it prints `-0022', as it should.
33805
33806 2005-08-17  Bruno Haible  <bruno@clisp.org>
33807
33808         * modules/strstr (Files): Add m4/mbrtowc.m4.
33809         (Depends-on): Add mbuiter.
33810
33811 2005-08-17  Bruno Haible  <bruno@clisp.org>
33812
33813         * modules/strcasestr: New file.
33814         * MODULES.html.sh (String handling, based on ANSI C 89): Add
33815         strcasestr.
33816
33817 2005-08-17  Bruno Haible  <bruno@clisp.org>
33818
33819         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
33820
33821 2005-08-17  Bruno Haible  <bruno@clisp.org>
33822
33823         * modules/mbuiter: New file.
33824         * MODULES.html.sh (Extended multibyte and wide character utilities):
33825         Add mbuiter.
33826
33827 2005-08-17  Bruno Haible  <bruno@clisp.org>
33828
33829         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
33830         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
33831
33832 2005-08-17  Bruno Haible  <bruno@clisp.org>
33833
33834         * m4/strcasestr.m4: New file.
33835
33836 2005-08-17  Bruno Haible  <bruno@clisp.org>
33837
33838         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
33839         * lib/strstr.c: Completely rewritten, with multibyte locale support.
33840
33841 2005-08-17  Bruno Haible  <bruno@clisp.org>
33842
33843         * lib/strcasestr.h: New file.
33844         * lib/strcasestr.c: New file.
33845
33846 2005-08-17  Bruno Haible  <bruno@clisp.org>
33847
33848         * lib/strcasecmp.c: Use mbuiter.h.
33849
33850 2005-08-17  Bruno Haible  <bruno@clisp.org>
33851
33852         * lib/mbuiter.h: New file.
33853
33854 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
33855
33856         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
33857         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
33858         and gl_GETOPT are both invoked via different paths (as happens
33859         with GNU tar CVS because it uses both argp and getopt), the former
33860         wins.
33861
33862 2005-08-16  Bruno Haible  <bruno@clisp.org>
33863
33864         * modules/tls: New file.
33865         * MODULES.html.sh (Multithreading): Add tls.
33866
33867 2005-08-16  Bruno Haible  <bruno@clisp.org>
33868
33869         * modules/strnlen1: New file.
33870         * MODULES.html.sh (String handling): Add strnlen1.
33871
33872 2005-08-16  Bruno Haible  <bruno@clisp.org>
33873
33874         * modules/strcase (Files): Add m4/mbrtowc.m4.
33875         (Depends-on): Add strnlen1, mbchar.
33876
33877 2005-08-16  Bruno Haible  <bruno@clisp.org>
33878
33879         * modules/mbiter: New file.
33880         * MODULES.html.sh (Extended multibyte and wide character utilities):
33881         Add mbiter.
33882
33883 2005-08-16  Bruno Haible  <bruno@clisp.org>
33884
33885         * modules/mbfile: New file.
33886         * MODULES.html.sh (Extended multibyte and wide character utilities):
33887         Add mbfile.
33888
33889 2005-08-16  Bruno Haible  <bruno@clisp.org>
33890
33891         * modules/mbchar: New file.
33892         * MODULES.html.sh (Extended multibyte and wide character utilities):
33893         New section.
33894
33895 2005-08-16  Bruno Haible  <bruno@clisp.org>
33896
33897         * m4/tls.m4: New file, from GNU gettext.
33898
33899 2005-08-16  Bruno Haible  <bruno@clisp.org>
33900
33901         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
33902         always.
33903         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
33904
33905 2005-08-16  Bruno Haible  <bruno@clisp.org>
33906
33907         * m4/mbiter.m4: New file.
33908
33909 2005-08-16  Bruno Haible  <bruno@clisp.org>
33910
33911         * m4/mbfile.m4: New file.
33912
33913 2005-08-16  Bruno Haible  <bruno@clisp.org>
33914
33915         * m4/mbchar.m4: New file.
33916
33917 2005-08-16  Bruno Haible  <bruno@clisp.org>
33918
33919         * lib/tls.h: New file, from GNU gettext.
33920         * lib/tls.c: New file, from GNU gettext.
33921
33922 2005-08-16  Bruno Haible  <bruno@clisp.org>
33923
33924         * lib/strnlen1.h: New file.
33925         * lib/strnlen1.c: New file.
33926
33927 2005-08-16  Bruno Haible  <bruno@clisp.org>
33928
33929         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
33930         (mbi_init): Update.
33931         (mbi_avail, mbi_advance): Let the iteration end before the terminating
33932         NUL byte, not after it.
33933
33934 2005-08-16  Bruno Haible  <bruno@clisp.org>
33935
33936         * lib/strcase.h (strcasecmp): Add note in comments.
33937         * lib/strncasecmp.c: Use code from strcasecmp.c.
33938         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
33939         (strcasecmp): Work correctly in multibyte locales.
33940
33941 2005-08-16  Bruno Haible  <bruno@clisp.org>
33942
33943         * lib/mbiter.h: New file.
33944
33945 2005-08-16  Bruno Haible  <bruno@clisp.org>
33946
33947         * lib/mbfile.h: New file.
33948
33949 2005-08-16  Bruno Haible  <bruno@clisp.org>
33950
33951         * lib/mbchar.h: New file.
33952         * lib/mbchar.c: New file.
33953
33954 2005-08-16  Bruno Haible  <bruno@clisp.org>
33955
33956         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
33957         the valid ones. Makes the comparison operations transitive:
33958         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
33959         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
33960
33961 2005-08-15  Simon Josefsson  <jas@extundo.com>
33962
33963         * modules/ssize_t (License): Change to 'unlimited'.
33964
33965         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
33966
33967 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
33968
33969         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
33970         Add comments for each pending glibc patch.
33971
33972 2005-08-15  Bruno Haible  <bruno@clisp.org>
33973
33974         * lib/regex.h (__restrict_arr): Don't define to __restrict if
33975         __cplusplus is defined.
33976
33977 2005-08-14  Jim Meyering  <jim@meyering.net>
33978
33979         Sync from coreutils.
33980
33981         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
33982         Use the hash-table-based cycle-detection code not just when
33983         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
33984         Reported by James Youngman in
33985         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
33986         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
33987         FTS_TIGHT_CYCLE_CHECK.
33988         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
33989         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
33990         once again.
33991         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
33992         * lib/fts.c (fd_safer): Remove decl.
33993         Include fcntl--.h rather than unistd-safer.h
33994         (fts_safe_changedir): Don't call fd_safer; no longer needed
33995         now that we include fcntl--.h.
33996
33997 2005-08-12  Simon Josefsson  <jas@extundo.com>
33998
33999         * modules/getndelim2: Use ssize_t module.
34000         * modules/getnline: Likewise.
34001         * modules/safe-read: Likewise.
34002         * modules/xreadlink: Likewise.
34003
34004         * modules/ssize_t: New file.
34005
34006 2005-08-12  Simon Josefsson  <jas@extundo.com>
34007
34008         * m4/readline.m4: Look for termcap, curses or ncurses if required.
34009
34010 2005-08-12  Simon Josefsson  <jas@extundo.com>
34011
34012         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
34013         ssize_t.
34014
34015 2005-08-12  Simon Josefsson  <jas@extundo.com>
34016
34017         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
34018         readline, getdelim and check_version.
34019         (Support for systems lacking ISO C 99: Sizes of integer types):
34020         Add size_max.
34021
34022 2005-08-12  Bruno Haible  <bruno@clisp.org>
34023
34024         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
34025
34026 2005-08-11  Simon Josefsson  <jas@extundo.com>
34027
34028         * modules/readline: New file.
34029
34030         * modules/strnlen (Files): Add strnlen.h.
34031
34032 2005-08-11  Simon Josefsson  <jas@extundo.com>
34033
34034         * m4/readline.m4: New file.
34035
34036 2005-08-11  Simon Josefsson  <jas@extundo.com>
34037
34038         * lib/readline.h, readline.c: New file.
34039
34040 2005-08-11  Simon Josefsson  <jas@extundo.com>
34041
34042         * doc/gnulib.texi (Initial import, Finishing touches): Mention
34043         gl_AVOID.
34044
34045 2005-08-11  Bruno Haible  <bruno@clisp.org>
34046
34047         * lib/strnlen.h (strnlen): Change parameter name to match comment.
34048
34049 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
34050
34051         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
34052
34053 2005-08-10  Simon Josefsson  <jas@extundo.com>
34054
34055         * tests/test-iconvme.c: New file.
34056
34057 2005-08-10  Simon Josefsson  <jas@extundo.com>
34058
34059         * m4/strnlen.m4: New file.
34060
34061         * m4/strndup.m4: Don't check for strnlen declaration, done in
34062         strnlen.m4.
34063
34064 2005-08-10  Simon Josefsson  <jas@extundo.com>
34065
34066         * lib/strndup.c: Use strnlen.h.
34067
34068         * lib/strnlen.h: New file.
34069
34070 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
34071
34072         * README: Typos.
34073
34074 2005-08-02  Simon Josefsson  <jas@extundo.com>
34075
34076         * modules/readline: New file.
34077
34078 2005-08-02  Simon Josefsson  <jas@extundo.com>
34079
34080         * modules/getdelim: New file.
34081
34082         * modules/getline: Rewrite, don't use getndelim2.
34083
34084 2005-08-02  Simon Josefsson  <jas@extundo.com>
34085
34086         * m4/getline.m4: Separate out getdelim stuff into separate module.
34087
34088         * m4/getdelim.m4: New file.
34089
34090 2005-08-02  Simon Josefsson  <jas@extundo.com>
34091
34092         * lib/getline.h, getline.c: Rewrite.
34093
34094         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
34095
34096 2005-07-31  Bruno Haible  <bruno@clisp.org>
34097
34098         * lib/lock.h (gl_lock_initializer): New macro.
34099         (gl_lock_define_initialized): Use it.
34100         (gl_rwlock_initializer): New macro.
34101         (gl_rwlock_define_initialized): Use it.
34102         (gl_recursive_lock_initializer): New macro.
34103         (gl_recursive_lock_define_initialized): Use it.
34104
34105 2005-07-30  Karl Berry  <karl@gnu.org>
34106
34107         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
34108         Report from Ben Pfaff, regarding getopt.
34109
34110 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
34111
34112         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
34113         normal way.
34114         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
34115         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
34116         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
34117         (gl_GETOPT): Use the new macros.  Most of the implementation
34118         is moved to the new macros.  This is for programs like Emacs
34119         that don't want all the functionality of gl_GETOPT.
34120
34121 2005-07-26  Bruno Haible  <bruno@clisp.org>
34122
34123         * m4/lock.m4: Update from GNU gettext.
34124
34125 2005-07-26  Bruno Haible  <bruno@clisp.org>
34126
34127         * lib/lock.h: Update from GNU gettext.
34128         * lib/lock.c: Update from GNU gettext.
34129
34130 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
34131
34132         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
34133         obsolescent AC_TRY_RUN.  Include the default includes files, for
34134         'exit'.
34135
34136 2005-07-24  Bruno Haible  <bruno@clisp.org>
34137
34138         * modules/visibility: New file.
34139         * MODULES.html.sh (Misc): Add visibility.
34140
34141 2005-07-24  Bruno Haible  <bruno@clisp.org>
34142
34143         * m4/visibility.m4: New file.
34144
34145 2005-07-24  Bruno Haible  <bruno@clisp.org>
34146
34147         * doc/visibility.texi: New file.
34148
34149 2005-07-22  Bruno Haible  <bruno@clisp.org>
34150
34151         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
34152         $(ALLOCA_H), redundant through BUILT_SOURCES.
34153         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
34154         redundant through BUILT_SOURCES.
34155         * modules/byteswap (Makefile.am): Remove explicit dependency on
34156         $(BYTESWAP_H), redundant through BUILT_SOURCES.
34157         * modules/fnmatch (Makefile.am): Remove explicit dependency on
34158         $(FNMATCH_H), redundant through BUILT_SOURCES.
34159         * modules/getopt (Makefile.am): Remove explicit dependency on
34160         $(GETOPT_H), redundant through BUILT_SOURCES.
34161         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
34162         redundant through BUILT_SOURCES.
34163         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
34164         redundant through BUILT_SOURCES.
34165         * modules/stdbool (Makefile.am): Remove explicit dependency on
34166         $(STDBOOL_H), redundant through BUILT_SOURCES.
34167         * modules/stdint (Makefile.am): Remove explicit dependency on
34168         $(STDINT_H), redundant through BUILT_SOURCES.
34169         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
34170         Remove explicit dependency on $(SYSEXITS_H).
34171         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
34172
34173 2005-07-18  Simon Josefsson  <jas@extundo.com>
34174
34175         * lib/check-version.c (check_version): Accept identical versions too.
34176
34177 2005-07-18  Bruno Haible  <bruno@clisp.org>
34178
34179         * modules/lock: New file.
34180         * MODULES.html.sh (Multithreading): New section.
34181
34182 2005-07-18  Bruno Haible  <bruno@clisp.org>
34183
34184         * m4/lock.m4: New file, from GNU gettext.
34185
34186 2005-07-18  Bruno Haible  <bruno@clisp.org>
34187
34188         * lib/lock.h: New file, from GNU gettext.
34189         * lib/lock.c: New file, from GNU gettext.
34190
34191 2005-07-18  Bruno Haible  <bruno@clisp.org>
34192
34193         * lib/lock.h (gl_once_t): New type.
34194         (gl_once_define, gl_once): New macros.
34195         * lib/lock.c (fresh_once): New variable.
34196         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
34197         functions.
34198
34199 2005-07-16  Simon Josefsson  <jas@extundo.com>
34200
34201         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
34202         workaround, suggested by Bruno.
34203
34204 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
34205
34206         * modules/xalloc (Depends-on): Add xalloc-die.
34207         * modules/xvasprintf (Depends-on): Add xalloc-die.
34208
34209 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
34210
34211         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
34212         with a minor change.
34213
34214 2005-07-15  Bruno Haible  <bruno@clisp.org>
34215
34216         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
34217         When using lib/poll.c, define poll as rpl_poll.
34218
34219 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
34220
34221         * modules/argp (Depends-on): Remove unlocked-io.
34222
34223 2005-07-14  Derek Price  <derek@ximbiot.com>
34224
34225         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
34226         for glob symlink bug.
34227
34228 2005-07-14  Bruno Haible  <bruno@clisp.org>
34229
34230         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
34231         Instead, test for *_unlocked function declarations directly.
34232
34233 2005-07-11  Simon Josefsson  <jas@extundo.com>
34234
34235         * modules/size_max: New file.
34236
34237         * modules/xsize: Depend on size_max module for size_max.m4.
34238
34239 2005-07-11  Simon Josefsson  <jas@extundo.com>
34240
34241         * lib/size_max.h: New file.
34242
34243 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
34244
34245         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
34246         copyright symbol and the year.
34247         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
34248         (version_etc_va): Use parameterized copyright notice.
34249         Reword to conform to the current GNU coding standards.
34250
34251 2005-07-11  Karl Berry  <karl@gnu.org>
34252
34253         * doc/gnulib.texi (Quoting): new node.
34254         (Initial import): more info, from Patrice.
34255
34256 2005-07-11  Bruno Haible  <bruno@clisp.org>
34257
34258         * gnulib-tool (func_usage): Document option --avoid.
34259         (Command line options): Handle --avoid.
34260         (func_acceptable): New function.
34261         (func_modules_transitive_closure): Use it.
34262
34263 2005-07-11  Bruno Haible  <bruno@clisp.org>
34264
34265         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
34266         Reported by Jim Meyering.
34267
34268 2005-07-10  Bruno Haible  <bruno@clisp.org>
34269
34270         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
34271         Needed when size_t is smaller than 'unsigned int'.
34272         Reported by Paul Eggert.
34273
34274 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34275
34276         * modules/argp (Depends-on): Add unlocked-io
34277
34278 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34279
34280         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
34281         block of defines.
34282
34283 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
34284
34285         * config/srclist.txt: Comment out regcomp.c, since we have a porting
34286         fix now.
34287
34288 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
34289         and Paul Eggert  <eggert@cs.ucla.edu>
34290
34291         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
34292         in wint_t, not wchar_t.  Remove now-unnecessary cast.
34293
34294 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
34295
34296         * modules/regex (Files): Add lib/regex_internal.c,
34297         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
34298         (Depends-on): Add extensions.
34299         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
34300
34301 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
34302
34303         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
34304         pathconf.
34305         * m4/same.m4 (gl_SAME): Likewise.
34306         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
34307
34308         * m4/regex.m4: Adjust to new libc regex implementation.
34309         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
34310         all the .c and .h parts of (the new) regex.
34311         Quote the m4 stuff better.
34312         Check for RE_ICASE bug of old gnulib.
34313         Check for REG_STARTEND of recent libc.
34314         Rename local variables from jm_* to gl_*.
34315         Quote operand of "test -f".
34316         Say "recent enough" version of libc, not "version 2".
34317         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
34318         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
34319         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
34320         Remove check for btowc, isascii.
34321         Require AM_LANGINFO_CODESET.
34322
34323 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
34324
34325         * lib/regex.c, regex.h: Sync from libc.
34326         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
34327         * lib/regexec.c:
34328         New files, synced from libc, except that regex_internal.h
34329         currently has a small porting fix.
34330
34331 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
34332
34333         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
34334         regex_internal.c, regexec.c.
34335         Add regex_internal.h too, but as a comment, since the libc version
34336         is currently broken in gnulib mode.
34337
34338 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
34339
34340         Support programs like Emacs that use gnulib but not gettext.
34341         * MODULES.html.sh (Internationalization functions): Add gettext-h.
34342         * modules/gettext-h: New file.
34343         * modules/gettext (Files): Remove lib/gettext.h.
34344         (Depends-on): Add gettext-h.
34345         (Makefile.am): Remove lib_SOURCES.
34346         * modules/argmatch, modules/c-stack, modules/closeout:
34347         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
34348         * modules/execute, modules/file-type, modules/getaddrinfo:
34349         * modules/getopt, modules/human, modules/javacomp:
34350         * modules/javaexec, modules/mkdir-p, modules/obstack:
34351         * modules/openat, modules/pagealign_alloc, modules/pipe:
34352         * modules/quotearg, modules/regex, modules/rpmatch:
34353         * modules/unicodeio, modules/userspec, modules/version-etc:
34354         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
34355         * modules/xsetenv:
34356         Depend on gettext-h, not gettext.
34357
34358 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
34359
34360         * gnulib-tool (func_import): Add support for 'public domain' license.
34361         * modules/alloca, modules/atexit, modules/memmove:
34362         Now public domain, not GPL.
34363         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
34364         * modules/realloc, modules/strerror, modules/strtod:
34365         Now LGPL, not GPL.
34366
34367 2005-07-05  Bruno Haible  <bruno@clisp.org>
34368
34369         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
34370         autoconf CVS. Needed for mingw.
34371
34372 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
34373
34374         Remove the dependency of the strftime module on the tzset module.
34375         * modules/strftime (Depends-on): Remove dependency on tzset.
34376
34377 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
34378
34379         Remove the dependency of the strftime module on the tzset module.
34380         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
34381         gl_FUNC_TZSET_CLOBBER.
34382
34383 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
34384
34385         Remove the dependency of the strftime module on the tzset module.
34386         * lib/strftime.c (my_strftime)
34387         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
34388         Copy the input structure, to work around some of the bug with
34389         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
34390         Solaris releases, you should also use the tzset module, but we won't
34391         require it as a dependency any more since we don't want LGPLed code
34392         to depend on GPLed code.
34393
34394 2005-07-02  Jim Meyering  <jim@meyering.net>
34395
34396         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
34397         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
34398         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
34399         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
34400
34401 2005-07-02  Jim Meyering  <jim@meyering.net>
34402
34403         * lib/backupfile.c (backup_args): Change a `0' to NULL.
34404
34405 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
34406
34407         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
34408         declares only 'struct timespec;' (!).
34409
34410 2005-07-01  Jim Meyering  <jim@meyering.net>
34411
34412         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
34413         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
34414         * lib/save-cwd.c, tempname.c:
34415         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
34416         and don't include <sys/file.h>).
34417
34418 2005-06-29  Jim Meyering  <jim@meyering.net>
34419
34420         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
34421         type name.  Use the variable name instead.
34422         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
34423         Likewise.
34424
34425 2005-06-28  Simon Josefsson  <jas@extundo.com>
34426
34427         * modules/check-version (Files): Add check-version.m4.
34428
34429 2005-06-28  Simon Josefsson  <jas@extundo.com>
34430
34431         * m4/check-version.m4: New file, suggested by Jim Meyering
34432         <jim@meyering.net>.
34433
34434 2005-06-28  Simon Josefsson  <jas@extundo.com>
34435
34436         * lib/check-version.h, lib/check-version.c: New files.
34437
34438 2005-06-28  Simon Josefsson  <jas@extundo.com>
34439
34440         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
34441         collision with global variable.  Better indentation.  Don't
34442         increment buffer pointer beyond buffer end.  Based on comments
34443         from Paul Eggert <eggert@cs.ucla.edu>.
34444
34445         * lib/base64.h: Indent.
34446
34447 2005-06-28  Simon Josefsson  <jas@extundo.com>
34448
34449         * doc/gnulib.texi (Library version handling): New section.
34450
34451 2005-06-28  Jim Meyering  <jim@meyering.net>
34452
34453         * check-module (find_included_lib_files): Hard-code another
34454         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
34455         but modules/fts-lgpl (correctly) does not list those files.
34456
34457         * modules/canonicalize (Files): Add lib/pathmax.h.
34458
34459 2005-06-25  Simon Josefsson  <jas@extundo.com>
34460
34461         * modules/check-version: New file.
34462
34463 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
34464
34465         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
34466         initializer of struct addrinfo, as an indication that we don't
34467         care how many members the structure has.
34468
34469 2005-06-24  Derek Price  <derek@ximbiot.com>
34470         and Bruno Haible  <bruno@clisp.org>
34471
34472         Remove stat module & update lstat.
34473         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
34474         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
34475         * m4/stat.m4: Remove this file.
34476
34477 2005-06-24  Derek Price  <derek@ximbiot.com>
34478         and Bruno Haible  <bruno@clisp.org>
34479
34480         Remove stat module & update lstat.
34481         * lib/stat.c: Remove this file...
34482         (slash_aware_lstat): ...moving this content and its support...
34483         * lib/lstat.c (rpl_lstat): ...into here.
34484         * lib/lstat.h: New file.
34485
34486 2005-06-24  Derek Price  <derek@ximbiot.com>
34487         and Bruno Haible  <bruno@clisp.org>
34488
34489         Remove stat module & update lstat.
34490         * config/srclist.txt (libc sources): Remove stat.
34491
34492 2005-06-24  Derek Price  <derek@ximbiot.com>
34493         and Bruno Haible  <bruno@clisp.org>
34494
34495         Remove stat module & update lstat.
34496         * MODULES.html.sh (stat): Remove.
34497         * MODULES.html: Regenerated.
34498         * modules/lstat (Description): Correct function name.
34499         (Files): Add "lstat.h".
34500         (Depends-on): Remove stat, add xalloc, stat-macros.
34501         * modules/stat: Remove this file.
34502         (Include): Add "lstat.h", remove <sys/stat.h>.
34503
34504 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
34505
34506         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
34507         (ranged_convert): Don't save conversion in a temporary struct.
34508         This causes a warning with GCC 4.0.0, and anyway in the typical
34509         case it's not worth the extra 100 bytes or so of code.
34510         (ranged_convert, __mktime_internal): When calling a function via a
34511         pointer P, use P () rather than (*P) (), as we now assume C89 or
34512         better.
34513
34514 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
34515
34516         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
34517         "who -r" failed to give output.  Problem reported by Tim Waugh.
34518
34519         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
34520         (xcalloc): Use it to avoid needless tests.
34521         Problem reported by Jim Meyering.
34522
34523 2005-06-20  Derek Price  <derek@ximbiot.com>
34524
34525         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
34526         unnecessary for Autoconfs > 2.59c.
34527
34528 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
34529
34530         * lib/argp.h (__option_is_short): Check upper limit of
34531         __key. Isprint() requires its argument to have the value
34532         of an unsigned char or EOF.
34533
34534 2005-06-16  Jim Meyering  <jim@meyering.net>
34535
34536         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
34537         when either N or S is zero.
34538
34539 2005-06-16  Derek Price  <derek@ximbiot.com>
34540
34541         * m4/bison.m4: Declare YACC & YFLAGS precious.
34542
34543 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
34544
34545         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
34546         multibyte string or pattern, fall back on unibyte matching.
34547         Problem reported by James Youngman.
34548
34549 2005-06-08  Bruno Haible  <bruno@clisp.org>
34550
34551         * modules/csharpcomp: New file.
34552         * MODULES.html.sh (C#): Add csharpcomp.
34553
34554 2005-06-08  Bruno Haible  <bruno@clisp.org>
34555
34556         * m4/csharpcomp.m4: New file, from GNU gettext.
34557
34558 2005-06-08  Bruno Haible  <bruno@clisp.org>
34559
34560         * lib/csharpcomp.h: New file, from GNU gettext.
34561         * lib/csharpcomp.c: New file, from GNU gettext.
34562         * lib/csharpcomp.sh.in: New file, from GNU gettext.
34563
34564 2005-06-08  Bruno Haible  <bruno@clisp.org>
34565
34566         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
34567         warning on mingw.
34568
34569 2005-06-07  Derek Price  <derek@ximbiot.com>
34570
34571         Sync from CVS.
34572         * lib/glob_.h: Indent nested #ifdef.
34573
34574 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
34575
34576         Sync from coreutils.
34577         Use "file name" when talking about file names, instead of "filename"
34578         or "path", as per the GNU coding standards.
34579         * lib/mkdir-p.c: Renamed from makepath.c.
34580         (make_dir_parents): Renamed from make_path.  All callers changed.
34581         * lib/mkdir-p.h: Likewise.  All includers changed.
34582         * lib/filenamecat.c: Renamed from path-concat.c.
34583         (file_name_concat): Renamed from path_concat.  All callers changed.
34584         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
34585         * lib/filenamecat.h: Likewise.  All includers changed.
34586         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
34587         in comments or local variable names.
34588         * lib/basename.c: Likewise.
34589         * lib/canonicalize.c, canonicalize.h: Likewise.
34590         * lib/dirname.c, dirname.h: Likewise.
34591         * lib/euidaccess.c: Likewise.
34592         * lib/exclude.c: Likewise
34593         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
34594         * lib/fsusage.c, fsuage.h: Likewise.
34595         * lib/fts.c, fts_.h: Likewise.
34596         * lib/getcwd.c: Likewise.
34597         * lib/getloadavg.c: Likewise.
34598         * lib/mkstemp.c: Likewise.
34599         * lib/mountlist.c, mountlist.h: Likewise.
34600         * lib/openat.c, openat.h: Likewise.
34601         * lib/readlink-stub.c: Likewise.
34602         * lib/readutmp.c, readutmp.h: Likewise.
34603         * lib/rename.c: Likewise.
34604         * lib/rmdir.c: Likewise.
34605         * lib/same.c: Likewise.
34606         * lib/savedir.c: Likewise.
34607         * lib/stripslash.c: Likewise.
34608         * lib/tempname.c: Likewise.
34609         * lib/xreadlink.c: Likewise.
34610         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
34611         All uses changed.
34612         * lib/exclude.h: Likewise.
34613
34614         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
34615         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
34616         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
34617         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
34618         * lib/pathmax.h: Include <limits.h> unconditionally, since other
34619         files have been getting away with it for years (MORE/BSD 4.3
34620         is extinct now).
34621         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
34622         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
34623
34624         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
34625         Define to 256, not 255, as per modern POSIX.
34626
34627 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
34628
34629         Sync from coreutils.
34630         Use "file name" when talking about file names, instead of "filename"
34631         or "path", as per the GNU coding standards.
34632         * MODULES.html.sh: mkdir-p renamed from makepath.
34633         filenamecat renamed from path-concat.
34634         * modules/filenamecat: Renamed from modules/path-concat.
34635         (Files): filenamecat.h and filenamecat.c renamed from
34636         path-concat.h and path-concat.c.
34637         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
34638         (Include): filenamecat.h, not path-concat.h.
34639         * modules/mkdir-p: Renamed from modules/makepath.
34640         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
34641         makepath.c.
34642         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
34643         (Include): mkdir-p.h, not makepath.h.
34644
34645 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
34646
34647         Sync from coreutils.
34648         * m4/mkdir-p.m4: Renamed from makepath.m4.
34649         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
34650         Rename files from makepath.c to mkdir-p.c, and from
34651         makepath.h to mkdir-p.h.
34652         * m4/filenamecat.m4: Renamed from path-concat.m4.
34653         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
34654         Rename files from path-concat.c to filenamecat.c,
34655         and from path-concat.h to filenamecat.h.
34656         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
34657         "file name" in local variables or comments.
34658         * m4/rename.m4: Likewise.
34659
34660 2005-06-01  Bruno Haible  <bruno@clisp.org>
34661
34662         * modules/csharpexec: New file.
34663         * MODULES.html.sh (C#): New section.
34664
34665 2005-06-01  Bruno Haible  <bruno@clisp.org>
34666
34667         * m4/csharp.m4: New file, from GNU gettext.
34668         * m4/csharpexec.m4: New file, from GNU gettext.
34669
34670 2005-06-01  Bruno Haible  <bruno@clisp.org>
34671
34672         * lib/csharpexec.h: New file, from GNU gettext.
34673         * lib/csharpexec.c: New file, from GNU gettext.
34674         * lib/csharpexec.sh.in: New file, from GNU gettext.
34675
34676 2005-05-31  Derek Price  <derek@ximbiot.com>
34677             Paul Eggert  <eggert@cs.ucla.edu>
34678
34679         Sync from cvs.
34680         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
34681
34682 2005-05-31  Derek Price  <derek@ximbiot.com>
34683             Paul Eggert  <eggert@cs.ucla.edu>
34684
34685         Sync from cvs.
34686         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
34687
34688 2005-05-29  Derek Price  <derek@ximbiot.com>
34689
34690         * config/srclist.txt (glob_.h, glob.c): Add these files.
34691
34692 2005-05-29  Derek Price  <derek@ximbiot.com>
34693
34694         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
34695         * modules/glob: New file.
34696         * modules/getlogin_r: Add link to POSIX spec in description.
34697
34698 2005-05-29  Derek Price  <derek@ximbiot.com>
34699             Paul Eggert  <eggert@cs.ucla.edu>
34700
34701         * m4/glob.m4: New file.
34702
34703 2005-05-29  Derek Price  <derek@ximbiot.com>
34704             Paul Eggert  <eggert@cs.ucla.edu>
34705
34706         * lib/glob_.h, lib/glob.c: New files.
34707
34708 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
34709
34710         * modules/fts (Files): Remove m4/inttypes-pri.m4.
34711         * modules/fts-lgpl (Depends-on): Remove gettext.
34712
34713 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
34714
34715         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
34716         and don't require gt_INTTYPES_PRI.
34717
34718 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
34719
34720         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
34721
34722         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
34723         the configuration hassle isn't worth it.
34724         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
34725         (LONGEST_MODIFIER, PRIuMAX): Remove.
34726
34727 2005-05-27  Bruno Haible  <bruno@clisp.org>
34728
34729         * lib/getlogin_r.h: Remove second include of <stddef.h>.
34730
34731 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
34732
34733         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
34734         _POSIX_PTHREAD_SEMANTICS for Solaris.
34735
34736 2005-05-25  Derek Price  <derek@ximbiot.com>
34737
34738         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
34739
34740 2005-05-25  Derek Price  <derek@ximbiot.com>
34741             Paul Eggert  <eggert@cs.ucla.edu>
34742
34743         * modules/getlogin_r, m4/getlogin_r.m4: New files.
34744         * lib/getlogin_r.c, getlogin_r.h: New files.
34745
34746 2005-05-25  Bruno Haible  <bruno@clisp.org>
34747             Derek Price  <derek@ximbiot.com>
34748
34749         * lib/getlogin_r.h: Simplify API documentation.
34750
34751 2005-05-23  Derek Price  <derek@ximbiot.com>
34752
34753         * modules/minmax (Files): Add m4/minmax.m4.
34754         (configure.ac): Add gl_MINMAX.
34755
34756 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
34757
34758         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
34759         so that unistd-safer.h (GPL'ed code) need not be included.
34760
34761 2005-05-22  Bruno Haible  <bruno@clisp.org>
34762
34763         * m4/minmax.m4: New file.
34764         Based on a patch by Derek Price <derek@ximbiot.com>.
34765
34766 2005-05-22  Bruno Haible  <bruno@clisp.org>
34767
34768         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
34769         (INT64_MIN): Fix definition.
34770         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
34771
34772         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
34773         NEED_SIGNED_INT_TYPES.
34774
34775         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
34776         HAVE_SYSTEM_INTTYPES.
34777
34778 2005-05-22  Bruno Haible  <bruno@clisp.org>
34779
34780         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
34781         Also include <sys/param.h> if it defines MIN, MAX.
34782         Based on a patch by Derek Price <derek@ximbiot.com>.
34783
34784 2005-05-21  Jim Meyering  <jim@meyering.net>
34785
34786         * modules/fts (Files): Add m4/inttypes-pri.m4.
34787         (Depends-on): Add lstat and remove gettext.  Alphabetize.
34788
34789 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
34790
34791         New fts module.
34792         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
34793         (setup_dir, free_dir): New functions.
34794         (enter_dir, leave_dir): Define trivial
34795         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
34796         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
34797         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
34798         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
34799         Move to fts-cycle.c.
34800         (fts_open): Use setup_dir.
34801         (fts_close): Use free_dir.
34802         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
34803         This adds a label and some gotos, but the alternatives were messier.
34804         Check for memory allocation failure when entering a dir.
34805         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
34806         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
34807         (FTS): New member fts_cycle, that is a union that contains the
34808         old active_dir_ht and cycle_state.  All uses changed to mention
34809         fts_cycle.ht and fts_cycle.state.
34810         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
34811         fts.c, with the following changes:
34812         (setup_dir, free_dir): New functions.
34813         (enter_dir): Now returns bool.  Return true if successful, false
34814         if memory exhausted.  All callers changed.
34815         Do not bother partly cleaning up on
34816         memory allocation failure; that is free_dir's job.
34817         However, free ad if hash_insert fails, to avoid memory leak.
34818         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
34819         fts->fts_options to see which union member to use.
34820
34821 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
34822
34823         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
34824         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
34825
34826 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
34827
34828         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
34829
34830 2005-05-20  Jim Meyering  <jim@meyering.net>
34831
34832         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
34833         Now a macro, to pacify GCC.
34834
34835 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
34836
34837         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
34838         of -1.
34839
34840 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
34841
34842         * lib/chown.c (rpl_chown): Return -1 on failure.
34843
34844 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
34845
34846         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
34847         Don't check for stddef.h.
34848         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
34849         don't use its results.
34850         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
34851         since we include them unconditionally.  Don't require
34852         AM_STDBOOL_H, since stdbool is a prerequisite.
34853         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
34854         since we assume C89 or better.
34855         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
34856         as we don't use their results.
34857         Don't check for fchdir, memmove, memset, strrchr, as we use
34858         them unconditionally.
34859         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
34860         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
34861
34862 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
34863
34864         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
34865         Include <stddef.h> unconditionally, since we assume C89 now.
34866         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
34867         * lib/fts.c: Include fts_.h first, to check interface.
34868         Do not include intprops.h; no longer needed.
34869         Include cycle-check.h and hash.h, since fts_.h no longer does.
34870         Remove unnecessary casts of closedir to void.
34871         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
34872         decide whether to decrement nlinks.
34873         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
34874         (FTS): Use struct hash_table * instead of Hash_table, so that
34875         we no longer need to include hash.h here.
34876
34877 2005-05-18  Jim Meyering  <jim@meyering.net>
34878
34879         * modules/dirfd (License): Change to LGPL.  Most of the code
34880         is already in the public domain.
34881
34882 2005-05-18  Jim Meyering  <jim@meyering.net>
34883
34884         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
34885         Reported by Yoann Vandoorselaere.
34886
34887 2005-05-17  Jim Meyering  <jim@meyering.net>
34888
34889         * m4/fts.m4: New file, from coreutils.
34890
34891 2005-05-17  Jim Meyering  <jim@meyering.net>
34892
34893         * lib/fts.c, lib/fts_.h: New files, from coreutils.
34894
34895 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
34896
34897         Sync from coreutils.
34898         * m4/unlinkdir.m4: New file.
34899
34900 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
34901
34902         Sync from coreutils.
34903         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
34904         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
34905         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
34906         White space changes only.
34907         * lib/makepath.c (make_path): Port to hosts where leading "//" is
34908         special.
34909         * lib/yesno.c: Include getline.h, not ctype.h.
34910         (yesno): Don't remove leading white space; POSIX doesn't allow it.
34911         Use getline to remove arbitrary restriction on response length.
34912
34913 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
34914
34915         * config/srclist-update: Spell out "Street" in FSF postal
34916         mail address; this is the style the FSF seems to prefer.
34917
34918         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
34919         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
34920         this updates FSF postal mail address.
34921
34922         Sync from coreutils.
34923         * modules/unlinkdir: New file.
34924         * modules/yesno (Depends-on): Add getline.
34925         * MODULES.html.sh (File system functions): Add unlinkdir.
34926
34927 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
34928
34929         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
34930         lib/strsep.h:
34931         Change the initial comment to refer to GPL, not LGPL.
34932         gnulib-tool will change it to LGPL as needed.
34933
34934         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
34935         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
34936         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
34937         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
34938         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
34939         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
34940         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
34941         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
34942         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
34943         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
34944         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
34945         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
34946         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
34947         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
34948         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
34949         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
34950         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
34951         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
34952         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
34953         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
34954         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
34955         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
34956         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
34957         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
34958         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
34959         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
34960         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
34961         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
34962         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
34963         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
34964         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
34965         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
34966         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
34967         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
34968         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
34969         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
34970         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
34971         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
34972         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
34973         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
34974         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
34975         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
34976         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
34977         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
34978         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
34979         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
34980         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
34981         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
34982         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
34983         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
34984         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
34985         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
34986         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
34987         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
34988         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
34989         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
34990         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
34991         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
34992         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
34993         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
34994         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
34995         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
34996         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
34997         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
34998         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
34999         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
35000         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
35001         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
35002         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
35003         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
35004         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
35005         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
35006         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
35007         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
35008         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
35009         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
35010         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
35011         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
35012         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
35013         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
35014         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
35015         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
35016         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
35017         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
35018         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
35019         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
35020         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
35021         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
35022         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
35023         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
35024         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
35025         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
35026         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
35027         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
35028         lib/yesno.c, lib/yesno.h:
35029         Update FSF postal mail address.
35030
35031 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
35032
35033         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
35034         tests/test-memmem.c, tests/test-stpncpy.c:
35035         Update FSF postal mail address.
35036
35037 2005-05-13  Bruno Haible  <bruno@clisp.org>
35038
35039         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
35040         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
35041         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
35042         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
35043         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
35044         Add support for 64-bit integers in the MSVC compiler.
35045
35046 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
35047
35048         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
35049
35050 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
35051
35052         * gnulib-tool (func_import): Sort and uniquify recommended includes.
35053
35054 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
35055
35056         * doc/getdate.texi (General date syntax): Don't say that date
35057         date --iso-8601=ns generates acceptable dates; it doesn't yet.
35058         Problem reported by Nic Ferrier.
35059
35060 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35061
35062         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
35063         specified in ai_socktype. Fix invalid ai_protocol
35064         check. ai_protocol is usually set to 0 or depending on
35065         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
35066         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
35067         ai_socktype / ai_protocol in the returned addrinfo structure.
35068
35069 2005-05-10  Simon Josefsson  <jas@extundo.com>
35070
35071         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
35072         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
35073
35074 2005-05-10  Karl Berry  <karl@gnu.org>
35075
35076         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
35077         (from http://www.gnu.org/licenses).
35078         * doc/COPYING.LIB: also rename to COPYING.LESSER.
35079         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
35080         fdl.texi suffices.
35081
35082 2005-05-10  Karl Berry  <karl@gnu.org>
35083
35084         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
35085         (COPYING.DOC): remove.
35086
35087         * config/srclist-update: new FSF address.
35088
35089 2005-05-10  Derek Price  <derek@ximbiot.com>
35090
35091         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
35092         possible.
35093
35094 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35095             Bruno Haible  <bruno@clisp.org>
35096
35097         * modules/inet_ntop: New file.
35098         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35099         inet_ntop.
35100
35101 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35102             Bruno Haible  <bruno@clisp.org>
35103
35104         * m4/inet_ntop.m4: New file.
35105
35106 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
35107             Bruno Haible  <bruno@clisp.org>
35108
35109         * lib/inet_ntop.h: New file.
35110         * lib/inet_ntop.c: New file, from glibc with modifications.
35111
35112 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
35113
35114         * modules/time_r (License): Change to LGPL.
35115         * modules/extensions (License): Change to LGPL.  Actually,
35116         the license is more permissive than that, but currently gnulib-tool
35117         doesn't know how to handle more-permissive licenses.
35118
35119         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
35120         Problem reported by Dave Love.
35121
35122 2005-05-08  Jim Meyering  <jim@meyering.net>
35123
35124         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
35125         blank.
35126
35127 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
35128
35129         * modules/argmatch (Depends-on): Add stdbool.
35130         * modules/backupfile (Depends-on): Likewise.
35131         * modules/chdir-long (Depends-on): Likewise.
35132         * modules/closeout (Depends-on): Likewise.
35133         * modules/cycle-check (Depends-on): Likewise.
35134         * modules/dirname (Depends-on): Likewise.
35135         * modules/fnmatch (Depends-on): Likewise.
35136         * modules/fsusage (Depends-on): Likewise.
35137         * modules/fwriteerror (Depends-on): Likewise.
35138         * modules/getcwd (Depends-on): Likewise.
35139         * modules/getloadavg (Depends-on): Likewise.
35140         * modules/hard-locale (Depends-on): Likewise.
35141         * modules/makepath (Depends-on): Likewise.
35142         * modules/mountlist (Depends-on): Likewise.
35143         * modules/nanosleep (Depends-on): Likewise.
35144         * modules/posixtm (Depends-on): Likewise.
35145         * modules/quotearg (Depends-on): Likewise.
35146         * modules/readtokens (Depends-on): Likewise.
35147         * modules/readtokens0 (Depends-on): Likewise.
35148         * modules/readutmp (Depends-on): Likewise.
35149         * modules/save-cwd (Depends-on): Likewise.
35150         * modules/strftime (Depends-on): Likewise.
35151         * modules/userspec (Depends-on): Likewise.
35152         * modules/utimecmp (Depends-on): Likewise.
35153         * modules/xgetcwd (Depends-on): Likewise.
35154         * modules/xnanosleep (Depends-on): Likewise.
35155         * modules/xstrtod (Depends-on): Likewise.
35156         * modules/yesno (Depends-on): Likewise.
35157
35158 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
35159
35160         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
35161         needless checks.
35162
35163 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
35164
35165         Merge from coreutils.  Among other things,
35166         add bulletproofing for cases where stdin, stdout, or stderr are closed.
35167         * lib/fd-safer.c: New file.
35168         * lib/fcntl-safer.h, open-safer.c: Remove.
35169         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
35170         * lib/dup-safer.c: Include unistd-safer.h first.
35171         Don't include errno.h.
35172         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
35173         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
35174         * lib/file-type.c: Rely on file-type.h change.
35175         * lib/getloadavg.c: Include unistd-safer.h.
35176         (getloadavg): Use safer open.
35177         * lib/getusershell.c: Include "stdio-safer.h".
35178         (getusershell): Use safer fopen.
35179         * lib/long-options.c (long_options): Use NULL rather than 0.
35180         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
35181         'free'.
35182         * lib/modechange.c: Likewise.
35183         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
35184         (MODE_DONE): New constant.
35185         (struct mode_change): Remove 'next' member.
35186         (make_node_op_equals): New function; like the old one of the
35187         same name, except it allocates an array.
35188         (mode_compile, mode_create_from_ref): Use it.
35189         (mode_compile): Allocate result as an array, not a linked list.
35190         Parse octal string ourself, so that we catch mistakes like "+0".
35191         (mode_adjust): Arg is an array, not a linked list.
35192         * lib/modechange.c: Include stat-macros.h, xalloc.h.
35193         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
35194         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
35195         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
35196         Remove.  This is now stat-macros.h's job.
35197         (talloc): Remove.  All callers replaced by xalloc, so that
35198         our invokers don't have to worry about reporting memory failures.
35199         (make_node_op_equals): Remove.
35200         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
35201         New constants.
35202         (struct mode_change): Moved here from modechange.h.
35203         (mode_append_entry): Remove.
35204         (mode_compile): Remove MASKED_OPS arg, since it encouraged
35205         apps to have incorrect behavior.  Use simpler algorithm for head
35206         and tail.  Don't futz with umask; that's now the job of mode_adjust.
35207         Detect more invalid usages rather than having somewhat-random behavior.
35208         Don't insert an "a=" action, as that leads to incorrect behavior.
35209         (mode_compile, mode_create_from_ref): Return NULL on error instead
35210         of an enum, since now there's only one way to have an error.  All
35211         callers changed.
35212         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
35213         at the correct time.  Simplify calculation of "+u" and its ilk.
35214         Don't mishandle "+X".
35215         (mode_free): Remove "register" and localize decls.
35216         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
35217         (struct mode_change): Move to modechange.c; callers don't
35218         need to see this stuff.
35219         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
35220         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
35221         (mode_change, mode_adjust): Reflect the new signatures noted above.
35222         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
35223         that might redefine system include files.
35224         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
35225         (my_usleep): Use NULL rather than (void *) 0.
35226         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
35227         Use siginterrupt to specify that system calls should be interrupted.
35228         (rpl_nanosleep): Move initialization of suspended closer to call of
35229         my_usleep.
35230         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
35231         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
35232         (desirable_utmp_entry): New function.
35233         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
35234         using x2nrealloc, to simplify logic.
35235         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
35236         size calculation.  Do not assume utmp file is a regular file.
35237         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
35238         (READ_UTMP_CHECK_PIDS): New constant.
35239         * lib/save-cwd.c: Include unistd-safer.h.
35240         (save_cwd): Use fd_safer.
35241         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
35242         [!_LIBC] Include "stat-macros.h" instead.
35243         * lib/unistd-safer.h (fd_safer): New decl.
35244
35245 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
35246
35247         * modules/getloadavg (Depends-on): Add unistd-safer.
35248         * modules/getusershell (Depends-on): Add stdio-safer.
35249         * modules/lstat (Depends-on): Remove xalloc.
35250         * modules/mkstemp (Depends-on): Add stat-macros.
35251         * modules/modechange (Depends-on): Remove xstrtol.
35252         Add stat-macros, xalloc.
35253         * modules/save-cwd (Depends-on): Add unistd-safer.
35254         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
35255         * modules/unistd-safer (Files): Add lib/fd-safer.c
35256         (Makefile.am): Remove lib_SOURCES.
35257
35258         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
35259         Remove fcntl-safer; unistd-safer supersedes it.
35260
35261 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
35262
35263         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
35264         AC_HEADER_STAT.
35265         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
35266         (gl_PREREQ_CHOWN): Remove.
35267         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
35268         it.  Don't require AC_HEADER_STAT.
35269         (gl_PREREQ_LSTAT): Remove.
35270         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
35271         Don't require AC_HEADER_STAT.
35272         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
35273         (gl_PREREQ_RMDIR): Remove.
35274         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
35275         mention stat-macros.h or AC_HEADER_STAT, since we'll make
35276         the stat-macros module a prerequisite.
35277         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
35278         * m4/filemode.m4 (gl_FILEMODE): Likewise.
35279         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
35280         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
35281         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
35282         variable names.
35283         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
35284         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
35285         variable prefixes.
35286         * m4/fcntl-safer.m4: Remove.
35287         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
35288         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
35289         Invoke gl_PREREQ_FD_SAFER.
35290         (gl_PREREQ_FD_SAFER): New macro.
35291         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
35292         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
35293         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
35294         Remove duplicate call to AC_LIBOBJ(readutmp).
35295         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
35296
35297         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
35298         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
35299
35300 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
35301
35302         * MODULES.html.sh (Misc): Add byteswap.
35303
35304 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
35305
35306         * modules/getcwd (Depends-on): Add extensions.
35307         * modules/openat (Depends-on): Likewise.
35308
35309 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
35310
35311         * modules/byteswap: New file.
35312
35313 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
35314
35315         * m4/byteswap.m4: New file.
35316
35317 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
35318
35319         * lib/byteswap_.h: New file.
35320
35321 2005-04-25  Karl Berry  <karl@gnu.org>
35322
35323         * m4/gettext.m4: Update from GNU gettext 0.14.4.
35324
35325 2005-04-25  Albert Chin  <china@thewrittenword.com>
35326
35327         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
35328         Toolkit C bug.
35329
35330 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
35331
35332         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
35333         (func_ln_if_changed) Remove forcibly for no error message
35334         in case file does not exist.
35335
35336 2005-04-19  Simon Josefsson  <jas@extundo.com>
35337
35338         * gnulib-tool (Options): Make --symlink mean --symbolic.
35339
35340 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
35341
35342         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
35343
35344 2005-04-16  Simon Josefsson  <jas@extundo.com>
35345
35346         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
35347
35348 2005-04-15  Simon Josefsson  <jas@extundo.com>
35349
35350         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
35351
35352 2005-04-15  Simon Josefsson  <jas@extundo.com>
35353
35354         * gnulib-tool: Rename --symlink to --symbolic.
35355
35356 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
35357
35358         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
35359         symbolic links to files instead of copying/moving.  Add --aux-dir,
35360         specifying directory relative --dir where auxiliary build tools
35361         are placed.
35362
35363 2005-04-14  Bruno Haible  <bruno@clisp.org>
35364
35365         * modules/allocsa (License): Change to LGPL.
35366         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
35367
35368 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35369
35370         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
35371         that "UTC +1 second" continues to work.  Problem reported
35372         by Dmitry V. Levin.
35373         (relunit_snumber): New rule.
35374         (relunit): Use it.
35375
35376 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
35377
35378         * lib/getdate.y (universal_time_zone_table): New constant.
35379         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
35380         universal_time_zone_table.
35381         (lookup_zone): Prefer universal_time_zone_table to
35382         local_time_zone_table, so that "GMT" time stamps are allowed in
35383         London during the summer.  Problem reported by Ian Abbott.
35384
35385 2005-04-12  Jim Meyering  <jim@meyering.net>
35386
35387         * lib/human.c (humblock): Set *options even when returning due to
35388         xstrtoumax conversion failure.  Thanks to a used-uninitialized
35389         warning from gcc-4.
35390
35391 2005-04-09  Jim Meyering  <jim@meyering.net>
35392
35393         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
35394         -Wuninitialized: initialize tm0.tm_year.
35395
35396 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
35397
35398         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
35399         count, since there's no maximum.  All uses changed.
35400         Add member dsts_seen.
35401         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
35402         not being INT_MAX.
35403         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
35404         Use pc_rels_seen to decide whther a date is absolute.
35405
35406         * lib/getdate.y (number): Don't overwrite year.
35407         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
35408         check.
35409
35410 2005-04-02  Simon Josefsson  <jas@extundo.com>
35411
35412         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
35413         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
35414
35415 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
35416
35417         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
35418         where no absolute path name can be longer than PATH_MAX.
35419
35420 2005-03-27  Jim Meyering  <jim@meyering.net>
35421
35422         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
35423
35424 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
35425
35426         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
35427         "one's complement" -> "ones' complement" in comment, as per Knuth.
35428         "value of type" -> "type or expression" in comment.
35429         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
35430
35431 2005-03-26  Jim Meyering  <jim@meyering.net>
35432
35433         Comment nits.
35434         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
35435         Correct typos: s/or/of/.
35436
35437 2005-03-26  Jim Meyering  <jim@meyering.net>
35438
35439         * modules/check-include-files: Move to ../ and rename to...
35440         * check-module: ...this.
35441
35442 2005-03-25  Jim Meyering  <jim@meyering.net>
35443
35444         * modules/xvasprintf (Files): Add xalloc.h.
35445
35446 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
35447
35448         * modules/gettext (Files): config/config.rpath ->
35449         build-aux/config.rpath
35450         * modules/iconv (Files): Likewise.
35451         Problem reported by Oskar Liljeblad.
35452
35453 2005-03-23  Jim Meyering  <jim@meyering.net>
35454
35455         * modules/check-include-files: New script to check for
35456         missing dependencies, multiple includes, etc.
35457
35458         * modules/c-strtold (Depends-on): Add xalloc.
35459         * modules/c-strtod (Depends-on): Add xalloc.
35460         * modules/hash (Depends-on): Add xalloc.
35461         (Files): Remove lib/xalloc.h.
35462
35463         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
35464         * modules/userspec (Files): Add lib/inttostr.h.
35465
35466 2005-03-23  Jim Meyering  <jim@meyering.net>
35467
35468         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
35469
35470 2005-03-22  Jim Meyering  <jim@meyering.net>
35471
35472         * modules/stat-macros: New module.
35473         * modules/canonicalize, modules/euidaccess, modules/file-type,
35474         * modules/filemode, modules/lchown, modules/makepath,
35475         * modules/rmdir, modules/stat: Depend on new stat-macros module
35476         rather than listing lib/stat-macros.h manually.
35477         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
35478
35479 2005-03-22  Jim Meyering  <jim@meyering.net>
35480
35481         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
35482
35483 2005-03-22  Bruno Haible  <bruno@clisp.org>
35484
35485         * config/srclist.txt: Replace target directory 'config' with
35486         'build-aux'.
35487         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
35488         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
35489         ../build-aux/.
35490
35491 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
35492
35493         * modules/chdir-long (Depends-on): Add mempcpy.
35494
35495         * modules/acl, modules/backupfile, modules/c-strtod,
35496         modules/c-strtold, modules/canon-host, modules/canonicalize,
35497         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
35498         modules/exclude, modules/exitfail, modules/file-type,
35499         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
35500         modules/getdate, modules/getline, modules/getpagesize,
35501         modules/getpass, modules/getugroups, modules/group-member,
35502         modules/hard-locale, modules/hash, modules/human, modules/idcache,
35503         modules/inttostr, modules/long-options, modules/makepath,
35504         modules/md5, modules/memcasecmp, modules/memcoll,
35505         modules/modechange, modules/mountlist, modules/path-concat,
35506         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
35507         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
35508         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
35509         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
35510         modules/strftime, modules/strndup, modules/strverscmp,
35511         modules/timespec, modules/unlocked-io, modules/userspec,
35512         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
35513         modules/yesno:
35514         Remove lib_SOURCES line from Makefile.am section, as this is now
35515         done automatically by the corresponding Autoconf macro.
35516
35517 2005-03-21  Jim Meyering  <jim@meyering.net>
35518
35519         Changes imported from coreutils.
35520
35521         * lib/cycle-check.c: Don't include xalloc.h.
35522
35523         * lib/path-concat.c: Don't include assert.h.
35524         (path_concat): Remove assertion that would have triggered
35525         for ABASE starting with more than one slash.
35526         Reported by Andreas Schwab.
35527
35528         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
35529         properly when ABASE is an absolute file name.
35530         Correct the description of this function.
35531         Include <assert.h>.
35532         Add an assertion and a test driver.
35533         This fixes a bug introduced on 2004-07-02.
35534         Andreas Schwab reported the resulting failure of cp --parents:
35535         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
35536
35537 2005-03-21  Jim Meyering  <jim@meyering.net>
35538
35539         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
35540         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
35541
35542 2005-03-21  Jim Meyering  <jim@meyering.net>
35543         and  Paul Eggert  <eggert@cs.ucla.edu>
35544
35545         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
35546         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
35547         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
35548         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
35549         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
35550         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
35551         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
35552         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
35553         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
35554         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
35555         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
35556         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
35557         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
35558         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
35559         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
35560         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
35561         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
35562         for these modules.
35563
35564 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
35565
35566         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
35567         (which shouldn't happen), generate nothing instead of returning 0
35568         immediately, so that nstrftime (NULL, ...) doesn't return 0.
35569
35570 2005-03-16  Bruno Haible  <bruno@clisp.org>
35571
35572         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
35573         HAVE_LONGLONG_64BIT.
35574
35575 2005-03-16  Bruno Haible  <bruno@clisp.org>
35576
35577         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
35578         HAVE_LONGLONG_64BIT.
35579
35580 2005-03-16  Bruno Haible  <bruno@clisp.org>
35581
35582         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
35583         HAVE_LONGLONG_64BIT.
35584
35585 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
35586
35587         * lib/strftime.c (my_strftime): Prepend space to format so that we can
35588         reliably distinguish strftime failure from empty output on POSIX
35589         hosts.
35590
35591 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
35592
35593         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
35594         (iconv_string): Don't guess a size-zero buffer, as that might cause
35595         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
35596         result would be 'too large', where 'too large' is (heuristically)
35597         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
35598         overflow concerns.  This will prevent some unwanted malloc failures
35599         when the inputs are very large.
35600
35601 2005-03-15  Karl Berry  <karl@gnu.org>
35602
35603         * config/srclist.txt (config.rpath): from gettext.
35604         * config/config.rpath: update.
35605
35606 2005-03-15  Bruno Haible  <bruno@clisp.org>
35607
35608         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
35609         to 'negate'.
35610
35611         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
35612         variable.
35613
35614         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
35615         results.
35616
35617 2005-03-14  Simon Josefsson  <jas@extundo.com>
35618
35619         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
35620         <fx@gnu.org>.
35621
35622 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
35623
35624         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
35625         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
35626         intprops.h.
35627         * lib/strtol.c: Likewise.
35628
35629 2005-03-14  Jim Meyering  <jim@meyering.net>
35630
35631         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
35632         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
35633         to be nonzero so that we (and caller) can detect the difference
35634         between a valid zero-length expansion and an error return, even
35635         when the underlying strftime fails before writing anything into
35636         that location.
35637
35638 2005-03-14  Bruno Haible  <bruno@clisp.org>
35639
35640         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
35641         Update from GNU gettext 0.14.3.
35642
35643 2005-03-10  Jim Meyering  <jim@meyering.net>
35644
35645         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
35646
35647 2005-03-10  Jim Meyering  <jim@meyering.net>
35648
35649         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
35650         so that this module works on systems without fchdir.
35651
35652 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
35653
35654         Factor int-properties macros into a single file, except for
35655         glibc-related files.
35656         * lib/intprops.h: New file.
35657         * lib/getloadavg.c: Include it instead of limits.h.
35658         (INT_STRLEN_BOUND): Remove.
35659         * lib/human.c: Include intprops.h.
35660         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
35661         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
35662         302/1000.
35663         * lib/inttostr.h: Include intprops.h instead of limits.h.
35664         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
35665         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
35666         for consistency with intprops.h.
35667         (time_t_is_integer, twos_complement_arithmetic): Use them.
35668         * lib/sig2str.h: Include <signal.h>, intprops.h.
35669         (INT_STRLEN_BOUND): Remove.
35670         * lib/strftime.c (TYPE_SIGNED): Remove.
35671         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
35672         * lib/strtol.c: Adjust comments to match intprops.h.
35673         * lib/userspec.c: Include intprops.h.
35674         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
35675         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
35676         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
35677         instead of rolling our own expressions.
35678         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
35679
35680         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
35681         instead of int.
35682         (my_strftime): Do not mishandle years close to INT_MAX, by doing
35683         the right thing even if adding 1900 would overflow.  Similarly
35684         for tm_mon + 1 and tm_yday + 1.
35685         Make %Y always equivalent to %C%y, and similarly for %G and %g.
35686         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
35687         (DO_SIGNED_NUMBER): New macro.
35688         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
35689
35690 2005-03-07  Bruno Haible  <bruno@clisp.org>
35691
35692         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
35693
35694 2005-03-07  Bruno Haible  <bruno@clisp.org>
35695
35696         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
35697
35698 2005-03-04  Derek R. Price  <derek@ximbiot.com>
35699
35700         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
35701         (func_import): Only replace files via --import when they have actually
35702         changed.
35703
35704 2005-03-03  Derek R. Price  <derek@ximbiot.com>
35705
35706         * m4/mmap-anon.m4: New file.
35707         * m4/pagealign_alloc.m4: New file.
35708
35709 2005-03-03  Derek R. Price  <derek@ximbiot.com>
35710             Bruno Haible  <bruno@clisp.org>
35711
35712         * modules/pagealign_alloc: New file.
35713         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
35714
35715 2005-03-03  Derek R. Price  <derek@ximbiot.com>
35716             Bruno Haible  <bruno@clisp.org>
35717
35718         * lib/pagealign_alloc.h: New file.
35719         * lib/pagealign_alloc.c: New file.
35720
35721 2005-03-03  Bruno Haible  <bruno@clisp.org>
35722
35723         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
35724         Use an all-permissive copyright notice, recommended by RMS.
35725
35726 2005-03-02  Bruno Haible  <bruno@clisp.org>
35727
35728         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
35729         of AIX, the replacement has to be done only after <string.h> is
35730         included, therefore not in config.h. stpncpy.h does the replacement,
35731         and stpncpy.c uses it.
35732
35733 2005-03-02  Bruno Haible  <bruno@clisp.org>
35734
35735         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
35736         stpncpy.c uses it.
35737
35738 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
35739
35740         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
35741         The workaround isn't strictly needed for POSIX conformance, and
35742         it's too much of a pain to configure and maintain.  We'll ask
35743         people to fix their kernels instead.
35744         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
35745         (NANOSLEEP_BUG_WORKAROUND): Remove.
35746         (xnanosleep): Remove the workaround.
35747
35748 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
35749
35750         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
35751         Reported by Derek Price.
35752         (Include): Add "timespec.h".
35753
35754         * modules/xnanosleep (Depends-on): Remove gethrxtime.
35755
35756 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
35757
35758         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
35759         to detect nanosleep bug.
35760
35761 2005-03-01  Bruno Haible  <bruno@clisp.org>
35762
35763         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
35764
35765 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
35766
35767         * modules/gethrxtime: New file.
35768         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
35769         (Depends-on): Add gethrxtime.
35770         (configure.ac): Add gl_XNANOSLEEP.
35771         (Makefile.am): Remove lib_SOURCES line.
35772
35773 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
35774
35775         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
35776         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
35777
35778 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
35779
35780         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
35781         * lib/timespec.h (gettime): Return void, since it always
35782         succeeds now.  All uses changed.
35783         * lib/gettime.c (gettime) Likewise.
35784         [HAVE_NANOTIME]: Prefer nanotime.
35785         Assume gettimeofday succeeds, as POSIX requires.
35786         Assime time () succeeds, since other code already does.
35787         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
35788         (timespec_subtract): Remove.
35789         (NANOSLEEP_BUG_WORKAROUND): New constant.
35790         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
35791         things considerably.  Use it only on GNU/Linux hosts, since the
35792         workaround shouldn't be needed elsewhere.
35793
35794 2005-02-24  Bruno Haible  <bruno@clisp.org>
35795
35796         * modules/gettext (Files): Add m4/glibc2.m4.
35797
35798 2005-02-24  Bruno Haible  <bruno@clisp.org>
35799
35800         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
35801         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
35802         * m4/progtest.m4:
35803         Update from GNU gettext 0.14.2.
35804         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
35805
35806 2005-02-24  Bruno Haible  <bruno@clisp.org>
35807
35808         * lib/localcharset.c: Update from GNU gettext 0.14.2.
35809         * lib/config.charset: Update from GNU gettext 0.14.2.
35810
35811 2005-02-24  Bruno Haible  <bruno@clisp.org>
35812
35813         * lib/gettext.h: Update from GNU gettext 0.14.2.
35814
35815 2005-02-23  Simon Josefsson  <jas@extundo.com>
35816
35817         * m4/iconvme.m4: New file.
35818
35819 2005-02-23  Jim Meyering  <jim@meyering.net>
35820
35821         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
35822         change.
35823         Thanks to Bruno Haible for catching it.
35824
35825 2005-02-22  Simon Josefsson  <jas@extundo.com>
35826
35827         * modules/iconvme: New file.
35828
35829         * MODULES.html.sh: Add iconvme.
35830
35831 2005-02-22  Simon Josefsson  <jas@extundo.com>
35832
35833         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
35834
35835 2005-02-22  Simon Josefsson  <jas@extundo.com>
35836
35837         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
35838
35839 2005-02-22  Jim Meyering  <jim@meyering.net>
35840
35841         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
35842         s/ifndef/ifdef/.
35843
35844 2005-02-20  Neil Conway  <neilc@samurai.com>
35845
35846         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
35847         returned by OSX/Darwin if the specified buffer is not large
35848         enough for the hostname.
35849
35850 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
35851
35852         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
35853         pass it to _help, otherwise the latter coredumps trying to
35854         dereference state.root_argp.
35855
35856 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
35857
35858         * modules/chdir-long (Depends-on): Add memrchr.
35859         * modules/memrchr (Files): Add lib/memrchr.h.
35860         (Include): "memrchr.h".
35861
35862 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
35863
35864         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
35865
35866 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
35867
35868         * lib/memrchr.h: New file.
35869         * lib/chdir-long.c: Include it.
35870         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
35871         Don't bother including stddef.h.
35872
35873 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
35874
35875         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
35876         inclusion.
35877         Include <sys/types.h>, for dev_t.
35878         (ME_DUMMY, ME_REMOTE): Move from here....
35879         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
35880         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
35881         Dmitry V. Levin.
35882         Include mountlist.h first, to test the interface.
35883
35884 2005-01-29  Bruno Haible  <bruno@clisp.org>
35885
35886         * lib/progname.c (program_name): Initialize.
35887         Needed when linking statically on MacOS X.
35888
35889 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
35890
35891         Sync from coreutils.
35892         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
35893         (Depends-on): Add c-strtod.
35894         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
35895
35896 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
35897
35898         Sync from coreutils.
35899         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
35900
35901         Remove files that are specific to coreutils.
35902         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
35903
35904 2005-01-28  Bruno Haible  <bruno@clisp.org>
35905
35906         * modules/javacomp: New file.
35907         * MODULES.html.sh (Java): Add javacomp.
35908
35909 2005-01-28  Bruno Haible  <bruno@clisp.org>
35910
35911         * m4/javacomp.m4: New file, from GNU gettext.
35912
35913 2005-01-28  Bruno Haible  <bruno@clisp.org>
35914
35915         * lib/javacomp.sh.in: New file, from GNU gettext.
35916         * lib/javacomp.h: New file, from GNU gettext.
35917         * lib/javacomp.c: New file, from GNU gettext.
35918
35919 2005-01-26  Simon Josefsson  <jas@extundo.com>
35920
35921         * lib/gai_strerror.c: Use GPL in header.
35922
35923 2005-01-26  Bruno Haible  <bruno@clisp.org>
35924
35925         * modules/javaexec: New file.
35926         * MODULES.html.sh (Java): Add javaexec.
35927
35928 2005-01-26  Bruno Haible  <bruno@clisp.org>
35929
35930         * m4/javaexec.m4: New file, from GNU gettext.
35931
35932 2005-01-26  Bruno Haible  <bruno@clisp.org>
35933
35934         * lib/javaexec.sh.in: New file, from GNU gettext.
35935         * lib/javaexec.h: New file, from GNU gettext.
35936         * lib/javaexec.c: New file, from GNU gettext.
35937
35938 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
35939
35940         * modules/lchown (Depends-on): Remove lchown.h
35941
35942 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
35943
35944         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
35945         must be defined if the header file was not found, in order
35946         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
35947
35948 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
35949
35950         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
35951         initializers for struct pentry_state.
35952         (__argp_error): Check return value of __asprintf
35953         (__argp_failure): Translate error message
35954
35955         * lib/argp-parse.c: Removed braces around the expansion of N_()
35956
35957 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35958
35959         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
35960         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
35961         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
35962         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
35963         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
35964         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
35965         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
35966         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
35967         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
35968         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
35969         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
35970         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
35971         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
35972         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
35973         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
35974         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
35975         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
35976         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
35977         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
35978         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
35979         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
35980         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
35981         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
35982         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
35983         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
35984         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
35985         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
35986         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
35987         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
35988         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
35989         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
35990         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
35991         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
35992         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
35993         xstrtol.m4, xstrtoumax.m4, yesno.m4:
35994         Use an all-permissive copyright notice, recommended by RMS.
35995
35996 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
35997
35998         * modules/chdir-long (Depends-on): Remove mempcpy.
35999
36000 2005-01-21  Jim Meyering  <jim@meyering.net>
36001
36002         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
36003         same value as for Solaris 9.
36004
36005         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
36006         component length.  This included changing the parameter to be
36007         of type `char *' rather than `char const *'.
36008         * lib/chdir-long.h (chdir_long): Update prototype.
36009
36010         * lib/openat.c (fdopendir, fstatat): New functions.
36011         * lib/openat.h: Include headers required for use of DIR and struct
36012         stat.
36013         [AT_SYMLINK_NOFOLLOW]: Define.
36014         (fdopendir, fstatat): Add prototypes.
36015
36016 2005-01-21  Bruno Haible  <bruno@clisp.org>
36017
36018         * modules/classpath: New file.
36019         * MODULES.html.sh (Java): Add classpath.
36020
36021 2005-01-21  Bruno Haible  <bruno@clisp.org>
36022
36023         * lib/classpath.h: New file, from GNU gettext.
36024         * lib/classpath.c: New file, from GNU gettext.
36025
36026 2005-01-20  Simon Josefsson  <jas@extundo.com>
36027
36028         * modules/version-etc-fsf: New file.
36029
36030 2005-01-20  Simon Josefsson  <jas@extundo.com>
36031
36032         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
36033         * lib/version-etc.c: Remove version_etc_copyright.
36034         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
36035         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
36036
36037 2005-01-20  Simon Josefsson  <jas@extundo.com>
36038
36039         * lib/base64.h (isbase64): Add.
36040
36041         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
36042         using a unsigned prototype, don't inline.
36043         (base64_decode): Use it.
36044
36045 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
36046
36047         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
36048         it.
36049
36050 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
36051
36052         * lib/save-cwd.c (save_cwd): Remove code to support the case
36053         where fchdir is missing or flaky.
36054
36055 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
36056
36057         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
36058
36059 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
36060
36061         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
36062         AC_LIBSOURCES now does this.
36063         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
36064         with new ullong_max module.
36065
36066 2005-01-19  Bruno Haible  <bruno@clisp.org>
36067
36068         * modules/sh-quote: New file.
36069         * MODULES.html.sh (Executing programs): Add sh-quote.
36070
36071 2005-01-19  Bruno Haible  <bruno@clisp.org>
36072
36073         * lib/sh-quote.h: New file, from GNU gettext.
36074         * lib/sh-quote.c: New file, from GNU gettext.
36075
36076 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
36077
36078         Merge from coreutils.
36079         * m4/ullong_max.m4: New file.
36080         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
36081         (gl_MACROS): Assume localeconv exists.
36082
36083 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
36084
36085         Merge changes from coreutils, as described below in several
36086         changelogs dated today.
36087
36088         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
36089         (O_DIRECTORY): Remove; not needed here, since "." must be
36090         a directory.  All uses removed.
36091         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
36092         universal on Suns, and we also need to test for IRIX.
36093         Revamp code to use 'if' rather than '#if'.
36094         Avoid unnecessary comparison of cwd->desc to 0.
36095
36096         * lib/utimens.c (futimens): Robustify the previous patch, by checking
36097         for known valid error numbers rather than observed invalid ones.
36098
36099 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
36100
36101         * modules/ullong_max: New file.
36102
36103         * modules/chdir-long, modules/openat: New files.
36104         * modules/save-cwd (Depends-on): Depend on chdir-long.
36105         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
36106
36107 2005-01-18  Jim Meyering  <jim@meyering.net>
36108
36109         Merge from coreutils.
36110         * m4/chdir-long.m4, m4/openat.m4: New files.
36111         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
36112         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
36113         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
36114         is sane and DOES follow symlinks.  Besides, testing 20 different
36115         systems found no broken chown implementations.
36116         Prompted by a change in rsync's copy of this macro.
36117         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
36118
36119         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
36120
36121         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
36122         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
36123         NULL-means-set-to-current-time semantics.
36124         Remove temporary file immediately, rather than waiting
36125         for configure's at-exit trap code to do it.
36126
36127 2005-01-18  Jim Meyering  <jim@meyering.net>
36128
36129         * lib/version-etc.c (version_etc_copyright): Update copyright date.
36130
36131         * lib/utimens.c (futimens): Account for the fact that futimes
36132         can also fail with errno == ENOSYS or errno == ENOENT.
36133         Patch from Dmitry V. Levin.
36134
36135         Change the name of the robust chdir function from chdir to chdir_long.
36136         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
36137         (restore_cwd): Use chdir_long, not chdir.
36138         * lib/chdir-long.c: Renamed from chdir.c.
36139         * lib/chdir-long.h: Renamed from chdir.h.
36140         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
36141         Hurd.
36142
36143 2005-01-18  Bruno Haible  <bruno@clisp.org>
36144
36145         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
36146         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
36147         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
36148         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
36149         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
36150         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
36151         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
36152         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
36153         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
36154         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
36155         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
36156         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
36157         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
36158         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
36159         Use an all-permissive copyright notice, recommended by RMS.
36160
36161 2005-01-18  Bob Proulx  <bob@proulx.com>
36162
36163         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
36164         simplify offsetof() macro construct to avoid compile failure with
36165         native HP-UX 11.0 ANSI C compiler.
36166
36167 2005-01-17  Bruno Haible  <bruno@clisp.org>
36168
36169         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
36170         redundant because stpncpy.m4 takes care of it.
36171
36172 2005-01-17  Bruno Haible  <bruno@clisp.org>
36173
36174         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
36175
36176 2005-01-17  Bruno Haible  <bruno@clisp.org>
36177
36178         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
36179         used.
36180
36181 2005-01-17  Bruno Haible  <bruno@clisp.org>
36182
36183         * lib/fwriteerror.h (fwriteerror): Change specification to include
36184         fclose.
36185         * lib/fwriteerror.c: Include <stdbool.h>.
36186         (fwriteerror): At the end, close the file stream. Record whether
36187         stdout was already closed.
36188
36189 2005-01-17  Bruno Haible  <bruno@clisp.org>
36190
36191         * lib/execute.c (environ): Declare if needed.
36192         * lib/pipe.c (environ): Likewise.
36193         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
36194
36195 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
36196
36197         * modules/argp: Depend on vsnprintf
36198
36199 2005-01-10  Jim Meyering  <jim@meyering.net>
36200
36201         * modules/closeout (Depends-on): Add atexit.
36202
36203 2005-01-06  Bruno Haible  <bruno@clisp.org>
36204
36205         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
36206
36207 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
36208
36209         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
36210         definitions to be after all include files, to avoid collisions.
36211         Problem reported by Bob Proulx.
36212
36213 2005-01-04  Jim Meyering  <jim@meyering.net>
36214
36215         Changes imported from coreutils.
36216         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
36217         as the mkstemp template, use a temporary directory and an
36218         8.3-friendly template to avoid trouble on systems like DJGPP.
36219         Reported by Juan M. Guerrero via Stepan Kasal.
36220         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
36221         close. Remove the temporary directory right away, rather than waiting
36222         for configure's at-exit trap code to do it.
36223         Suggestion from Stepan Kasal.
36224
36225 2005-01-01  Simon Josefsson  <jas@extundo.com>
36226
36227         * gnulib-tool: Print #include directives when --import'ing.
36228
36229 2004-12-28  Simon Josefsson  <jas@extundo.com>
36230
36231         * tests/test-base64.c: Include required header files.  Remove
36232         unused variables.
36233
36234 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
36235
36236         * modules/error (Depends-on): Remove gettext.
36237
36238 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
36239
36240         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
36241         not needed.  This removes a dependency on the gettext module.
36242         [defined _LIBC]: Do not include <libintl.h>; not needed.
36243
36244 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
36245
36246         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
36247         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
36248
36249 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
36250
36251         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
36252         HAVE_DECL_STRTOLD.
36253
36254 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
36255
36256         * modules/getdate (Depends-on): Remove alloca-opt.
36257
36258 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
36259
36260         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
36261
36262 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
36263
36264         * lib/argp-parse.c: Include <stddef.h>.
36265         (alignof, alignto): New macros.
36266         (parser_init): Don't assume that void * is aligned sufficiently
36267         for struct option.
36268
36269         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
36270         need to extend the stack.
36271         (YYINITDEPTH): New macro, so that the initial stack isn't overly
36272         large.
36273
36274 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
36275
36276         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
36277
36278 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
36279
36280         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
36281         (2004-10-24) change.  Apparently this was a false alarm.
36282
36283         * modules/getdate: Depend on alloca-opt, not alloca.
36284
36285 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
36286
36287         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
36288         Remove now-obsolete comment about AIX.
36289         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
36290         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
36291         (YYMAXDEPTH): New macro.
36292
36293 2004-12-18  Simon Josefsson  <jas@extundo.com>
36294
36295         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
36296
36297 2004-12-18  Bruno Haible  <bruno@clisp.org>
36298
36299         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
36300
36301 2004-12-18  Bruno Haible  <bruno@clisp.org>
36302
36303         * lib/fatal-signal.c (fatal_signals): Make non-const.
36304         (init_fatal_signals): New function.
36305         (uninstall_handlers, install_handlers): Ignore signals that were set to
36306         SIG_IGN.
36307         (at_fatal_signal): Call init_fatal_signals.
36308         (init_fatal_signal_set): Likewise. Ignore signals that were set to
36309         SIG_IGN.
36310         Reported by Paul Eggert.
36311
36312 2004-12-18  Bruno Haible  <bruno@clisp.org>
36313
36314         * doc/alloca.texi: New file.
36315         * doc/alloca-opt.texi: New file.
36316
36317 2004-12-17  Jim Meyering  <jim@meyering.net>
36318
36319         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
36320         Otherwise, install-sh could exit with improper exit status when
36321         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
36322
36323 2004-12-16  Simon Josefsson  <jas@extundo.com>
36324
36325         * tests/test-base64.c: Add license.
36326
36327 2004-12-15  Stepan Kasal  <address@hidden>
36328
36329         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
36330
36331 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
36332
36333         * modules/getcwd (Files): Add m4/d-ino.m4.
36334         Suggested by Mark D. Baushke.
36335
36336 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
36337
36338         * lib/getdate.y (textint): New member "negative".
36339         (time_zone_hhmm): New function.
36340         Expect 14 shift-reduce conflicts, not 13.
36341         (o_colon_minutes): New rule.
36342         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
36343         (yylex): Set the "negative" member of signed numbers.
36344
36345 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
36346
36347         * doc/getdate.texi (Time of day items, Time zone items):
36348         Describe new formats +00:00, UTC+00:00.
36349
36350 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
36351
36352         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
36353         spurious "-l"s.  Problem reported by Stepan Kasal.
36354
36355 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
36356
36357         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
36358         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
36359
36360 2004-12-04  Simon Josefsson  <jas@extundo.com>
36361
36362         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
36363         Vandoorselaere <yoann@prelude-ids.org>.
36364
36365 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
36366
36367         Changes imported from coreutils.
36368         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
36369         exist.
36370         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
36371
36372 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
36373
36374         Changes imported from coreutils.
36375         * lib/hard-locale.c: Assume <locale.h> exists.
36376         Include "strdup.h".
36377         (GLIBC_VERSION): New macro.
36378         (hard_locale): Assume setlocale exists.
36379         Rewrite to avoid #ifdef.
36380         Use strdup rather than malloc + strcpy.
36381         * lib/human.c: Assume <locale.h> exists.
36382         (human_readable): Assume localeconv exists.
36383
36384 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
36385
36386         * modules/hard-locale (Depends-on): Add strdup.
36387
36388 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
36389
36390         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
36391         convert T2, not T.  (Imported from libc.)
36392
36393 2004-11-30  Simon Josefsson  <jas@extundo.com>
36394
36395         * modules/restrict (License): Change to LGPL.
36396
36397 2004-11-30  Simon Josefsson  <jas@extundo.com>
36398
36399         * m4/restrict.m4: Add copyright and copying conditions.
36400
36401 2004-11-30  Simon Josefsson  <jas@extundo.com>
36402
36403         * m4/base64.m4: New file.
36404
36405 2004-11-30  Simon Josefsson  <jas@extundo.com>
36406
36407         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
36408         base64.
36409
36410         * tests/test-base64.c: New file.
36411
36412         * modules/base64: New file.
36413
36414 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
36415
36416         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
36417         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
36418
36419         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
36420
36421 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
36422
36423         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
36424         (__getcwd.c): Don't restore errno; glibc doesn't.
36425         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
36426         first, falling back to our code only if its results look suspicious.
36427         Ensure that the resulting buffer is only as large as necessary.
36428
36429         * lib/readutmp.c: Include readutmp.h first.
36430         Include <errno.h>, since readutmp.h no longer does that.
36431         * lib/readutmp.h: Don't include <errno.h>,
36432         <sys/param.h>, <time.h>; not needed to establish interface.
36433         (errno): Remove decl.
36434         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
36435         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
36436         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
36437
36438 2004-11-28  Simon Josefsson  <jas@extundo.com>
36439
36440         * lib/base64.h, base64.c: New file.
36441
36442 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
36443
36444         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
36445
36446 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
36447
36448         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
36449         (Depends-on): Remove pathmax, same.  Add mempcpy.
36450         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
36451         (Makefile.am): Append getcwd.h to lib_SOURCES.
36452         (Include): Add getcwd.h.
36453         (Maintainer): Change from Jim Meyering to "all, glibc",
36454         since getdate now uses intended-for-glibc code.
36455         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
36456         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
36457
36458 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
36459
36460         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
36461         HP's ANSI C compiler.
36462         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
36463         Declaring int functions causes warnings on some modern systems and
36464         shouldn't be needed to compile on ancient ones.
36465         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
36466         defined.
36467
36468         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
36469         with the following changes.
36470         (__set_errno): Parenthesize properly.
36471         Include <stdbool.h>.
36472         (MIN, MAX, MATCHING_INO): New macros.
36473         (__getcwd): Define with prototype, not K&R form.
36474         Use heuristics to allocate default buffer on stack if possible.
36475         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
36476         behavior, and to avoid the PATH_MAX limit when computing
36477         ../../../../...
36478         Use MATCHING_INO to compare inode number to file.
36479         Check for arithmetic overflow in size calculations.
36480         Fix bug in reallocation of dot array that caused getcwd to fail
36481         on directories nested deeper than 75.
36482         Be more careful about saving errno on error.
36483         Do not use realloc; use only free+malloc, as this is a bit
36484         more flexible and avoids a needless copy operation.
36485         Do not inspect st_dev and st_ino for symbolic links; POSIX
36486         doesn't specify the latter.
36487         Check for closedir errors.
36488         Avoid needless casts.
36489         Use "#ifdef weak_alias" around weak_alias, to be like other
36490         glibc code.
36491         The following changes to getcwd.c have effect only when used in
36492         gnulib; they have no effect inside glibc proper.
36493         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
36494         as alloca isn't used.
36495         (alloca, __alloca): Likewise.
36496         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
36497         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
36498         unconditionally, as gnulib assumes C89 or better.
36499         Do not include <sys/param.h>.
36500         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
36501         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
36502         better.
36503         (NULL) [!defined NULL]: Remove; we assume C89 or better.
36504         Include <dirent.h> in a way that is compatible with modern Autoconf.
36505         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
36506         New macros, if not already defined.
36507         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
36508         Use "_LIBC", not "defined _LIBC", for consistency.
36509         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
36510         a mempcpy module.
36511         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
36512         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
36513         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
36514         credit only to Jim Meyering and adjust the copyright dates.
36515         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
36516         <stdlib.h>, <unistd.h>, "pathmax.h".
36517         Instead, include "xgetcwd.h" (first) and "getcwd.h".
36518         (INITIAL_BUFFER_SIZE): Remove.
36519         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
36520
36521 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
36522
36523         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
36524         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
36525         Use the _ONCE methods, for efficiency.
36526         Check for fcntl.h.  In test program, include <errno.h>
36527         and <fcntl.h> if available.  Remove old K&R cruft from
36528         test program.  Check for common errors in GNU/Linux,
36529         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
36530         don't do AC_LIBOBJ, as that's getcwd.m4's job.
36531         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
36532         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
36533         name accordingly.
36534         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
36535         accommodate new getcwd.c.
36536         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
36537         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
36538         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
36539         that's all we need now.
36540
36541 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
36542
36543         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
36544         argp-parse.c depends on getopt internals, that means we should
36545         always use our getopt, to be on the safe side.
36546         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
36547         order not to spoil the result of an eventual previous invocation
36548         of gl_GETOPT_SUBSTITUTE.
36549
36550 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
36551
36552         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
36553         redefinition warnings. To avoid them, include the defines
36554         in `#if !defined __need_getopt ... #endif'. The only place
36555         where __getopt_argv_const is used is in definitions
36556         of getopt_long and getopt_long_only below, which are as well
36557         protected by `#ifndef __need_getopt'.
36558         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
36559         __need_getopt after including <stdio.h> and <unistd.h> These
36560         headers might have defined it.
36561
36562 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
36563
36564         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
36565
36566 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
36567
36568         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
36569         (futimens): New function, which uses futimes if available.
36570         (futimens, utimens): Support timespec==NULL, with same semantics
36571         as utime and utimens.
36572         * lib/utimens.h (futimens): New decl.
36573
36574 2004-11-23  Jim Meyering  <jim@meyering.net>
36575
36576         * lib/getopt_.h: Remove trailing blanks.
36577
36578 2004-11-23  Jim Meyering  <jim@meyering.net>
36579
36580         * lib/__fpending.c: Add comment.
36581
36582 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
36583
36584         * modules/canonicalize (Depends-on): Add xreadlink.
36585         Problem reported by James Youngman.
36586
36587 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
36588
36589         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
36590         New macros.
36591         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
36592         optopt): Use them instead of invoking ## directly; otherwise, the
36593         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
36594
36595 2004-11-19  Bruno Haible  <bruno@clisp.org>
36596
36597         * lib/strtok_r.c: Move comments from here...
36598         * lib/strtok_r.h: ... to here.
36599
36600 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
36601
36602         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
36603         implementations that mishandle size_t overflow.
36604
36605 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
36606
36607         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
36608         might fail.  Problem reported by Yoann Vandoorselaere.
36609         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
36610         implementations that mishandle size_t overflow.
36611
36612 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
36613
36614         * modules/canon-host (Depends-on): Add strdup.
36615
36616 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
36617
36618         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
36619
36620 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
36621
36622         * lib/canon-host.c: Include "strdup.h".
36623         (canon_host): Use getaddrinfo if available, so that IPv6 works.
36624         Use strdup instead of malloc/strcpy to duplicate strings.
36625
36626         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
36627         (human_space_before_unit): New constant.
36628         * lib/human.c (human_readable): Support it.
36629
36630         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
36631         (xgetcwd): Set errno correctly when failing.
36632         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
36633         the failure is actually due to a PATH_MAX problem.
36634
36635         Further getopt changes to make it more likely that glibc will
36636         buy the changes back.
36637         * lib/getopt.c (POSIXLY_CORRECT): New constant.
36638         (getopt): Use it, so to preserve glibc semantic
36639         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
36640         when compiling for libc.
36641         * lib/getopt_.h (__getopt_argv_const): Bring it back.
36642         (getopt_long, getopt_long_only): Use it.
36643
36644         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
36645         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
36646         (getopt): Argv is now char * const *, as per standard.
36647         (_getopt_internal_r, _getopt_internal): Argv is now char **,
36648         not char *__getopt_argv_const *.
36649         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
36650         _getopt_long_only_r): Likewise.
36651         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
36652         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
36653         _getopt_long_r, _getopt_long_only_r): Likewise.
36654         * lib/getopt_.h (__getopt_argv_const): Remove.
36655         (getopt): Argv is now char * const *, as per standard.
36656
36657         * lib/getdate.y (tORDINAL): New token.
36658         (day, relunit): Allow it for relative times.
36659         (relative_time_table): Use tORDINAL for ordinals.
36660
36661 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
36662
36663         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
36664         Document that "second" isn't allowed as an ordinal number.
36665
36666 2004-11-16  Jim Meyering  <jim@meyering.net>
36667
36668         * modules/closeout (Depends-on): Add fpending.
36669
36670 2004-11-15  Jim Meyering  <jim@meyering.net>
36671
36672         * lib/closeout.c: Include "__fpending.h" once again.
36673         Include <stdbool.h>.
36674         (close_stdout): Don't fail just because stdout was closed initially,
36675         since some programs don't write to stdout in the normal course of
36676         operation (other than --version and --help), and we don't want this
36677         function to make e.g. `touch file >&-' fail.
36678         But do fail if it was closed and someone has tried to write to it.
36679         E.g., `printf foo >&-' must fail.
36680
36681 2004-11-13  Jim Meyering  <jim@meyering.net>
36682
36683         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
36684
36685 2004-11-12  Simon Josefsson  <jas@extundo.com>
36686
36687         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
36688         small doc fix is still pending.
36689
36690 2004-11-11  Simon Josefsson  <jas@extundo.com>
36691
36692         * modules/strtok_r: New file.
36693
36694         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
36695         strtok_r.
36696
36697 2004-11-11  Simon Josefsson  <jas@extundo.com>
36698
36699         * m4/strtok_r.m4: New file.
36700
36701         * m4/getopt.m4: Replace opterr.
36702
36703 2004-11-11  Simon Josefsson  <jas@extundo.com>
36704
36705         * lib/strtok_r.h, strtok_r.c: New file.
36706
36707 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
36708
36709         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
36710         of replacing opterr, getopt, etc.  This should handle the
36711         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
36712
36713 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
36714
36715         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
36716         we can stop lying to compilers about the constness of argv when we
36717         are compiled outside glibc.
36718         (getopt, getopt_long, getopt_long_only): Use it.
36719         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
36720         _getopt_internal, getopt): Likewise.
36721         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
36722         _getopt_long_only_r): Likewise.
36723         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
36724         _getopt_long_r, _getopt_long_only_r): Likewise.
36725
36726         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
36727         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
36728         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
36729         the other external symbols.
36730         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
36731         declaration, since the above renaming now works around collisions.
36732
36733 2004-11-11  Jim Meyering  <jim@meyering.net>
36734
36735         * lib/linebreak.c: Remove trailing blanks.
36736         * lib/alloca_.h: Likewise.
36737         * lib/acosl.c: Likewise.
36738         * lib/euidaccess.c: Likewise.
36739         * lib/allocsa.h: Likewise.
36740
36741 2004-11-10  Simon Josefsson  <jas@extundo.com>
36742
36743         * m4/getaddrinfo.m4: New file.
36744
36745 2004-11-10  Simon Josefsson  <jas@extundo.com>
36746
36747         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
36748
36749 2004-11-10  Simon Josefsson  <jas@extundo.com>
36750
36751         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
36752         getaddrinfo.
36753
36754         * modules/getaddrinfo: New file.
36755
36756 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
36757
36758         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
36759
36760 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
36761
36762         * lib/mktime.c (SHR): New macro, which is a portable
36763         substitute for >> that should work even on Crays.
36764         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
36765         Problem reported by Mark D. Baushke in
36766         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
36767         * lib/getdate.y (SHR): Likewise.
36768         (tm_diff): Use it.
36769         * lib/strftime.c (SHR): Likewise.
36770         (tm_diff): Use it.
36771         * lib/quotearg.c (struct quoting_options): Use unsigned int for
36772         quote_these_too, so that right shifts are well defined.  All uses
36773         changed.
36774
36775 2004-11-10  Jim Meyering  <jim@meyering.net>
36776
36777         Ensure that no close failure goes unreported.
36778         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
36779         return early when it seems there's nothing to flush.
36780         Don't include __fpending.h.
36781
36782 2004-11-10  Jim Meyering  <jim@meyering.net>
36783
36784         * modules/closeout (Depends-on): Remove fpending.
36785
36786 2004-11-10  Jim Meyering  <jim@meyering.net>
36787
36788         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
36789
36790 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
36791
36792         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
36793         gl_FUNC_STRFTIME.
36794         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
36795         and AC_REQUIRE when possible, to avoid duplicate checks.
36796         Check for <wchar.h>.
36797
36798 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
36799
36800         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
36801
36802 2004-11-09  Bruno Haible  <bruno@clisp.org>
36803
36804         * m4/sockpfaf.m4: New file.
36805
36806 2004-11-05  Bruno Haible  <bruno@clisp.org>
36807
36808         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
36809         Reported by Mark D. Baushke <mdb@cvshome.org>.
36810
36811 2004-11-04  Bruno Haible  <bruno@clisp.org>
36812
36813         2004-09-11  Bruno Haible  <bruno@clisp.org>
36814                 * allocsa.valgrind: New file.
36815         2004-02-06  Bruno Haible  <bruno@clisp.org>
36816                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
36817                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
36818                 Reported by Christopher Seip <chris.seip@hp.com>.
36819
36820 2004-11-04  Bruno Haible  <bruno@clisp.org>
36821
36822         * modules/allocsa (Files): Add lib/allocsa.valgrind.
36823         (Makefile.am): Distribute it.
36824
36825 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
36826
36827         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
36828         with errno == ERANGE if the buffer is too small.
36829         Problem reported by Mark D. Baushke.
36830
36831 2004-11-03  Albert Chin  <china@thewrittenword.com>
36832             Paul Eggert  <eggert@cs.ucla.edu>
36833
36834         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
36835         equivalent, substitute $ac_type for equivalent type rather than
36836         blindly using uint32_t *always* which won't work if uint32_t is not
36837         available.  Define _UINT32_T to work around typedef of uint32_t if
36838         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
36839         2.5.1.
36840
36841 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
36842
36843         * m4/jm-macros.m4: Sync from coreutils.
36844         (gl_MACROS): Check for mbrlen, for pathchk.
36845         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
36846
36847 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
36848
36849         * lib/xreadlink.c (MAXSIZE): New macro.
36850         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
36851         size does not exceed MAXSIZE.  Avoid cast.
36852         As suggested by Mark D. Baushke in
36853         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
36854         if readlink fails with buffer size just under MAXSIZE, try again
36855         with MAXSIZE.
36856
36857 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
36858
36859         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
36860
36861 2004-11-02  Derek R. Price  <derek@ximbiot.com>
36862         and  Paul Eggert  <eggert@cs.ucla.edu>
36863
36864         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
36865         (get_date): Overparenthesize to avoid GCC warning.
36866
36867 2004-11-02  Bruno Haible  <bruno@clisp.org>
36868
36869         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
36870         returns void.
36871
36872 2004-11-02  Bruno Haible  <bruno@clisp.org>
36873
36874         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
36875         function returns void.
36876
36877 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
36878
36879         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
36880         fflush_unlocked, flockfile, funlockfile, funlockfile,
36881         fputs_unlocked, putc_unlocked.
36882
36883 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
36884
36885         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
36886         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
36887         already declared.
36888
36889 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
36890
36891         * modules/getdate (Files): Add doc/getdate.texi.
36892         (Depends-on): Add setenv, xalloc.
36893
36894 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
36895
36896         * lib/getdate.y: Add support for TZ="foo" within a date string.
36897         Fix some bugs near time_t boundaries.  Reject dates with
36898         out-of-range components, e.g., "Sept 31".
36899         Include <stdlib.h>, "setenv.h", "xalloc.h".
36900         (ISDIGIT_LOCALE): Remove; unused.
36901         Note that the TZ and time functions used here are not reentrant.
36902         (mktime_ok, get_tz): New functions.
36903         (TZBUFSIZE): New constant.
36904         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
36905         This requires that we sometimes generate our own TZ="XXX..." setting.
36906
36907 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
36908
36909         * doc/getdate.texi: New file, from coreutils with modifications for
36910         the new TZ parsing.
36911
36912 2004-10-27  Derek R. Price  <derek@ximbiot.com>
36913
36914         * lib/mktime.c (not_equal_tm): Remove redundant check.
36915
36916 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
36917
36918         * modules/regex (lib_SOURCES): Add regex.c.
36919         Reported by James Youngman in
36920         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
36921
36922 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
36923
36924         * lib/getdate.y: Use Bison 1.875 features, and some minor
36925         code cleanups.  This change does not affect semantics.
36926         Don't include <stdlib.h>; no longer needed.
36927         Don't include unlocked-io.h; only the "#if TEST" code uses
36928         stdio, and performance isn't crucial there.
36929         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
36930         Bison 1.875 features as described below.
36931         All uses of "PC." replaced by "pc->".
36932         (YYSTYPE): Add a forward declaration.
36933         (yylex, yyerror): Use full prototypes in forward decls.
36934         Use "%pure-parser" rather than obsolescent "%pure_parser".
36935         Use %parse-param and %lex-param instead of obsolescent
36936         YYPARSE_PARAM and YYLEX_PARAM.
36937         (meridian_table, month_and_day_table, time_units_table,
36938         relative_time_table, time_zone_table, military_table,
36939         lookup_zone, lookup_word, get_date):
36940         Use NULL instead of 0 where appropriate.
36941         (to_hour): Avoid abort (), to avoid a dependency on
36942         stdlib.h.
36943         (yyerror, yylex): Now accepts parser_control * arg.
36944         (main) [TEST]: Use '\0' rather than 0 for char.
36945
36946 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
36947
36948         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
36949
36950 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
36951
36952         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
36953         It's now the caller's responsibility to handle the case where
36954         !HAVE_GETPAGESIZE && !defined getpagesize.
36955
36956         * lib/mktime.c (leapyear): Arg is long int, not int.
36957
36958 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
36959
36960         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
36961
36962 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
36963
36964         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
36965         missing.  Problem reported by James Youngman.
36966
36967 2004-10-16  Simon Josefsson  <jas@extundo.com>
36968
36969         * gnulib-tool: Fix comments.  Fix parse problem.
36970         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
36971
36972 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
36973
36974         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
36975         implementation of getopt_long.  Problem reported by Alexander Taler in:
36976         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
36977
36978 2004-10-15  Bruno Haible  <bruno@clisp.org>
36979
36980         * gnulib-tool: Untabify. Initialize supplied_libname.
36981         (func_usage): More homogenous output.
36982         (func_modules_transitive_closure, func_modules_to_filelist,
36983         func_emit_lib_Makefile_am): New functions.
36984         (func_import): New function, extracted from big case statement. Use
36985         func_get_license, func_modules_transitive_closure,
36986         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
36987         opt_lgpl. Don't use test -a, as it's not portable.
36988         (func_create_testdir): Use func_modules_transitive_closure,
36989         func_modules_to_filelist, func_emit_lib_Makefile_am.
36990
36991 2004-10-15  Bruno Haible  <bruno@clisp.org>
36992
36993         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
36994
36995 2004-10-15  Bruno Haible  <bruno@clisp.org>
36996
36997         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
36998         the portions belonging to each module.
36999         Suggested by Derek Robert Price <derek@ximbiot.com>.
37000
37001 2004-10-12  Simon Josefsson  <jas@extundo.com>
37002
37003         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
37004         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
37005         to real functions.
37006
37007 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37008
37009         * modules/vsnprintf: New file.
37010
37011 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37012
37013         * m4/vsnprintf.m4: New file.
37014
37015 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37016
37017         * lib/vsnprintf.h: New file.
37018         * lib/vsnprintf.c: New file.
37019
37020 2004-10-11  Bruno Haible  <bruno@clisp.org>
37021
37022         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
37023         vsnprintf.
37024
37025 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
37026
37027         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
37028
37029 2004-10-07  Bruno Haible  <bruno@clisp.org>
37030
37031         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
37032         fits into the provided buffer.
37033
37034 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
37035
37036         * lib/diacrit.c, diacrit.h: Add GPL notice.
37037
37038         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
37039         notice.
37040         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
37041         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
37042         This avoids a potential constant-folding bug.
37043
37044 2004-10-05  Bruno Haible  <bruno@clisp.org>
37045
37046         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
37047         for the declaration of strsep.
37048
37049 2004-10-05  Bruno Haible  <bruno@clisp.org>
37050
37051         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
37052
37053 2004-10-04  Simon Josefsson  <jas@extundo.com>
37054
37055         * modules/memmem: New file.
37056         * tests/test-memmem.c: New file.
37057         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
37058
37059 2004-10-04  Simon Josefsson  <jas@extundo.com>
37060
37061         * m4/memmem.m4: New file.
37062
37063 2004-10-04  Simon Josefsson  <jas@extundo.com>
37064
37065         * lib/memmem.h: New file.
37066         * lib/memmem.c: New file, taken from glibc.
37067
37068 2004-10-04  Simon Josefsson  <jas@extundo.com>
37069
37070         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
37071         '#ifdef USE_UNLOCKED_IO'.
37072
37073 2004-10-04  Simon Josefsson  <jas@extundo.com>
37074
37075         * config/srclist.txt: Add memmem from glibc.
37076
37077 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
37078
37079         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
37080
37081         * modules/argmatch, modules/argp, modules/closeout, modules/error,
37082         modules/exclude, modules/getdate, modules/getline,
37083         modules/getndelim2, modules/getpass, modules/getpass-gnu,
37084         modules/getusershell, modules/linebuffer, modules/md5,
37085         modules/mountlist, modules/posixtm, modules/readtokens,
37086         modules/readutmp, modules/regex, modules/sha1,
37087         modules/version-etc, modules/yesno:
37088         Remove dependency on unlocked-io.
37089
37090 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
37091
37092         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
37093
37094         * m4/unlocked-io.m4: Add copyright notice.
37095         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
37096
37097 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
37098
37099         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
37100         * lib/xmalloc.c (xmemdup): Likewise.
37101         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
37102         XFREE): Remove these long-obsolescent macros.
37103         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
37104         * lib/xstrdup.c: Remove.
37105
37106         * lib/regex.c (re_comp): Cast gettext return value to char *,
37107         Problem reported by Martin Neitzel via Mark D. Baushke.
37108
37109 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
37110
37111         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
37112         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
37113         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
37114         regex.c, sha1.c, version-etc.c, yesno.c:
37115         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
37116         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
37117         the includer's responsibility.
37118
37119         Sync from coreutils.
37120
37121         * lib/modechange.c (mode_compile): Don't decrement a pointer that
37122         points to the start of a string, as the C Standard says the
37123         resulting behavior is undefined.
37124
37125         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
37126         simple -> simple_backups, numbered_existing ->
37127         numbered_existing_backups, numbered -> numbered_backups
37128         to avoid shadowing problems.  All uses changed.
37129         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
37130         * lib/backupfile.c (check_extension, numbered_backup):
37131         Rename locals to avoid shadowing 'basename'.
37132         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
37133         once.
37134
37135         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
37136         * lib/.cvsignore: Add getopt.h.
37137
37138 2004-10-04  Bruno Haible  <bruno@clisp.org>
37139
37140         * modules/README: New file.
37141         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
37142         not a module.
37143
37144 2004-10-02  Jim Meyering  <jim@meyering.net>
37145
37146         * lib/dirfd.h, getpagesize.h: Add copyright notice.
37147
37148 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37149
37150         * modules/strsep: New file.
37151
37152 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37153
37154         * m4/strsep.m4: New file.
37155
37156 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
37157
37158         * lib/strsep.h: New file.
37159         * lib/strsep.c: New file.
37160
37161 2004-10-01  Simon Josefsson  <jas@extundo.com>
37162
37163         * lib/snprintf.c (snprintf): Handle size==0.
37164
37165 2004-10-01  Simon Josefsson  <jas@extundo.com>
37166             Bruno Haible  <bruno@clisp.org>
37167
37168         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
37169         (snprintf): Declare 'args'.
37170
37171 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
37172
37173         * lib/snprintf.c: Remove comments as to why each header is needed.
37174
37175 2004-10-01  Bruno Haible  <bruno@clisp.org>
37176
37177         * MODULES.html.sh: Add strsep.
37178
37179 2004-09-30  Simon Josefsson  <jas@extundo.com>
37180
37181         * modules/snprintf: New file.
37182
37183 2004-09-30  Simon Josefsson  <jas@extundo.com>
37184
37185         * m4/snprintf.m4: New file.
37186
37187 2004-09-30  Simon Josefsson  <jas@extundo.com>
37188
37189         * lib/snprintf.h, lib/snprintf.c: New files.
37190
37191 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
37192
37193         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
37194         (hol_entry_help): Never translate an empty string.
37195         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
37196         * lib/argp.h (OPTION_NO_TRANS): New option.
37197
37198 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
37199
37200         * modules/argp (Maintainer): Replace Simon Josefsson
37201         by Sergey Poznyakoff.
37202
37203 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
37204
37205         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
37206         changes merged back into glibc.
37207
37208 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
37209
37210         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
37211
37212 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
37213
37214         * lib/xvasprintf.c: Include xalloc.h.
37215         (xvasprintf): Use xalloc_die, not xmalloc_die.
37216
37217 2004-09-29  Bruno Haible  <bruno@clisp.org>
37218
37219         * modules/alloca-opt: New file, derived from modules/alloca.
37220         * modules/allocsa: Depend on alloca-opt instead of alloca.
37221         * modules/setenv: Likewise.
37222         * modules/vasnprintf: Likewise.
37223         * MODULES.html.sh: Add alloca-opt.
37224
37225 2004-09-28  Simon Josefsson  <jas@extundo.com>
37226
37227         * gnulib-tool: New parameter --lgpl, to asseert that modules are
37228         LGPL, and to replace license template from GPL to LGPL.
37229
37230 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
37231
37232         * modules/dummy: Change license to LGPL.
37233
37234 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
37235
37236         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
37237
37238 2004-09-24  Simon Josefsson  <jas@extundo.com>
37239
37240         * modules/minmax (License): Change from GPL to LGPL.
37241
37242 2004-09-23  Simon Josefsson  <jas@extundo.com>
37243
37244         * gnulib-tool (--import): Typo.
37245
37246 2004-09-23  Simon Josefsson  <jas@extundo.com>
37247
37248         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
37249
37250 2004-09-22  Bruno Haible  <bruno@clisp.org>
37251
37252         * modules/*: Add 'License' field.
37253         * gnulib-tool: Accept --extract-license option.
37254         (func_get_license): New function.
37255
37256 2004-09-21  Bruno Haible  <bruno@clisp.org>
37257
37258         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
37259         Reported by Simon Josefsson.
37260
37261 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
37262
37263         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
37264         gl_AC_TYPE_LONG_LONG.
37265
37266 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
37267
37268         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
37269
37270 2004-09-18  Simon Josefsson  <jas@extundo.com>
37271         and  Paul Eggert  <eggert@cs.ucla.edu>
37272
37273         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
37274         calls with autoreconf.  Define GL_LIB.
37275
37276 2004-09-14  Karl Berry  <karl@gnu.org>
37277
37278         * config/srclist.txt: unsync setenv.c, sigh.
37279
37280 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
37281
37282         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
37283         Problem reported by Bruno Haible in:
37284         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
37285
37286 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
37287
37288         * config/srclist.txt: Comment out argp-pvh.c.
37289
37290 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
37291
37292         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
37293         in case some system header has #define'd it.  Problem reported by
37294         Soeren D. Schulze in
37295         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
37296
37297 2004-09-09  Karl Berry  <karl@gnu.org>
37298
37299         * regex.[ch]: delete from the root.  These were supposed to be
37300                 synced with emacs cvs, but this has not happened for about
37301                 a year, and anyway nothing else uses emacs regex.[ch].
37302                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
37303                 lib/regex[.ch] is untouched.
37304
37305 2004-09-09  Bruno Haible  <bruno@clisp.org>
37306
37307         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
37308
37309 2004-09-09  Bruno Haible  <bruno@clisp.org>
37310
37311         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
37312         modifications.
37313         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
37314
37315 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
37316
37317         * modules/xvasprintf: New file.
37318         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
37319
37320 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
37321
37322         * lib/xvasprintf.h: New file.
37323         * lib/xvasprintf.c: New file.
37324         * lib/xasprintf.c: New file.
37325
37326 2004-09-08  Bruno Haible  <bruno@clisp.org>
37327
37328         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
37329
37330 2004-09-08  Bruno Haible  <bruno@clisp.org>
37331
37332         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
37333         length is > INT_MAX.
37334         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
37335         more.
37336
37337 2004-09-08  Bruno Haible  <bruno@clisp.org>
37338
37339         * lib/stdint_.h: New file, taken from GNU clisp.
37340
37341 2004-09-08  Bruno Haible  <bruno@clisp.org>
37342             Oskar Liljeblad  <oskar@osk.mine.nu>
37343
37344         * modules/stdint: New file.
37345         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
37346
37347 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37348
37349         Import from coreutils.
37350         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
37351         strings on unbounded length.  alloca's performance benefits aren't
37352         that important here.
37353         (V_STRDUP): Remove.
37354         (parse_with_separator): New function, with most of the internals
37355         of the old parse_user_spec.  Allow user to omit both user and group,
37356         for compatibility with FreeBSD.
37357         Clone only the user name, not the entire spec.
37358         Do not set *uid, *gid unless entirely successful.
37359         Avoid memory leak in some failing cases.
37360         Fix regression for USER.GROUP reported by Dmitry V. Levin in
37361         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
37362         (parse_user_spec): Rewrite to use parse_with_separator.
37363
37364 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37365
37366         * modules/userspec: Don't depend on alloca.
37367
37368 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37369
37370         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
37371
37372 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
37373
37374         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
37375         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
37376         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
37377
37378 2004-08-16  Simon Josefsson  <jas@extundo.com>
37379
37380         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
37381         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
37382         Add --dry-run for --import.
37383         Let user provided command line parameters override configure.ac
37384         settings.
37385
37386 2004-08-12  Simon Josefsson  <jas@extundo.com>
37387
37388         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
37389         as discussed with Paul Eggert in threads rooted at
37390         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
37391         and
37392         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
37393         Before, the test was empty, and relied on ELIDE_CODE in source
37394         code.)
37395         (gl_PREREQ_GETOPT): New macro.
37396         (gl_GETOPT): Use them.
37397
37398 2004-08-12  Simon Josefsson  <jas@extundo.com>
37399
37400         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
37401         * lib/getopt_.h: Renamed from getopt.h.
37402
37403 2004-08-12  Simon Josefsson  <jas@extundo.com>
37404
37405         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
37406         Change default library name from libfoo to libgnu.
37407         Now, if you have a configure.ac that says:
37408                 gl_SOURCE_BASE(gl)
37409                 gl_M4_BASE(gl/m4)
37410                 gl_MODULES(error getopt etcetera)
37411                 gl_INIT
37412         you can import all you need by running:
37413                 ../gnulib/gnulib-tool --import
37414
37415         * modules/getopt (Files): Rename getopt.h to getopt_.h.
37416         (Makefile.am): Rewrite, use logic from argz.
37417         (Include): Use <getopt.h> instead of "getopt.h".
37418
37419 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
37420
37421         * modules/argp (Files): Add m4/unlocked-io.m4.
37422         (Depends-on): Add extensions.
37423
37424 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
37425
37426         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
37427         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
37428         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
37429         Check for program_invocation_name, program_invocation_short_name,
37430         flockfile, funlockfile, features.h, _getopt_long_only_r.
37431
37432 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
37433
37434         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
37435         its complicated substitute.
37436         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
37437         and program_invocation_name.
37438         (__argp_basename) [!_LIBC]: Remove; the only use was
37439         replaced by its body.
37440         (__argp_short_program_name): Change condition from
37441         !defined __argp_short_program_name to
37442         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
37443         to match argp-namefrob.h.
37444         (__argp_failure): Don't assume strerror_r returns char *.
37445         * lib/argp-parse.c (N_): Define unconditionally.
37446         (argp_default_options): Fill out initializers with 0 to avoid
37447         gcc warnings.
37448
37449 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
37450
37451         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
37452         getopt1.c.
37453
37454 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
37455
37456         Merge from coreutils.
37457
37458         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
37459
37460         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
37461         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
37462
37463 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
37464
37465         Merge from coreutils.
37466
37467         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
37468         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
37469         for Reliant Unix 5.43.
37470
37471         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
37472         (union fooround): Use uintmax_t, not long int.
37473         The rest is a merge from libc:
37474         [defined _LIBC]: Include <shlib-compat.h>.
37475         (_obstack) [defined _LIBC]: Remove after 2.3.4.
37476
37477         * lib/settime.c (settime): Recode to avoid warning with
37478         Sun Forte C 6U2.
37479
37480         * lib/strverscmp.c: Convert to UTF-8.
37481
37482 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
37483
37484         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
37485         m4/uintmax_t.m4.
37486
37487 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37488
37489         * modules/xalloc-die: New file.
37490         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
37491
37492         * modules/md5 (Files): Add m4/uint32_t.m4.
37493         * modules/sha1: Renamed from modules/sha.
37494         (Files):
37495         Rename lib/sha.h to lib/sha1.h.
37496         Rename lib/sha.c to lib/sha1.c.
37497         Rename m4/sha.m4 to m4/sha1.m4.
37498         (lib_SOURCES): Likewise.
37499         (configure.ac): Rename gl_SHA to gl_SHA1.
37500         (Include): sha.h -> sha1.h.
37501
37502 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37503
37504         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
37505         * m4/sha1.m4: Renamed from sha.m4.
37506         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
37507
37508 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37509
37510         * lib/obstack.h (obstack_empty_p):
37511         Don't assume that chunk->contents is suitably aligned.
37512         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
37513         Likewise. Problem reported by Benno in
37514         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
37515
37516         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
37517         readable.  This could be improved further but it'd take some work.
37518
37519 2004-08-08  Simon Josefsson  <jas@extundo.com>
37520
37521         * modules/xgethostname (Depends-on): Remove exit and error (not
37522         used).
37523
37524         * modules/getpass-gnu: Add getpass.h.
37525         (Depends-on): Add stdbool.
37526         * modules/getpass: Add getpass.h.
37527
37528 2004-08-08  Simon Josefsson  <jas@extundo.com>
37529
37530         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
37531         Check getpass declaration.
37532
37533 2004-08-08  Simon Josefsson  <jas@extundo.com>
37534
37535         * lib/xgethostname.c: Don't include error.h (not used).
37536
37537         * lib/getpass.h: Add.
37538         * lib/getpass.c: Include getpass.h first.
37539
37540 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
37541
37542         * lib/xalloc-die.c: New file.
37543         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
37544         All uses removed.
37545         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
37546         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
37547         xalloc-die.c.
37548         (_, N_, xalloc_die): Move to xalloc-die.c.
37549         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
37550         so that we needn't mess with xalloc_msg_memory_exhausted.
37551
37552         * lib/sha1.h: Renamed from sha.h.
37553         (SHA1_H): Renamed from _SHA_H.
37554         (sha1_ctx): Renamed from sha_ctx.
37555         (sha1_init_ctx): Renamed from sha_init_ctx.
37556         (sha1_process_block): Renamed from sha_process_block.
37557         (sha1_process_bytes): Renamed from sha_process_bytes.
37558         (sha1_finish_ctx): Renamed from sha_finish_ctx.
37559         (sha1_read_ctx): Renamed from sha_read_ctx.
37560         (sha1_stream): Renamed from sha_stream.
37561         (sha1_buffer): Renamed from sha_buffer.
37562         * lib/sha1.c: Likewise; renamed from sha.c.
37563         Do not include <sys/types.h>.
37564         Include <stddef.h> rather than <stdlib.h>.
37565
37566 2004-08-08  Bruno Haible  <bruno@clisp.org>
37567
37568         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
37569         FILESYSTEM_PREFIX_LEN.
37570         * lib/progreloc.c: Likewise.
37571         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
37572
37573 2004-08-06  Simon Josefsson  <jas@extundo.com>
37574
37575         * modules/progname (Depends-on): Don't depend on stdbool.
37576
37577 2004-08-06  Simon Josefsson  <jas@extundo.com>
37578
37579         * modules/getsubopt: New file.
37580         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
37581         getsubopt.
37582
37583 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
37584
37585         More merge from coreutils.
37586
37587         * m4/utimens.m4, m4/utimecmp.m4: New files.
37588         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
37589         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
37590         prereq.m4, sha.m4: Import changes from coreutils.
37591
37592 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
37593
37594         More merge from coreutils.
37595         * modules/raise, modules/readtokens0, modules/utimens:
37596         * modules/utimecmp, module/xnanosleep: New files.
37597         * modules/strftime: Add lib/strftime.h.
37598         Change include from <time.h> to "strftime.h".
37599         * modules/yesno: Add lib/yesno.h.
37600         * modules/backupfile: Remove lib/addext.c.
37601         * modules/euidaccess: Add stat-macros.h.
37602         * modules/canonicalize, modules/euidaccess,
37603         modules/filemode, modules/lchown, modules/makepath,
37604         modules/rmdir, modules/stat: Likewise.
37605
37606 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
37607
37608         Merge from tar.
37609         * lib/argp-help.c (make_hol, hol_append): Don't assume that
37610         SIZE_MAX is a valid preprocessor constant.
37611         (__argp_basename): Change from "#ifndef _LIBC"
37612         to "#ifndef __argp_short_program_name", so that
37613         we don't compile these functions for tar.
37614
37615         More merges from coreutils.
37616         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
37617         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
37618         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
37619         * lib/addext.c: Remove; no longer needed.
37620         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
37621         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
37622         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
37623         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
37624         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
37625         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
37626         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
37627         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
37628         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
37629         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
37630         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
37631         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
37632         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
37633         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
37634         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
37635         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
37636         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
37637         Import changes from coreutils.
37638
37639 2004-08-05  Simon Josefsson  <jas@extundo.com>
37640
37641         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
37642
37643 2004-08-05  Simon Josefsson  <jas@extundo.com>
37644
37645         * m4/getsubopt.m4: New file.
37646
37647 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
37648
37649         Merge from coreutils.
37650
37651         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
37652         * m4/getcwd-path-max.m4: New files.
37653
37654         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
37655         FILESYSTEM_PREFIX_LEN ->
37656         FILE_SYSTEM_PREFIX_LEN.
37657         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
37658         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
37659         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
37660         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
37661
37662         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
37663         prerequisite modules now handle the DOS stuff.
37664         Don't check for unistd.h.
37665
37666 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
37667
37668         Merge from coreutils.
37669
37670         * lib/.gdb-history: Remove; this doesn't belong here.
37671
37672         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
37673         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
37674         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
37675         * lib/getcwd.c: New files.
37676
37677         * lib/dirname.h: Include <stdbool.h>.
37678         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
37679         for consistency with POSIX terminology.  All uses changed.
37680         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
37681         (strip_trailing_slashes): Use bool for booleans.
37682         * lib/stripslash.c (strip_trailing_slashes): Likewise.
37683
37684         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
37685         sometimes returns a positive errno value even when it succeeds.
37686         (print_errno_message) [!LIBC]: Fall back on strerror if
37687         __strerror_r fails.
37688
37689         * lib/path-concat.c (mempcpy): Don't define if a system header defines
37690         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
37691         (longest_relative_suffix): New function.
37692         (path_concat): Use it.  Assume first argument is not NULL.
37693         Port to DOS.  Omit redundant separators.
37694         Report an error instead of returning NULL.
37695         Use mempcpy instead of memcpy.
37696         (xpath_concat): Remove: not declared or used.
37697
37698         * lib/same.h: Include <stdbool.h>
37699         (same_name): Return bool, not int.
37700         * lib/same.c (same_name): Likewise.
37701         (errno): Don't declare; we assume C89 or better now.
37702
37703         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
37704         if not already defined.
37705
37706         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
37707         * lib/dup-safer.c (errno): Likewise.
37708
37709 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
37710
37711         Merge from coreutils.
37712         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
37713         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
37714         * modules/path-concat: Don't depend on strdup.
37715
37716 2004-08-03  Simon Josefsson  <jas@extundo.com>
37717
37718         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
37719         * lib/progname.h: Don't include stdbool.h.
37720
37721 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
37722
37723         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
37724         * MODULES.html.sh (func_all_modules): Remove fatal.
37725
37726 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
37727
37728         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
37729
37730 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
37731
37732         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
37733         working.
37734
37735 2004-08-02  Simon Josefsson  <jas@extundo.com>
37736
37737         * lib/getsubopt.h: New file, with comments from Bruno Haible.
37738         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
37739         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
37740
37741 2004-08-01  Simon Josefsson  <jas@extundo.com>
37742
37743         * lib/xgetdomainname.c: Include stdlib.h, for free().
37744
37745 2004-07-19  Bruno Haible  <bruno@clisp.org>
37746
37747         * MODULES.html.sh (func_all_modules): Add dummy.
37748
37749 2004-07-16  Simon Josefsson  <jas@extundo.com>
37750
37751         * modules/dummy: New file.
37752
37753 2004-07-16  Simon Josefsson  <jas@extundo.com>
37754
37755         * lib/dummy.c: New file.
37756
37757 2004-07-16  Bruno Haible  <bruno@clisp.org>
37758
37759         * lib/backupfile.h: Add extern "C" for C++.
37760         * lib/closeout.h: Likewise.
37761         * lib/copy-file.h: Likewise.
37762         * lib/findprog.h: Likewise.
37763         * lib/full-write.h: Likewise.
37764         * lib/pathname.h: Likewise.
37765         * lib/progname.h: Likewise.
37766         * lib/stpcpy.h: Likewise.
37767         * lib/stpncpy.h: Likewise.
37768         * lib/strcase.h: Likewise.
37769         * lib/strstr.h: Likewise.
37770         * lib/xalloc.h: Likewise.
37771
37772         * lib/mbswidth.h: Add extern "C" for C++.
37773         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
37774
37775 2004-07-13  Robert Millan  <robertmh@gnu.org>
37776
37777         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
37778
37779 2004-07-09  Simon Josefsson  <jas@extundo.com>
37780
37781         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
37782         failed without this.)
37783
37784 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
37785
37786         * modules/chown (Files): Add lib/fchown-stub.c, since
37787         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
37788
37789 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
37790
37791         * lib/fchown-stub.c: New file.
37792
37793 2004-06-24  Jim Meyering  <jim@meyering.net>
37794
37795         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
37796
37797 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37798
37799         * modules/argz: Omit "#include".
37800
37801         * MODULES.html.sh (func_all_modules): Add calloc, to match
37802         2004-06-01 addition of calloc module.
37803
37804 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37805
37806         * m4/argz.m4: New file, which is autoupdated from libtool.
37807
37808 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37809
37810         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
37811         libtool.
37812
37813 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37814
37815         * config/srclist-update: Don't insist on "USA." before the
37816         close-comment, as libtool omits the period and puts the */ on a
37817         separate line.
37818         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
37819         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
37820
37821 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
37822
37823         * modules/argz: New file.
37824         * MODULES.html.sh (func_all_modules): Add argz.
37825
37826 2004-06-12  Jim Meyering  <jim@meyering.net>
37827         and  Paul Eggert  <eggert@cs.ucla.edu>
37828
37829         * modules/hash (Files): Add lib/xalloc.h.
37830         * modules/pipe (Depends-on): Add wait-process.
37831         * modules/stat (Depends-on): Add xalloc.
37832         * modules/userspec (Files): Add lib/userspec.h.
37833         * modules/xstrto
37834
37835         Upgrade from gettext-0.13.
37836         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
37837         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
37838         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
37839
37840 2004-06-10  Jim Meyering  <jim@meyering.net>
37841
37842         * lib/calloc.c: New file.
37843
37844 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
37845
37846         * lib/getdate.y (yylex): Allow space between sign and number.
37847         Problem reported by Dan Jacobson.
37848
37849 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
37850
37851         Merge from coreutils CVS.
37852
37853         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
37854         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
37855         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
37856         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
37857         xstrtol.m4: Fix copyright date and/or serial number.
37858
37859         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
37860         See if we need an fchown replacement.
37861         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
37862         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
37863         and use the replacement function if we detect either defect.
37864
37865         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
37866         gl_UTIMECMP.
37867
37868 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
37869         and  Jim Meyering  <jim@meyering.net>
37870
37871         Merge from coreutils CVS.
37872
37873         * lib/stat-macros.h: New file, with contents from file-type.h
37874         and coreutils' system.h.
37875         * lib/file-type.c: Include "stat-macros.h".
37876         * lib/file-type.h (file_type): Move all macro definitions to new file,
37877         stat-macros.h.
37878
37879         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
37880         Wrap old code with this conditional.
37881         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
37882         function that does not dereference symlinks.
37883         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
37884
37885         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
37886         dependency problems.
37887         (xreadlink): Accept new arg SIZE, for efficiency.
37888         All decls and uses changed.
37889         * lib/xreadlink.h: Include <stddef.h>, for size_t.
37890
37891         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
37892         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
37893
37894         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
37895         sysexits.h.
37896
37897 2004-06-01  Jim Meyering  <jim@meyering.net>
37898
37899         * m4/calloc.m4: New file.
37900
37901 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
37902
37903         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
37904         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
37905         Also, fix a typo in a diagnostic.
37906
37907 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
37908
37909         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
37910         or AC_FUNC_REALLOC.
37911
37912 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
37913
37914         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
37915         macros to be defined.
37916         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
37917         the allocator returns NULL because the requested size is zero.
37918
37919 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
37920
37921         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
37922         var.  Add comment explaining why libc still defines it.  This
37923         merges the following patch from glibc:
37924         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
37925
37926 2004-05-20  Andreas Schwab  <schwab@suse.de>
37927
37928         * m4/free.m4: Replace free if it not known to work, not the other
37929         way round.
37930
37931 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
37932
37933         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
37934         present in glibc since revision 1.1 of this file.
37935         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
37936         obstack_alignment_mask, obstack_alloc, obstack_base,
37937         obstack_blank, obstack_blank_fast, obstack_chunk_size,
37938         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
37939         obstack_grow0, obstack_init, obstack_int_grow,
37940         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
37941         obstack_next_free, obstack_object_size, obstack_ptr_grow,
37942         obstack_ptr_grow_fast, obstack_room): Remove declarations of
37943         nonexistent functions.
37944
37945 2004-05-18  Karl Berry  <karl@gnu.org>
37946
37947         * config/srclist.txt: break link for vasnprintf.c.
37948
37949 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
37950
37951         Port obstack to the AS/400, where pointers are 16 bytes wide and
37952         you cannot cast an integer to a valid pointer.  This patch is
37953         currently waiting to be integrated into glibc; see
37954         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
37955
37956         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
37957         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
37958         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
37959         (struct obstack): temp member is now a union of a pointer and
37960         an integer, instead of an integer.  All integer uses changed.
37961         This does not affect the physical layout of struct obstack,
37962         except on hosts (like the AS/400) where the size or alignment of
37963         void * is greater than that of ptrdiff_t.
37964         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
37965         __STDC__)]: Store temporary in pointer member of union, not
37966         integer member.
37967         * lib/obstack.c: Include <stddef.h>, for offsetof.
37968         (struct fooalign): Remove; it doesn't need a name.
37969         (union fooround): Change double to long double, and add void *.
37970         (DEFAULT_ALIGNMENT): Use offsetof to compute.
37971         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
37972         not a macro.  Hence the values are always int; so remove all
37973         casts-to-int in uses.
37974
37975 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
37976
37977         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
37978         we can get this patch merged into glibc.
37979
37980 2004-05-17  Derek R. Price  <derek@ximbiot.com>
37981             Paul Eggert  <eggert@cs.ucla.edu>
37982
37983         * m4/argp: Depend on alloca.
37984
37985 2004-05-17  Derek R. Price  <derek@ximbiot.com>
37986             Paul Eggert  <eggert@cs.ucla.edu>
37987
37988         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
37989         freecoding.
37990
37991 2004-05-17  Bruno Haible  <bruno@clisp.org>
37992
37993         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
37994         precision that consists of a '.' followed by an empty digit string.
37995         Patch by Tor Lillqvist <tml@iki.fi>.
37996
37997 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
37998
37999         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
38000         for backward compatibility with older code.  We need our own
38001         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
38002         it under some other name, and our alloca.h will define it.
38003
38004 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
38005             Derek Price  <derek@ximbiot.com>
38006
38007         * lib/alloca.c: Include <alloca.h>, to get our interface.
38008         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
38009         include <alloca.h> first.  Use C89 prototype for alloca; this
38010         requires including <stddef.h> for size_t.  Use extern "C" if C++.
38011         Use #elif for simplicity, since we can assume C89 now.
38012         Don't try to source the system alloca.h since it will not be found
38013         and to prevent recursively including its replacement.
38014         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
38015         * lib/regex.c: Likewise.
38016
38017 2004-05-16  Derek Price  <derek@ximbiot.com>
38018             Paul Eggert  <eggert@cs.ucla.edu>
38019
38020         getline cleanup.  This changes the getndelim2 API: both order of
38021         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
38022         no delimiter).
38023
38024         * lib/getline.c: Don't include stddef.h or stdio.h, since our
38025         interface does that.
38026         (getline): Always use getdelim, so that we don't have two
38027         copies of this code.
38028         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
38029         if available.
38030         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
38031         (GETNDELIM2_MAXIMUM): New macro.
38032         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
38033         instead of the old practice of delim2==0.  All callers changed.
38034         Return -1 on overflow, instead of returning junk.
38035         Do not set *linesize unless allocation succeeds.
38036         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
38037         that we include sys/types.h.
38038         * lib/getnline.h: Likewise.
38039         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
38040         (getndelim2): Reorder arguments.
38041         * lib/getnline.c (getnline, getndelim):
38042         Don't discard the NMAX argument.
38043         (getnline): Invoke getndelim, to avoid code duplication.
38044         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
38045         of (size_t) -1 by callers of the getnline family.
38046
38047 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
38048
38049         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
38050         Check for gettimeofday.
38051         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
38052         Check for settimeofday, stime.
38053
38054 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
38055
38056         * lib/nanosleep.c (suspended): Change its type from int to
38057         sig_atomic_t volatile.
38058         (first_call): Make it private to rpl_nanosleep, and have it
38059         be zero initially as that's a bit faster.
38060         (my_usleep): Round up fractional times instead of truncating them,
38061         as this is the usual meaning for 'sleep'.
38062
38063         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
38064         doesn't work.
38065         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
38066         (ENOSYS): Define if not defined.
38067         (settime): Fall back on stime if it exists and settimeofday fails.
38068         But don't bother with fallbacks if a method fails with errno == EPERM.
38069
38070 2004-05-11  Jim Meyering  <jim@meyering.net>
38071
38072         Prior to this change, the save_cwd caller required read access to the
38073         current directory on most systems (ones with the fchdir function).
38074
38075         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
38076         fails, try write-only, and finally, resort to using xgetcwd.
38077
38078 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
38079
38080         * lib/obstack.c, obstack.h: Import changes from libc.
38081
38082 2004-04-28  Bruno Haible  <bruno@clisp.org>
38083
38084         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
38085         also implicitly appends .exe to executables.
38086         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
38087         accepts Windows pathnames.
38088         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
38089         Treat Cygwin like Windows, since it now accepts Windows pathnames.
38090         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
38091         Treat Cygwin like Windows, since it now accepts Windows pathnames.
38092         Reported by Derek Robert Price <derek@ximbiot.com>.
38093
38094 2004-04-21  Karl Berry  <karl@gnu.org>
38095
38096         * config/srclist.txt (localcharset.c): break sync.
38097
38098 2004-04-20  Paul Eggert  <eggert@twinsun.com>
38099
38100         * m4/host-os.m4: Add a copyright notice.
38101
38102 2004-04-20  Jim Meyering  <jim@meyering.net>
38103
38104         Change UTILS_ to gl_ in AC_DEFINE'd names.
38105         Change utils_- and jm_-prefixed variables, too.
38106         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
38107         UTILS_FUNC_MKDIR_TRAILING_SLASH.
38108         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
38109
38110         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
38111         Don't emit trailing blanks.
38112         Also rename jm_-prefixed variables to have gl_ prefix.
38113
38114         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
38115         Also rename jm_-prefixed variables to have gl_ prefix.
38116
38117         * m4/jm-macros.m4: Reflect the renamings.
38118         * m4/prereq.m4: Likewise.
38119
38120 2004-04-20  Jim Meyering  <jim@meyering.net>
38121
38122         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
38123         memory.
38124
38125 2004-04-20  Jim Meyering  <jim@meyering.net>
38126             Bruno Haible  <bruno@clisp.org>
38127
38128         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
38129         memory when realloc fails.
38130
38131 2004-04-19  Jim Meyering  <jim@meyering.net>
38132
38133         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
38134         now that readutmp.c may call `free (0)'.
38135
38136 2004-04-19  Bruno Haible  <bruno@clisp.org>
38137
38138         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
38139         * m4/inttypes_h.m4: Likewise.
38140         * m4/stdint_h.m4: Likewise.
38141         * m4/intmax_t.m4: Likewise.
38142         * m4/uintmax_t.m4: Likewise.
38143
38144 2004-04-18  Jim Meyering  <jim@meyering.net>
38145
38146         * m4/prereq.m4: Don't forbid jm_ prefix.
38147
38148         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
38149         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
38150         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
38151         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
38152         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
38153         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
38154         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
38155         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
38156         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
38157         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
38158         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
38159         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
38160         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
38161         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
38162         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
38163         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
38164         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
38165         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
38166         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
38167
38168 2004-04-18  Jim Meyering  <jim@meyering.net>
38169
38170         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
38171         failure, don't leak memory and do call END_UTMP_ENT.
38172
38173 2004-04-16  Jim Meyering  <jim@meyering.net>
38174
38175         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
38176         coreutils' stat program.
38177         (gl_PREREQ): Don't require jm_PREREQ_STAT.
38178
38179 2004-04-11  Paul Eggert  <eggert@twinsun.com>
38180
38181         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
38182         C89.
38183         (CHAR_BIT): Remove, since we assume C89.
38184         Include <stdint.h> if available, as per current Autoconf CVS advice.
38185
38186 2004-03-31  Jim Meyering  <jim@meyering.net>
38187
38188         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
38189         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
38190         * m4/xalloc.m4: Likewise.
38191
38192 2004-03-30  Paul Eggert  <eggert@twinsun.com>
38193
38194         Merge from coreutils.
38195
38196         * m4/inttostr.m4: New file.
38197         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
38198         Require AM_STDBOOL_H and gl_TIMESPEC instead.
38199         Require gl_CLOCK_TIME.
38200         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
38201
38202 2004-03-30  Paul Eggert  <eggert@twinsun.com>
38203
38204         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
38205         not bool, to be more consistent with Unix conventions.
38206         Suggested by Bruno Haible.
38207
38208         Merge from coreutils.
38209
38210         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
38211         * lib/umaxtostr.c: New files.
38212
38213         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
38214         the usual <time.h> dance.
38215         (get_date): Change signature to support fractional time stamps.
38216         All callers changed.
38217         * lib/getdate.y: Include "getdate.h" first, as we can now
38218         assume C89 and don't need to worry about 'const'.
38219         Similarly, include "unlocked-io.h" near start, not in middle.
38220         Include <limits.h>.
38221         (textint.value): Use long int rather than int.
38222         (textint.digits): Use size_t rather than int.
38223         (BILLION, LOG10_BILLION): New constants.
38224         (parser_control): New member rel_ns.  Members day_ordinal,
38225         time_zone, month, day, hour, minutes, rel_year, rel_month,
38226         rel_day, rel_hour, rel_minutes, rel_seconds
38227         are now long int, not int.  Member seconds is now struct timespec,
38228         not int.  New member timespec_seen.  Members dates_seen, days_seen,
38229         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
38230         not int.
38231         (%union.intval): Now long int, not int.
38232         New member timespec.
38233         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
38234         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
38235         (spec): Now is a timespec or an item list.
38236         (timespec, items): New nonterminals.
38237         (time, rel, relunit, number, get_date):
38238         Add support for fractional seconds.
38239         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
38240         (gmtime, localtime, mktime): Remove decls; not needed with C89.
38241         (to_hour): First arg is now long int, not int.
38242         (to_year): Returns long int, not int.
38243         Don't treat year -70 like 70.
38244         (tm_diff): Returns long int, not int.
38245         (lookup_word): Use bool instead of int when appropriate.
38246         (yylex): Use size_t for count, not int.
38247         Detect overflow when parsing large integer constants.
38248         Add support for fractions.
38249         (get_date): Make pointers 'const' if possible.
38250         Use more-portable code to detect integer overflow.
38251         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
38252         Don't use ctime; it's not reliable if the year has >4 digits.
38253
38254         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
38255         This is for compatibility with BSD.
38256
38257         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
38258         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
38259         From coreutils' system.h.
38260
38261         * lib/userspec.c: Don't include "posixver.h".
38262         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
38263         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
38264         compatible extension.  Simplify code by removing a boolean int
38265         that was always nonzero if a string was nonnull.
38266
38267 2004-03-30  Jim Meyering  <jim@meyering.net>
38268
38269         Merge from coreutils.
38270
38271         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
38272         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
38273         on some systems one must include <grp.h> before it.
38274         Reported by Christian Krackowizer.
38275
38276 2004-03-30  Jim Meyering  <jim@meyering.net>
38277
38278         Merge from coreutils.
38279
38280         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
38281
38282         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
38283         an empty input stream.
38284
38285         * lib/readtokens.c: Include <stdbool.h>.
38286         (readtoken): Use `size_t' rather than int/long.
38287         All callers adjusted.
38288         Use `bool' rather than `int' where appropriate.
38289         Use memset rather than an explicit loop.
38290         Use x2nrealloc rather than xrealloc.
38291         Allow the use of `\0' as a delimiter.
38292         (readtokens): Likewise.
38293         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
38294
38295 2004-03-30  Jim Meyering  <jim@meyering.net>
38296
38297         * m4/realloc.m4: Remove file, since now it does no more than
38298         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
38299         the `configure.ac' section of module/realloc.
38300         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
38301
38302 2004-03-30  Bruno Haible  <bruno@clisp.org>
38303
38304         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
38305         nonnull.
38306
38307 2004-03-29  Paul Eggert  <eggert@twinsun.com>
38308
38309         Merge changes to getloadavg.c from coreutils and Emacs.
38310
38311         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
38312         Define to an expression, not to the empty string.
38313         Include cloexec.h and xalloc.h.
38314         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
38315         Use set_cloexec_flag rather than rolling our own.
38316         * lib/cloexec.c, lib/cloexec.h: New files.
38317
38318 2004-03-29  Paul Eggert  <eggert@twinsun.com>
38319
38320         * m4/cloexec.m4: New file.
38321
38322 2004-03-18  Paul Eggert  <eggert@twinsun.com>
38323
38324         * lib/getopt.h: Sync with libc CVS.
38325
38326 2004-03-18  Paul Eggert  <eggert@twinsun.com>
38327             Bruno Haible  <bruno@clisp.org>
38328
38329         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
38330         mbswidth.
38331
38332 2004-03-18  Paul Eggert  <eggert@twinsun.com>
38333             Bruno Haible  <bruno@clisp.org>
38334
38335         * lib/mbswidth.h: Include <wchar.h> only if
38336         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
38337         <wchar.h>.
38338         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
38339
38340 2004-03-09  Paul Eggert  <eggert@twinsun.com>
38341
38342         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
38343         Sync with libc CVS.
38344         * lib/getopt_int.h: New file, also synced from libc.
38345
38346 2004-03-09  Paul Eggert  <eggert@twinsun.com>
38347
38348         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
38349         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
38350         Bring back getopt.c, getopt.h, getopt1.c.
38351
38352 2004-03-07  Paul Eggert  <eggert@twinsun.com>
38353
38354         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
38355         All uses changed.  Check for sa_sigaction member; this fixes
38356         a bug first reported by Jason Andrade in
38357         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
38358
38359 2004-03-07  Paul Eggert  <eggert@twinsun.com>
38360
38361         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
38362         '#if' expressions.  Unlike the code it replaces, it does not
38363         depend on (defined _SC_PAGESIZE).  However, it does depend on
38364         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
38365         first reported by Jason Andrade in
38366         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
38367
38368 2004-02-25  Simon Josefsson  <jas@extundo.com>
38369
38370         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
38371
38372 2004-02-25  Simon Josefsson  <jas@extundo.com>
38373
38374         * lib/strdup.h: New file.
38375         * lib/strdup.c: Include it.
38376         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
38377         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
38378
38379 2004-02-23  Karl Berry  <karl@gnu.org>
38380
38381         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
38382         (from fencepost.gnu.org:/gd/gnuorg).
38383
38384 2004-02-23  Karl Berry  <karl@gnu.org>
38385
38386         * config/srclistvars.sh (GNUORG) [karl]: redefine.
38387         * config/srclist.txt: add maintain/standards documents.
38388
38389 2004-02-18  Bruno Haible  <bruno@clisp.org>
38390
38391         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
38392         Reported by Derek Robert Price <derek@ximbiot.com>.
38393
38394 2004-02-16  Karl Berry  <karl@gnu.org>
38395
38396         * config/mkinstalldirs, install-sh: update from automake.
38397
38398 2004-02-06  Karl Berry  <karl@gnu.org>
38399
38400         * m4/po.m4: update from gettext 0.14.1.
38401
38402 2004-02-06  Karl Berry  <karl@gnu.org>
38403
38404         * lib/config.charset: update from gettext 0.14.1.
38405
38406 2004-02-05  Paul Eggert  <eggert@twinsun.com>
38407
38408         Add comments and code, prompted by suggestions from Bruno Haible
38409         for sh-quote.
38410         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
38411         describing the enum quoting_style values.
38412         * lib/quotearg.c (quotearg_alloc): New function.
38413         (quotearg_buffer_restyled): Treat lone { and } as special.
38414         Treat = as special.  Work around bug with older shells
38415         that "see" a '\' that is really the 2nd byte of a multibyte char.
38416         Quote empty string with shell_quoting_style.
38417
38418 2004-02-03  Bruno Haible  <bruno@clisp.org>
38419
38420         * m4/pipe.m4: New file, from GNU gettext.
38421
38422 2004-02-03  Bruno Haible  <bruno@clisp.org>
38423
38424         * lib/pipe.h: New file, from GNU gettext.
38425         * lib/pipe.c: New file, from GNU gettext.
38426
38427 2004-01-27  Bruno Haible  <bruno@clisp.org>
38428
38429         * m4/execute.m4: New file, from GNU gettext.
38430
38431 2004-01-27  Bruno Haible  <bruno@clisp.org>
38432
38433         * lib/execute.h: New file, from GNU gettext.
38434         * lib/execute.c: New file, from GNU gettext.
38435         * lib/w32spawn.h: New file, from GNU gettext.
38436
38437 2004-01-24  Paul Eggert  <eggert@twinsun.com>
38438
38439         Merge from diffutils.
38440
38441         * lib/file-type.c (file_type): Add typed memory objects.
38442         * lib/file-type.h (S_TYPEISTMO): New macro.
38443
38444         * lib/c-stack.h (c_stack_action): Remove argv argument.
38445         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
38446         (die): Don't calculate message unless segv_action returns.
38447         (get_stack_location, min_address_from_argv, max_address_from_argv,
38448         volatile stack_base, volatile_stack_size): Remove.
38449         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
38450         that every segmentation violation is a stack overflow.  (Ouch!)
38451         See Debian bug 136249 (still outstanding) for more info about why
38452         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
38453
38454 2004-01-24  Paul Eggert  <eggert@twinsun.com>
38455
38456         Exit-status fix from coreutils.
38457
38458         Use exit_failure consistently in place of EXIT_FAILURE,
38459         so that program exit statuses are consistent on failure.
38460
38461         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
38462         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
38463         * lib/argmatch.h: Comment fix to match the above.
38464         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
38465         Now a macro referring to exit_failure, instead of a separate
38466         variable.  Include "exitfail.h" to get it.
38467         * lib/xstrtol.h: Include "exitfail.h".
38468         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
38469
38470         * lib/long-options.c (parse_long_options): Use prototype
38471         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
38472         for clarity.
38473
38474 2004-01-21  Jim Meyering  <jim@meyering.net>
38475
38476         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
38477         so as not to conflict with a different-sized __mktime_internal
38478         function in GNU libc.
38479         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
38480         Problem building statically-linked `ls' reported by Michael Brunnbauer.
38481
38482 2004-01-20  Karl Berry  <karl@gnu.org>
38483
38484         * config/config.guess: update from config.
38485
38486         * config/srclistvars.sh: GNUWWWLICENSES for karl.
38487
38488 2004-01-20  Bruno Haible  <bruno@clisp.org>
38489
38490         Safer stack allocation.
38491         * lib/setenv.c: Include allocsa.h.
38492         (alloca): Remove fallback definition.
38493         (freea): Remove macro.
38494         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
38495         instead of freea.
38496
38497 2004-01-20  Bruno Haible  <bruno@clisp.org>
38498
38499         * m4/eealloc.m4: New file, from GNU gettext.
38500
38501 2004-01-20  Bruno Haible  <bruno@clisp.org>
38502
38503         * m4/allocsa.m4: New file, from GNU gettext.
38504
38505 2004-01-20  Bruno Haible  <bruno@clisp.org>
38506
38507         * lib/xallocsa.h: New file, from GNU gettext.
38508         * lib/xallocsa.c: New file, from GNU gettext.
38509
38510 2004-01-20  Bruno Haible  <bruno@clisp.org>
38511
38512         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
38513
38514 2004-01-20  Bruno Haible  <bruno@clisp.org>
38515
38516         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
38517         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
38518         specially.
38519
38520 2004-01-20  Bruno Haible  <bruno@clisp.org>
38521
38522         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
38523         patch.
38524
38525 2004-01-20  Bruno Haible  <bruno@clisp.org>
38526
38527         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
38528
38529 2004-01-20  Bruno Haible  <bruno@clisp.org>
38530
38531         * lib/eealloc.h: New file.
38532
38533 2004-01-20  Bruno Haible  <bruno@clisp.org>
38534
38535         * lib/binary-io.h: Avoid warnings on Cygwin.
38536
38537 2004-01-20  Bruno Haible  <bruno@clisp.org>
38538
38539         * lib/allocsa.h: New file, from GNU gettext.
38540         * lib/allocsa.c: New file, from GNU gettext.
38541
38542 2004-01-18  Karl Berry  <karl@gnu.org>
38543
38544         * doc/gpl.texi, doc/lgpl.texi: new files.
38545
38546 2004-01-18  Karl Berry  <karl@gnu.org>
38547
38548         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
38549         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
38550
38551 2004-01-15  Paul Eggert  <eggert@twinsun.com>
38552
38553         Merge from coreutils.
38554
38555         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
38556         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
38557         (gl_DEFAULT_POSIX2_VERSION): Move
38558         the documentation from 'configure' into 'config.hin',
38559         so that 'configure --help' isn't burdened by it and
38560         we don't have to worry about its formatting there.
38561         Reword the documentation so that it's more succinct
38562         and can be run together into a single paragraph.
38563         * m4/same.m4 (gl_SAME): Check for pathconf.
38564
38565 2004-01-15  Paul Eggert  <eggert@twinsun.com>
38566
38567         Merge from coreutils.
38568
38569         * lib/posixver.c: Include posixver.h.
38570
38571         * lib/same.c: Include <stdbool.h>, <limits.h>.
38572         (_POSIX_NAME_MAX): Define if not defined.
38573         (MIN): New macro.
38574         (same_name): If file names are silently truncated, report
38575         that the file names are the same if they are the same after
38576         the silent truncation.
38577
38578         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
38579         conversion function.
38580         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
38581         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
38582         longer needed.
38583
38584 2004-01-15  Jim Meyering  <jim@meyering.net>
38585
38586         Merge from coreutils.
38587
38588         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
38589         if no library is required.
38590         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
38591         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
38592         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
38593         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
38594         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
38595         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
38596         value, $ac_cv_search_crypt, if it's "none required".
38597         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
38598         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
38599         not gl_FUNC_GETLOADAVG.
38600         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
38601         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
38602
38603 2004-01-15  Jim Meyering  <jim@meyering.net>
38604
38605         Merge from coreutils.
38606
38607         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
38608         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
38609         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
38610
38611         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
38612         optional configure-time default.
38613
38614         * lib/version-etc.c (version_etc_copyright): Update copyright date.
38615
38616         * lib/xreadlink.c (xreadlink): Correct outdated comment.
38617
38618 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
38619
38620         Merge from coreutils.
38621
38622         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
38623         value, $ac_cv_search_nanosleep, if it's "none required".
38624
38625 2004-01-14  Paul Eggert  <eggert@twinsun.com>
38626
38627         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
38628         with like-named macro in fnmatch.c.
38629         (EXT): Use an internal constant instead.
38630
38631         Merge fnmatch patches from glibc.
38632         * lib/fnmatch.c (mbsinit): Remove define.
38633         Add libc_hidden_ver (__fnmatch, fnmatch).
38634         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
38635         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
38636
38637 2004-01-14  Karl Berry  <karl@gnu.org>
38638
38639         * config/install-sh: update from automake.
38640
38641 2004-01-13  Karl Berry  <karl@gnu.org>
38642
38643         * config/install-sh: update from automake.
38644
38645 2004-01-09  Karl Berry  <karl@gnu.org>
38646
38647         * config/install-sh: update from automake.
38648
38649 2004-01-05  Karl Berry  <karl@gnu.org>
38650
38651         * config/config.{sub,guess}: update from config.
38652
38653 2003-12-31  Karl Berry  <karl@gnu.org>
38654
38655         * config/depcomp: update from automake.
38656
38657 2003-12-14  Karl Berry  <karl@gnu.org>
38658
38659         * lib/config.charset: update from gettext-runtime.
38660
38661 2003-12-03  Paul Eggert  <eggert@twinsun.com>
38662
38663         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
38664         Bug reported by Alfred M. Szmidt.
38665
38666 2003-12-03  Bruno Haible  <bruno@clisp.org>
38667
38668         * m4/gettext.m4: Upgrade from gettext-0.13.
38669         * m4/po.m4: Upgrade from gettext-0.13.
38670         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
38671         * m4/intmax.m4: New file, from gettext-0.13.
38672         * m4/printf-posix.m4: New file, from gettext-0.13.
38673
38674 2003-11-29  Karl Berry  <karl@gnu.org>
38675
38676         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
38677
38678 2003-11-25  Paul Eggert  <eggert@twinsun.com>
38679             Bruno Haible  <bruno@clisp.org>
38680
38681         * lib/printf-parse.h: Don't include sys/types.h.
38682         (ARG_NONE): New macro.
38683         (char_directive): Change type of *arg_index fields to size_t.
38684         * lib/printf-parse.c: Don't include sys/types.h.
38685         (SSIZE_MAX): Remove macro.
38686         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
38687         Remove unnecessary overflow check.
38688         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
38689         fields.
38690
38691 2003-11-25  Bruno Haible  <bruno@clisp.org>
38692
38693         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
38694
38695 2003-11-25  Bruno Haible  <bruno@clisp.org>
38696
38697         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
38698         gt_TYPE_SSIZE_T.
38699
38700 2003-11-24  Paul Eggert  <eggert@twinsun.com>
38701
38702         * modules/alloca: Remove dependency on xalloc.
38703
38704 2003-11-24  Paul Eggert  <eggert@twinsun.com>
38705
38706         * lib/alloca.c: Remove dependency on xalloc module.
38707         (xalloc_die): Remove.
38708         (memory_full) [!defined emacs]: New macro.
38709         [!defined emacs]: Don't include xalloc.h.
38710         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
38711         address arithmetic overflows.  Change datatypes a bit to avoid
38712         unnecessary casts.
38713
38714 2003-11-22  Jim Meyering  <jim@meyering.net>
38715
38716         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
38717         s/size/size_t/.
38718
38719 2003-11-21  Karl Berry  <karl@gnu.org>
38720
38721         * config/config.{sub,guess}: update from config.
38722
38723 2003-11-18  Karl Berry  <karl@gnu.org>
38724
38725         * config/config.{sub,guess}: update from config.
38726
38727         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
38728
38729 2003-11-17  Paul Eggert  <eggert@twinsun.com>
38730
38731         * README: Mention that S+T cannot overflow if S is the size of
38732         an existing object and T is sufficiently small.
38733
38734 2003-11-17  Jim Meyering  <jim@meyering.net>
38735
38736         On systems without utime and without a utimes function capable of
38737         dealing with a NULL struct utimbuf* argument, this utime replacement
38738         could -- in unusual circumstances -- leak a file descriptor.
38739         * lib/utime.c: Include <unistd.h> and <errno.h>.
38740         (utime_null): Be sure to close `fd' and to preserve errno.
38741         Reported by Geoff Collyer via Arnold Robbins.
38742
38743 2003-11-17  Bruno Haible  <bruno@clisp.org>
38744
38745         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
38746         (Depends-on): Add xsize.
38747
38748 2003-11-17  Bruno Haible  <bruno@clisp.org>
38749
38750         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
38751
38752 2003-11-17  Bruno Haible  <bruno@clisp.org>
38753
38754         * lib/vasnprintf.c (alloca): Remove fallback definition.
38755         (freea): Remove definition.
38756         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
38757         Reported by Paul Eggert.
38758
38759 2003-11-16  Paul Eggert  <eggert@twinsun.com>
38760             Bruno Haible  <bruno@clisp.org>
38761
38762         Protect against address arithmetic overflow.
38763         * lib/printf-args.h: Include stddef.h.
38764         (arguments): Change type of field 'count' to size_t.
38765         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
38766         'unsigned int' where appropriate.
38767         * lib/printf-parse.h: Include sys/types.h.
38768         (char_directive): Change type of *arg_index fields to ssize_t.
38769         (char_directives): Change type of fields 'count', max_*_length to
38770         size_t.
38771         * lib/printf-parse.c: Include sys/types.h and xsize.h.
38772         (SSIZE_MAX): Define fallback value.
38773         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
38774         instead of 'int' where appropriate. Check a_allocated, d_allocated
38775         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
38776         * lib/vasnprintf.c: Include xsize.h.
38777         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
38778         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
38779         overflow. Avoid wraparound when converting a width or precision from
38780         decimal to binary.
38781
38782 2003-11-16  Bruno Haible  <bruno@clisp.org>
38783
38784         Update from GNU gettext.
38785         * lib/printf-parse.c: Generalize to it can be compiled for wide
38786         strings.
38787         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
38788         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
38789         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
38790         SNPRINTF): New macros.
38791         Don't include <alloca.h> if the file is used inside libintl.
38792         (local_wcslen): New function, for Solaris 2.5.1.
38793         (VASNPRINTF): Use it instead of wcslen.
38794
38795 2003-11-16  Bruno Haible  <bruno@clisp.org>
38796
38797         * lib/xsize.h (xmax): New function.
38798         (xsum, xsum3, xsum4): Declare as "pure" functions.
38799
38800 2003-11-12  Paul Eggert  <eggert@twinsun.com>
38801
38802         * modules/xalloc (Files): Undo latest change, since xalloc.h
38803         no longer needs SIZE_MAX or PTRDIFF_MAX.
38804
38805 2003-11-12  Paul Eggert  <eggert@twinsun.com>
38806
38807         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
38808         gl_PTRDIFF_MAX.
38809
38810 2003-11-12  Paul Eggert  <eggert@twinsun.com>
38811
38812         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
38813         "return", to pacify some unknown compiler.  Problem reported
38814         by Joerg Schilling.
38815
38816 2003-11-12  Paul Eggert  <eggert@twinsun.com>
38817
38818         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
38819         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
38820         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
38821         heuristic is just as accurate as far as we know, and it removes a
38822         dependency on size_max.m4 and ptrdiff_max.m4.
38823
38824 2003-11-11  Bruno Haible  <bruno@clisp.org>
38825
38826         * modules/xsize (Files): Add m4/size_max.m4.
38827         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
38828
38829 2003-11-11  Bruno Haible  <bruno@clisp.org>
38830
38831         * m4/size_max.m4: New file.
38832         * m4/ptrdiff_max.m4: New file.
38833         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
38834         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
38835         (gl_XALLOC): Invoke it.
38836
38837 2003-11-11  Bruno Haible  <bruno@clisp.org>
38838
38839         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
38840         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
38841         defined.
38842
38843 2003-11-10  Paul Eggert  <eggert@twinsun.com>
38844
38845         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
38846         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
38847         rejected some allocations of exactly SIZE_MAX - 2 bytes.
38848         From Bruno Haible.
38849         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
38850         not (size_t) -1, since it's defined here.
38851
38852 2003-11-09  Karl Berry  <karl@gnu.org>
38853
38854         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
38855
38856 2003-11-06  Paul Eggert  <eggert@twinsun.com>
38857
38858         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
38859         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
38860         Reject sizes of exactly SIZE_MAX bytes.
38861         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
38862         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
38863
38864 2003-11-05  Bruno Haible  <bruno@clisp.org>
38865
38866         * lib/xsize.h: Include limits.h, to avoid a possible collision with
38867         SIZE_MAX defined in <limits.h> on Solaris.
38868
38869 2003-11-04  Jim Meyering  <jim@meyering.net>
38870
38871         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
38872         variable names, rather than @VAR@.
38873         * modules/poll: Likewise.
38874
38875 2003-11-04  Bruno Haible  <bruno@clisp.org>
38876
38877         * modules/xsize: New file.
38878         * modules/linebreak: Depend on xsize.
38879         * MODULES.html.sh (func_all_modules): Add xsize.
38880
38881 2003-11-04  Bruno Haible  <bruno@clisp.org>
38882
38883         * m4/xsize.m4: New file.
38884
38885 2003-11-04  Bruno Haible  <bruno@clisp.org>
38886
38887         * lib/xsize.h: New file.
38888         * lib/linebreak.c: Include xsize.h.
38889         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
38890         argument for overflow.
38891         Suggested by Paul Eggert.
38892
38893 2003-11-03  Karl Berry  <karl@gnu.org>
38894
38895         * config/config.{guess,sub}: update from config.
38896
38897 2003-11-03  Jim Meyering  <jim@meyering.net>
38898
38899         * modules/userspec (lib_SOURCES): Add userspec.h.
38900         (Include): Add "userspec.h".
38901         Improve description.
38902
38903 2003-11-03  Jim Meyering  <jim@meyering.net>
38904
38905         * lib/userspec.c: Include "userspec.h".
38906         * lib/userspec.h: New file.
38907
38908 2003-11-03  Bruno Haible  <bruno@clisp.org>
38909
38910         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
38911
38912 2003-11-03  Bruno Haible  <bruno@clisp.org>
38913
38914         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
38915         available, to avoid (extremely rare) race condition.
38916         Suggested by Paul Eggert.
38917
38918 2003-11-02  Karl Berry  <karl@gnu.org>
38919
38920         * config/srclist.txt (vasprintf.c): sync broken, sigh.
38921
38922 2003-10-31  Paul Eggert  <eggert@twinsun.com>
38923
38924         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
38925         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
38926         (read_filesystem_list): Set and use me_type_malloced.
38927         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
38928         whatever the type happens to be), for brevity and consistency.
38929         Check for size calculation overflow on Alphas running OSF/1.
38930
38931 2003-10-31  Jim Meyering  <jim@meyering.net>
38932
38933         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
38934
38935         * lib/linebuffer.c: Include <string.h> for declaration of memset.
38936
38937 2003-10-30  Paul Eggert  <eggert@twinsun.com>
38938             Bruno Haible  <bruno@clisp.org>
38939
38940         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
38941         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
38942
38943 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
38944
38945         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
38946         netbsd*-gnu*.  Suggested by Robert Millan.
38947
38948 2003-10-29  Paul Eggert  <eggert@twinsun.com>
38949
38950         * modules/group-member: Depend on stdbool.
38951
38952 2003-10-29  Paul Eggert  <eggert@twinsun.com>
38953
38954         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
38955
38956 2003-10-29  Paul Eggert  <eggert@twinsun.com>
38957
38958         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
38959         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
38960         after the 'gnu' in these cases.  This fixes some bugs in the
38961         previous change, and is based on suggestions by Robert Millan.
38962
38963 2003-10-29  Paul Eggert  <eggert@twinsun.com>
38964
38965         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
38966         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
38967         no longer needed.
38968         * lib/quotearg.c (quotearg_n_options): Use it.
38969         * lib/group-member.c: Include <stdbool.h>.
38970         (free_group_info): Arg is now const *; don't free arg.
38971         (get_group_info): Now returns bool and accepts struct group_info *,
38972         rather than returning a malloc'ed struct group_info *.
38973         All uses changed.  Check for overflow in internal size calculation.
38974
38975         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
38976         rather than xmalloc/xrealloc.
38977         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
38978         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
38979         conformance bug: the old code used a pointer after freeing the
38980         storage that it addressed.
38981         * lib/hash.c (hash_initialize): Simplify the code by using
38982         xalloc_oversized rather than doing it by hand.
38983         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
38984         the buffer preserved.  Use free and xmalloc instead.
38985         * lib/quotearg.c (quotearg_n_options): Likewise.
38986         Use a simpler test for size overflow.  Don't use xalloc_oversized
38987         because unsigned int might be wider than size_t (!); this suggests
38988         that we should switch from unsigned int to size_t for slot numbers.
38989
38990 2003-10-28  Paul Eggert  <eggert@twinsun.com>
38991
38992         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
38993         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
38994         NetBSD kernels.  Requested by Richard Stallman.
38995
38996 2003-10-27  Paul Eggert  <eggert@twinsun.com>
38997
38998         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
38999         to allocate the returned structure.  Do not allocate a subarray,
39000         as x2nrealloc will do that.
39001         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
39002         instead of xnrealloc.
39003         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
39004
39005 2003-10-27  Bruno Haible  <bruno@clisp.org>
39006
39007         * lib/stdbool_.h: Better support for BeOS.
39008
39009 2003-10-26  Paul Eggert  <eggert@twinsun.com>
39010
39011         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
39012         now uses inline.
39013
39014 2003-10-26  Paul Eggert  <eggert@twinsun.com>
39015
39016         * lib/xalloc.h (xalloc_oversized): New static inline function, for
39017         callers that want to do their own size-overflow checking.  Include
39018         <stdbool.h>, since xalloc_oversized returns bool.
39019         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
39020         to use xalloc_oversized.
39021
39022         Add two functions x2realloc, x2nrealloc, for programs that grow
39023         arrays dynamically by doubling their sizes.
39024         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
39025         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
39026         New functions.
39027
39028         Port to C99 semantics for 'inline' of external functions.
39029         Bug reported by Bruno Haible.
39030         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
39031         with the old contents of xnmalloc.
39032         (xnmalloc, xmalloc): Use it.
39033         (xnrealloc_inline): New static inline function,
39034         with the old contents of xnrealloc.
39035         (xnrealloc, xrealloc): Use it.
39036
39037         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
39038         that.
39039
39040 2003-10-26  Karl Berry  <karl@gnu.org>
39041
39042         * config/srclist.txt (COPYING.DOC): no longer available from
39043         /gd/gnuorg; don't know where the ultimate source is.
39044
39045 2003-10-25  Paul Eggert  <eggert@twinsun.com>
39046
39047         Fix several address-calculation bugs in the hash modules,
39048         plus some minor code cleanup.
39049
39050         * lib/hash.h: Include <stdbool.h>, for bool.
39051         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
39052         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
39053         hash_get_n_entries, hash_get_max_bucket_length,
39054         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
39055         hash_rehash): Use size_t rather than unsigned.
39056         * lib/hash.c (struct hash_table, hash_get_n_buckets,
39057         hash_get_n_buckets_used, hash_get_n_entries,
39058         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
39059         hash_get_entries, hash_do_for_each, hash_string, is_prime,
39060         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
39061         Likewise.
39062         (SIZE_MAX): Define if not defined.
39063         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
39064         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
39065         hash_print):
39066         Use const * when possible.
39067         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
39068         (check_tuning): Fix bug: if tuning parameters were very close to
39069         0 or 1, rounding errors could have caused subscript violations.
39070         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
39071         (hash_initialize): Add 'fail:' label
39072         to free table and return NULL, and use it to simplify code.
39073         Use calloc rather than clearing the storage ourself.
39074         (hash_initialize, hash_rehash): Check for arithmetic overflow in
39075         buffer size calculations.
39076         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
39077         Include <stddef.h>, for size_t.
39078         * lib/hash-pjw.c (hash_pjw): Likewise.
39079         Switch to method described by Bruno Haible.
39080         Include <limits.h>, for CHAR_BIT.
39081         (SIZE_BITS): New macro.
39082
39083 2003-10-23  Paul Eggert  <eggert@twinsun.com>
39084
39085         * m4/getline.m4 (AM_FUNC_GETLINE):
39086         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
39087         hosts.  Problem reported by Derek Robert Price in
39088         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
39089         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
39090         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
39091
39092 2003-10-21  Paul Eggert  <eggert@twinsun.com>
39093
39094         * lib/getndelim2.c (getndelim2): When size calculation overflows,
39095         ceiling the allocation at NMAX bytes rather than silently
39096         discarding input bytes before NMAX is reached.  This makes
39097         a difference only if NMAX exceeds SIZE_MAX / 2.
39098
39099         * lib/obstack.c: Merge from glibc.
39100         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
39101         Add libc_hidden_def (_obstack_newchunk).
39102         (_obstack_free) [! defined _LIBC]: Remove.
39103         [defined _LIBC]: Make a strong alias from obstack_free, rather than
39104         a clone of the function body.
39105         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
39106         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
39107
39108         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
39109         glibc.
39110         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
39111         arg to memcpy.
39112
39113         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
39114         (obstack_ptr_grow_fast, obstack_int_grow_fast):
39115         Don't use lvalue casts, as GCC plans to remove support for them
39116         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
39117         was also present in the non-GCC version, indicating that this
39118         code had always been buggy and had never been widely used.
39119         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
39120         Use the fast variant of each macro, rather than copying the
39121         definiens of the fast variant; that way, we'll be more likely to
39122         catch future bugs in the fast variants.
39123
39124 2003-10-20  Bruno Haible  <bruno@clisp.org>
39125
39126         * modules/wait-process: New file.
39127         * MODULES.html.sh (func_all_modules): Add wait-process.
39128
39129 2003-10-20  Bruno Haible  <bruno@clisp.org>
39130
39131         * m4/wait-process.m4: New file.
39132
39133 2003-10-20  Bruno Haible  <bruno@clisp.org>
39134
39135         * lib/wait-process.h: New file, from GNU gettext.
39136         * lib/wait-process.c: New file, from GNU gettext.
39137
39138 2003-10-19  Jim Meyering  <jim@meyering.net>
39139
39140         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
39141         HPUX 10.20.
39142
39143 2003-10-18  Karl Berry  <karl@gnu.org>
39144
39145         * config/config.guess: update from config.
39146
39147 2003-10-16  Paul Eggert  <eggert@twinsun.com>
39148
39149         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
39150         (getgroups): First arg is int, not size_t.
39151         Don't let 'free' mangle errno.
39152
39153 2003-10-16  Paul Eggert  <eggert@twinsun.com>
39154
39155         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
39156
39157 2003-10-16  Karl Berry  <karl@gnu.org>
39158
39159         * config/config.{guess,sub}: update from config.
39160
39161 2003-10-16  Jim Meyering  <jim@meyering.net>
39162
39163         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
39164         memcpy.
39165
39166 2003-10-15  Paul Eggert  <eggert@twinsun.com>
39167
39168         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
39169         (SIZE_MAX): Remove.
39170         (new_exclude, add_exclude_file): Initial size no longer needs to
39171         be a power of 2.
39172         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
39173         our own address arithmetic overflow checking.
39174
39175         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
39176         (fnmatch): Do not alloca more than 2000 wide characters;
39177         instead, use malloc for large buffers.
39178         Check for address arithmetic overflow, and return -1
39179         with errno set to ENOMEM in that case.
39180         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
39181         (NEW_PATTERN): Do not alloca more than 8000 bytes;
39182         instead, return -1.  Check for address arithmetic overflow.
39183
39184 2003-10-14  Paul Eggert  <eggert@twinsun.com>
39185
39186         Handle invalid suffixes and overflow independently, so that
39187         callers can treat them independently as needed.  Fix some bugs in
39188         suffix handling, e.g., "100k@" was not diagnosed as an invalid
39189         suffix for a human-readable blocksize.  The major caller-visible
39190         change is the addition of a new
39191         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
39192         that both overflow and suffix chars were found.
39193
39194         * lib/human.c (humblock): Don't check separately for invalid suffix
39195         char; that is xstrtoumax's job (now that its bug is fixed).
39196         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
39197         INTMAX_MAX]: New macros.
39198         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
39199         TYPE_MAXIMUM): New macros.
39200         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
39201         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
39202         if overflow occurs, as it's what __strtol does and it's more useful
39203         in practice.
39204         (__xstrtol): If __strtol reports some error other than ERANGE,
39205         reflect it to the caller as LONGINT_INVALID.  If it reports
39206         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
39207         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
39208         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
39209         value.
39210         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
39211         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
39212         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
39213         [defined UINTMAX_MAX]: New macros.
39214
39215 2003-10-14  Bruno Haible  <bruno@clisp.org>
39216
39217         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
39218
39219 2003-10-14  Bruno Haible  <bruno@clisp.org>
39220
39221         * m4/sig_atomic_t: New file, from GNU gettext.
39222         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
39223
39224 2003-10-14  Bruno Haible  <bruno@clisp.org>
39225
39226         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
39227         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
39228         Also use volatile where needed.
39229
39230 2003-10-12  Paul Eggert  <eggert@twinsun.com>
39231
39232         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
39233         Change maintainer from Bruno Haible to 'all'.
39234
39235 2003-10-12  Paul Eggert  <eggert@twinsun.com>
39236
39237         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
39238
39239 2003-10-12  Paul Eggert  <eggert@twinsun.com>
39240
39241         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
39242         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
39243         and define in terms of the other primitives.
39244         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
39245         (SIZE_MAX): Define if not already defined.
39246         (array_size_overflow): New function.
39247         (xalloc_die): Abort instead of exiting if 'error' returns.
39248         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
39249         (xmalloc, xrealloc): Use them.
39250         (xcalloc): Check for address arithmetic overflow.
39251         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
39252         a bit faster than strcpy.
39253
39254 2003-10-10  Simon Josefsson  <jas@extundo.com>
39255
39256         * modules/argp (Depends-on): Add restrict and strcase.
39257
39258 2003-10-10  Simon Josefsson  <jas@extundo.com>
39259
39260         * m4/argp.m4: Add AC_C_INLINE.
39261
39262 2003-10-08  Paul Eggert  <eggert@twinsun.com>
39263
39264         Merge getpass from libc, plus a few fixes.
39265
39266         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
39267         Include <stdbool.h>.
39268         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
39269         __fsetlocking to empty.
39270         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
39271         do include <bits/libc-lock.h>.
39272         Do not include <fcntl.h>; not needed.
39273         [_LIBC]: Include <wchar.h>.
39274         (NOTCANCEL_MODE): New macro.
39275         (flockfile, funlockfile) [_LIBC]: New macros.
39276         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
39277         [!_LIBC]: New macros.
39278         (call_fclose): New function.
39279         (getpass): Use it.  Save tty stream separately; this simplifies the
39280         code and makes it more reliable if stdin happens to equal stdout.
39281         Invoke __fsetlocking on tty.
39282         Handle thread cancellation if needed.
39283         Namespace cleanup (use __tcgetattr, __getline).
39284         Use bool for Booleans.
39285         [USE_IN_LIBIO]: Handle wide streams.
39286         [!_LIBC]: Unconditionally do the fseek, since we don't know what
39287         stream might go where.
39288
39289         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
39290         doesn't have to include <stdio.h> before us.
39291         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
39292         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
39293         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
39294         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
39295         if not declared, so that we can use getpass.c code from libc without
39296         rewriting it.
39297         (flockfile, ftrylockfile, funlockfile): New macros.
39298
39299 2003-10-08  Paul Eggert  <eggert@twinsun.com>
39300
39301         * modules/getpass: Depend on stdbool.
39302
39303 2003-10-08  Paul Eggert  <eggert@twinsun.com>
39304
39305         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
39306
39307 2003-10-07  Karl Berry  <karl@gnu.org>
39308
39309         * config/config.{guess,sub}: update from config.
39310
39311 2003-10-06  Jim Meyering  <jim@meyering.net>
39312             Bruno Haible  <bruno@clisp.org>
39313
39314         This lets translators provide better translations for the
39315         "Written by ..." part of --version output.
39316         * lib/version-etc.h: Include stdarg.h.
39317         (version_etc_copyright): Declare as readonly.
39318         (version_etc): Make this function variadic with a NULL-terminated list
39319         of author name strings.
39320         (version_etc_va): New declaration.
39321         * lib/version-etc.c: Include stdarg.h, stdlib.h.
39322         (version_etc_copyright): Declare as readonly.
39323         (version_etc_va): New function. Provide a different translatable string
39324         for each possible number of authors < 10. Abbreviate when there are 10
39325         authors or more.
39326         (version_etc): Make this function variadic. Call version_etc_va.
39327         Suggestion from Gary V. Vaughan.
39328
39329         * lib/long-options.h (parse_long_options): Change prototype: the
39330         authors string is moved to the end and becomes variadic.
39331         * lib/long-options.c: Include stdarg.h.
39332         (parse_long_options): Make this function variadic, too.
39333         Call version_etc_va, not version_etc.
39334
39335 2003-10-06  Bruno Haible  <bruno@clisp.org>
39336
39337         * modules/version-etc-2: Remove file.
39338         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
39339
39340 2003-10-06  Bruno Haible  <bruno@clisp.org>
39341
39342         * modules/fatal-signal: New file.
39343         * MODULES.html.sh (func_all_modules): Add fatal-signal.
39344
39345 2003-10-06  Bruno Haible  <bruno@clisp.org>
39346
39347         * m4/fatal-signal.m4: New file.
39348         * m4/signalblocking.m4: New file, from GNU gettext.
39349
39350 2003-10-06  Bruno Haible  <bruno@clisp.org>
39351
39352         * lib/version-etc-2.h: Remove file.
39353         * lib/version-etc-2.c: Remove file.
39354
39355 2003-10-06  Bruno Haible  <bruno@clisp.org>
39356
39357         * lib/fatal-signal.h: New file, from GNU gettext.
39358         * lib/fatal-signal.c: New file, from GNU gettext.
39359
39360 2003-10-05  Paul Eggert  <eggert@twinsun.com>
39361
39362         * README: Rework advice for preventing empty .o files.
39363         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
39364         not <sys/types.h>.
39365
39366 2003-10-04  Karl Berry  <karl@gnu.org>
39367
39368         * lib/argp*: update from libc.
39369
39370 2003-10-04  Karl Berry  <karl@gnu.org>
39371
39372         * config/config.{guess,sub}: update from config.
39373
39374 2003-10-02  Bruno Haible  <bruno@clisp.org>
39375
39376         * modules/lchown (Include): Add lchown.h.
39377         * modules/time_r (Include): Use "..." syntax.
39378         * modules/xgetdomainname (Include): Add xgetdomainname.h.
39379
39380 2003-10-01  Simon Josefsson  <jas@extundo.com>
39381
39382         * MODULES.html.sh (func_all_modules): Move gethostname from section
39383         'based on' to section 'lacking' POSIX:2001.
39384
39385 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
39386
39387         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
39388         to output mode on the same stream.
39389
39390 2003-09-29  Paul Eggert  <eggert@twinsun.com>
39391
39392         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
39393         Fix arg typo in previous patch.
39394
39395 2003-09-28  Jim Meyering  <jim@meyering.net>
39396
39397         * lib/error.c: Correct cpp indentation.
39398
39399 2003-09-27  Paul Eggert  <eggert@twinsun.com>
39400
39401         * modules/free: New file.
39402
39403 2003-09-27  Paul Eggert  <eggert@twinsun.com>
39404
39405         * m4/free.m4: New file.
39406
39407 2003-09-27  Paul Eggert  <eggert@twinsun.com>
39408
39409         * lib/minmax.h (MIN, MAX)
39410         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
39411         Omit the special code that used __typeof__, since we worry that
39412         it could be more trouble than it's worth.  See:
39413         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
39414         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
39415
39416         * lib/free.c: New file.
39417
39418 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
39419
39420         Trivial fixes to Makefile.am parts of module listings.
39421         * modules/strstr: Append strstr.h to lib_SOURCES.
39422         * modules/strcase: Likewise, for strcase.h.
39423
39424 2003-09-27  Karl Berry  <karl@gnu.org>
39425
39426         * config/mkinstalldirs: update from automake.
39427
39428 2003-09-26  Paul Eggert  <eggert@twinsun.com>
39429
39430         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
39431         (error_tail): Do not loop, reallocating temporary buffer, since
39432         the output cannot contain more wide characters than the input
39433         contains bytes, the size must be big enough already.  This avoids
39434         one potential size overflow calculation.  Check for size overflow
39435         when calculating temporary buffer size.  Free temporary buffer
39436         when done, if it was allocated with malloc; this plugs a memory
39437         leak.  Remove casts from void * to pointers, that are no longer
39438         needed now that we're assuming C89 or better.
39439
39440         Merge error changes from glibc.
39441
39442         * lib/error.c, error.h: Update copyright notice header to match glibc.
39443         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
39444         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
39445         Disable cancellation while printing error.
39446         * lib/error.h: Prepend __ to parameter names.
39447
39448 2003-09-26  Jim Meyering  <jim@meyering.net>
39449
39450         * lib/error.c (error_tail): Move some declarations
39451         into inner scope where the local variables are used.
39452
39453 2003-09-26  Bruno Haible  <bruno@clisp.org>
39454
39455         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
39456         stpncpy().
39457         Don't define stpncpy through config.h; it's now done through stpncpy.h.
39458
39459 2003-09-26  Bruno Haible  <bruno@clisp.org>
39460
39461         * lib/stpncpy.h (gnu_stpncpy): New declaration.
39462         (stpncpy): Define as alias for gnu_stpncpy.
39463         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
39464
39465 2003-09-25  Simon Josefsson  <jas@extundo.com>
39466
39467         * lib/xgetdomainname.h: New file.
39468         * lib/xgetdomainname.c: New file.
39469
39470 2003-09-25  Simon Josefsson  <jas@extundo.com>
39471             Bruno Haible  <bruno@clisp.org>
39472
39473         * modules/getdomainname: New file.
39474         * modules/xgetdomainname: New file.
39475         * MODULES.html.sh (func_all_modules): Add getdomainname,
39476         xgetdomainname.
39477
39478 2003-09-25  Simon Josefsson  <jas@extundo.com>
39479             Bruno Haible  <bruno@clisp.org>
39480
39481         * m4/getdomainname.m4: New file.
39482
39483 2003-09-25  Simon Josefsson  <jas@extundo.com>
39484             Bruno Haible  <bruno@clisp.org>
39485
39486         * lib/getdomainname.h: New file.
39487         * lib/getdomainname.c: New file.
39488
39489 2003-09-25  Karl Berry  <karl@gnu.org>
39490
39491         * lib/argp-fmtstream.c, argp-help.c: update from libc.
39492
39493 2003-09-25  Karl Berry  <karl@gnu.org>
39494
39495         * config/install-sh: update from automake.
39496
39497 2003-09-25  Bruno Haible  <bruno@clisp.org>
39498
39499         * modules/version-etc-2: New file, from modules/version-etc with
39500         modifications.
39501         * MODULES.html.sh (func_all_modules): Add version-etc-2.
39502
39503 2003-09-25  Bruno Haible  <bruno@clisp.org>
39504
39505         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
39506         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
39507
39508 2003-09-24  Simon Josefsson  <jas@extundo.com>
39509
39510         * modules/xgethostname: Add xgethostname.h.
39511
39512 2003-09-24  Paul Eggert  <eggert@twinsun.com>
39513
39514         * lib/linebuffer.c (freebuffer): Don't free the argument, just
39515         the buffer associated with the argument.  Bug reported by
39516         Simon Josefsson.
39517
39518 2003-09-24  Paul Eggert  <eggert@twinsun.com>
39519
39520         * README: Document assumptions that 'int' is at least 32 bits
39521         wide, that integer arithmetic is 2's complement without overflow,
39522         that there are no holes in integer values, that adding sizes of
39523         two nonoverlapping objects can't overflow, and that all-bits-zero
39524         yields scalar zero.  Fix spelling and capitalization typos.
39525
39526 2003-09-19  Karl Berry  <karl@gnu.org>
39527
39528         * lib/argp.h: update from libc.
39529
39530 2003-09-17  Paul Eggert  <eggert@twinsun.com>
39531
39532         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
39533         to avoid spurious warnings like "AC_RUN_IFELSE was called before
39534         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
39535
39536 2003-09-17  Paul Eggert  <eggert@twinsun.com>
39537
39538         * gnulib-tool: Use "test -h", not "test -L", for portability
39539         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
39540         (tags_regexp): Remove, since \| doesn't conform to POSIX.
39541         (sed_extract_prog): Issue s commands one-by-one, rather than
39542         using \| in one s command.
39543
39544 2003-09-16  Paul Eggert  <eggert@twinsun.com>
39545
39546         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
39547         input error, instead of returning NULL the next time we are called
39548         (and therefore losing track of errno).
39549
39550 2003-09-16  Bruno Haible  <bruno@clisp.org>
39551
39552         * gnulib-tool (func_create_testdir): Warn about duplicated
39553         dependencies.
39554
39555 2003-09-15  Paul Eggert  <eggert@twinsun.com>
39556
39557         * modules/argmatch, modules/fatal, modules/obstack,
39558         modules/xalloc, modules/xgethostname: Sort dependencies by
39559         importance, not alphabetically.
39560
39561 2003-09-15  Paul Eggert  <eggert@twinsun.com>
39562
39563         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
39564         fails, so that the caller gets the proper errno.
39565
39566         * lib/readutmp.c (read_utmp): Likewise.
39567         Check for fstat error.  Close stream and free storage
39568         when failing.
39569
39570 2003-09-14  Karl Berry  <karl@gnu.org>
39571
39572         * config/srclist.txt (strdup.c): disable for c89 changes.
39573
39574 2003-09-14  Jim Meyering  <jim@meyering.net>
39575
39576         * lib/getloadavg.c: Correct cpp indentation.
39577         * lib/strdup.c: Likewise.
39578         * lib/vasnprintf.c: Likewise.
39579
39580 2003-09-14  Bruno Haible  <bruno@clisp.org>
39581
39582         * modules/fwriteerror: New file.
39583         * MODULES.html.sh (func_all_modules): Add fwriteerror.
39584
39585 2003-09-14  Bruno Haible  <bruno@clisp.org>
39586
39587         * lib/fwriteerror.h: New file.
39588         * lib/fwriteerror.c: New file.
39589
39590 2003-09-12  Paul Eggert  <eggert@twinsun.com>
39591
39592         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
39593         modules/xgethostname, modules/xalloc: Depend on exit.
39594
39595 2003-09-12  Paul Eggert  <eggert@twinsun.com>
39596
39597         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
39598
39599         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
39600         and AC_MINIX, too, so that their extensions are available.
39601
39602         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
39603         This macro has been superseded by gl_BACKUPFILE.
39604
39605         More patches to assume C89 or better.
39606
39607         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
39608
39609         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
39610         unconditionally.
39611         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
39612         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
39613         Include <string.h>, <stdlib.h> unconditionally.
39614         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
39615         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
39616         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
39617         headers or for string.h.
39618         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
39619         or strtoul.
39620
39621         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
39622         headers.
39623         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
39624         * m4/userspec.m4 (gl_USERSPEC): Likewise.
39625         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
39626         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
39627         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39628         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
39629         memcpy, memset.
39630         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
39631         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
39632         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
39633         strtol.
39634         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
39635         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
39636         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
39637         strtoul.
39638
39639 2003-09-12  Paul Eggert  <eggert@twinsun.com>
39640
39641         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
39642         * lib/obstack.c [!defined _LIBC]: Likewise.
39643         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
39644         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
39645         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
39646
39647         More changes to assume C89 or better.
39648
39649         * lib/error.c (error_tail): Assume vprintf.
39650
39651         * lib/argmatch.c (getenv): Remove decl.
39652         * lib/progreloc.c (get_full_program_name): Define via prototype.
39653         * lib/setenv.c (clearenv): Likewise.
39654         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
39655         needed.
39656         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
39657         (malloc, memcpy): Remove decls.
39658         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
39659         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
39660         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
39661         (memcpy): Remove macro.
39662         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
39663         (__P): Remove.  All uses removed.
39664         (PTR): Remove.  All uses changed to void *.
39665         (CHAR_BIT, NULL): Remove.
39666         (spaces, zeros, memset_space, memset_zero)
39667         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
39668         Remove.
39669         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
39670         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
39671         Define with prototype.
39672         Remove now-unnecessary prototype decl.
39673         (extra_args_spec): Assume ANSI C.  All uses changed.
39674         (extra_args_spec_iso): Remove.
39675         (my_strftime, emacs_strftimeu): Define via prototype.
39676         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
39677         unconditionally.
39678         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
39679         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
39680         (strtoul, strtol): Remove decls.
39681         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
39682         LONG_MAX): Remove.
39683         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
39684         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
39685         (LOCALE_PARAM_PROTO): New macro.
39686         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
39687         (INTERNAL (strtol), strtol): Define with a prototype.
39688         (PARAMS): Remove.  All uses removed.
39689         * lib/tempname.c: Include <string.h> unconditionally.
39690         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
39691         * lib/xgethostname.c (main): Define with a prototype.
39692         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
39693         Include <stdlib.h> unconditionally.
39694         (calloc, malloc, realloc, free): Remove decls.
39695         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
39696         Include <stdlib.h> unconditionally.  Sort include file names.
39697         (strtod): Remove.
39698         (xstrtod): Define with a prototype.
39699         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
39700         (strtol, strtoul): Remove decls.
39701
39702 2003-09-11  Paul Eggert  <eggert@twinsun.com>
39703
39704         More patches to assume C89 or better.
39705         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
39706         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
39707         string.h, memchr, STDC_HEADERS.
39708
39709 2003-09-11  Paul Eggert  <eggert@twinsun.com>
39710
39711         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
39712         Include <stdlib.h>, <string.h> unconditionally.
39713         Remove now-unnecessary cast to char *.
39714         * lib/strnlen.c: Include <string.h> unconditionally.
39715         * lib/yesno.c (yesno): Define with a prototype.
39716
39717 2003-09-11  Bruno Haible  <bruno@clisp.org>
39718
39719         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
39720
39721 2003-09-10  Jim Meyering  <jim@meyering.net>
39722
39723         * lib/error.c: Correct indentation of cpp directives.
39724
39725 2003-09-10  Bruno Haible  <bruno@clisp.org>
39726
39727         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
39728         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
39729         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
39730         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
39731         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
39732         <stdlib.h> and <string.h> checks.
39733         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
39734         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
39735
39736 2003-09-10  Bruno Haible  <bruno@clisp.org>
39737
39738         * lib/strcspn.c: Include <string.h> unconditionally.
39739         * lib/strpbrk.c: Include <string.h> unconditionally.
39740         * lib/strstr.c: Include <string.h> unconditionally.
39741         * lib/unicodeio.c: Include <string.h> unconditionally.
39742         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
39743         * lib/unsetenv.c: Likewise.
39744         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
39745         * lib/yesno.c: Include <stdlib.h> unconditionally.
39746         (rpmatch): Add prototype.
39747
39748 2003-09-09  Paul Eggert  <eggert@twinsun.com>
39749
39750         More patches to assume C89 or better.
39751         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
39752         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
39753         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
39754         or for string.h.
39755         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
39756         stdlib.h.
39757         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
39758         C headers.
39759         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
39760         string.h.
39761         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
39762         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
39763         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
39764         or for string.h.
39765         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
39766         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
39767         C headers.
39768         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
39769         memcpy.
39770         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
39771         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
39772         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
39773         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
39774         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
39775         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
39776         string.h, free.
39777         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
39778         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
39779         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
39780         C headers, or for string.h.
39781         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
39782         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
39783         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
39784         headers, memory.h, stdlib.h, string.h, strings.h.
39785         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
39786         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
39787         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
39788         strchr.
39789         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
39790         headers, memory.h, string.h.
39791         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
39792         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
39793         free.
39794         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
39795         headers.
39796         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
39797         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
39798         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
39799         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
39800         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
39801
39802 2003-09-09  Paul Eggert  <eggert@twinsun.com>
39803
39804         More K&R removal.
39805
39806         * lib/acosl.c (main): Use a prototype.
39807         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
39808         tanl.c: Likewise.
39809
39810         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
39811
39812         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
39813         (getopt, etopt_long, getopt_long_only, _getopt_internal)
39814         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
39815         with a prototype.
39816         * lib/getopt.c (const): Remove macro.
39817         Include <string.h> unconditionally.
39818         (my_index): Remove; all uses changed to strchr.
39819         (strlen): Remove decl.
39820         (exchange): Remove forward decl; no longer needed.
39821         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
39822         Define with prototype.
39823         * lib/getopt1.c (const): Remove macro.
39824         (getopt_long, getopt_long_only, main): Define with prototype.
39825
39826         * lib/getugroups.c: Include <string.h> unconditionally.
39827
39828         * lib/getusershell.c: Include <stdlib.h> unconditionally.
39829         (getusershell, setusershell, endusershell, readname, main):
39830         Define with prototypes.
39831
39832         * lib/group-member.c: Include group-member.h first.
39833         Include <stdlib.h> unconditionally.
39834
39835         * lib/hard-locale.c: Include hard-locale.h first.
39836         Include <stdlib.h>, <string.h> unconditionally.
39837
39838         * lib/hash.c (free, malloc): Remove decls.
39839         Include <stdlib.h> unconditionally.
39840
39841         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
39842         (getenv): Do not declare.
39843
39844         * lib/idcache.c: Include <string.h> unconditionally.
39845
39846         * lib/long-options.c: Include long-options.h first, to test interface.
39847         Include <stdlib.h> unconditionally.
39848
39849         * lib/makepath.c: Include makepath.h first, to test interface.
39850         Include <stdlib.h> and <string.h> unconditionally.
39851
39852         * lib/linebuffer.c: Include <stdlib.h>.
39853         (free): Remove decl.
39854
39855         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
39856         stddef.h. rpl_malloc returns void *, not char *.
39857         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
39858         prototype.
39859
39860         * lib/md5.h: Include <limits.h> unconditionally.
39861         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
39862         (__P): Remove; all uses removed.
39863         * lib/md5.c: Include "md5.h" first.
39864         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
39865         md5_buffer, md5_process_bytes, md5_process_block):
39866         Define with prototypes.
39867         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
39868         * lib/sha.c: Include "sha.h" first.
39869         Include <stdlib.h>, <string.h> unconditionally.
39870
39871         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
39872         * lib/memcmp.c (__ptr_t): Likewise.
39873         * lib/memrchr.c (__ptr_t): Likewise.
39874         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
39875         Include <string.h> unconditionally.
39876         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
39877         * lib/memchr.c: Include <stdlib.h> unconditionally.
39878         * lib/memchr.c (LONG_MAX): Remove.
39879         * lib/memrchr.c (LONG_MAX): Likewise.
39880         * lib/memchr.c (__memchr): Define via a prototype.
39881         * lib/memrchr.c (__memrchr): Likewise.
39882         * lib/memcmp.c (__P): Remove, and remove all uses.
39883         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
39884         Remove forward decls; no longer needed.
39885         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
39886         Use types required by C89 in prototype.
39887
39888         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
39889         * lib/savedir.c: Likewise.
39890         * lib/mkdir.c (free): Remove decl.
39891         * lib/rmdir.c (rmdir): Define with a prototype.
39892         * lib/savedir.c: Include savedir.h first, to test interface.
39893
39894         * lib/mktime.c (STDC_HEADERS): Remove.
39895         Include <stdlib.h>, <string.h> unconditionally.
39896
39897         * lib/modechange.c: Include <stdlib.h> unconditionally.
39898         (malloc): Remove decl.
39899
39900         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
39901         (free): Remove decl.
39902
39903         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
39904         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
39905         (This type really should be intptr_t, but that's a C99ism.)
39906         (_obstack_memcpy): Remove: all uses changed to memcpy.
39907         Include <string.h> unconditionally.
39908         (struct obstack): Assume __STDC__ for types of members
39909         chunkfun, freefun, extra_arg.
39910         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
39911         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
39912         obstack_begin, obstack_specify_allocation,
39913         obstack_specify_allocation_with_arg, obstack_chunkfun,
39914         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
39915         Remove unprototyped decls and the macros that use them.
39916         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
39917         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
39918         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
39919         (defined __STDC__ && __STDC__)]:
39920         Remove nonprototyped code.
39921         Include <stdlib.h> unconditionally.
39922         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
39923         _obstack_allocated_p, _obstack_free, obstack_free,
39924         _obstack_memory_used, print_and_abort):
39925         Define using prototypes.
39926         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
39927         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
39928         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
39929         obstack_next_free, obstack_object_size, obstack_room) [0]:
39930         Remove unused, unprototyped code.
39931
39932         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
39933
39934         * lib/physmem.c (physmem_total, physmem_available, main): Define
39935         with prototypes.
39936
39937         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
39938         (main): Define with a prototype.
39939
39940         * lib/posixver.c (getenv): Remove decl.
39941
39942         * lib/putenv.c (malloc): Returns void *, not char *.
39943         Include <string.h> unconditionally.
39944         (strchr, memcpy, NULL): Do not define.
39945
39946         * lib/readtokens.c: Include readtokens.h first, to test interface.
39947         Include <stdlib.h>, <string.h> unconditionally.
39948         (init_tokenbuffer): Define with a prototype.
39949
39950         * lib/regex.c (PARAMS): Remove.  All uses removed.
39951         All uses of _RE_ARGS removed, too.
39952         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
39953         unconditionally.
39954         (bzero): Assume memset exists.
39955         (memcmp, memcpy, NULL): Remove.
39956         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
39957         char, or assignments to local vars of type signed char.
39958         (init_syntax_once, PREFIX(extract_number_and_incr),
39959         PREFIX(print_partial_compiled_pattern),
39960         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
39961         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
39962         PREFIX(regex_grow_registers), PREFIX(regex_compile),
39963         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
39964         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
39965         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
39966         wcs_compile_range, byte_compile_range, truncate_wchar,
39967         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
39968         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
39969         count_mbs_length, wcs_re_match_2_internal,
39970         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
39971         PREFIX(alt_match_null_string_p),
39972         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
39973         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
39974         regfree, PREFIX(extract_number)): Define with prototype.  Remove
39975         now-unnecessary declaration, if any.
39976         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
39977         regcomp, regexec):
39978         Remove now-unnecessary casts among pointer types.
39979         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
39980
39981         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
39982         (free): Remove decl.
39983
39984         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
39985
39986         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
39987         (free): Remove decl.
39988
39989         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
39990         * lib/xgetcwd.c: Likewise.
39991
39992         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
39993         (free): Remove decl.
39994
39995         * lib/strchrnul.c (strchrnul): Define with a prototype.
39996         Fix bug: c_in was not converted to char before searching.
39997
39998         The following changes are not K&R related:
39999
40000         * lib/group-member.h: Include <sys/types.h>, so that this file is
40001         self-contained.
40002         * lib/makepath.h: Likewise.
40003
40004         * lib/getusershell.c (readname, default_index, line_size, readname):
40005         Use size_t, not int, for sizes.
40006         (readname): If the size overflows, report an error instead of
40007         looping forever.
40008
40009 2003-09-09  Paul Eggert  <eggert@twinsun.com>
40010
40011         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
40012         libc.
40013
40014 2003-09-09  Paul Eggert  <eggert@twinsun.com>
40015
40016         * README: New section: portability guidelines.
40017
40018 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
40019
40020         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
40021         C89 spec.
40022
40023 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
40024
40025         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
40026
40027 2003-09-08  Paul Eggert  <eggert@twinsun.com>
40028
40029         Assume C89 or better; remove K&R cruft.
40030         A few of these changes were first proposed by Derek Robert Price
40031         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
40032
40033         * lib/addext.c: Include <string.h> unconditionally.
40034         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
40035         Don't declare getenv or malloc.
40036
40037         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
40038         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
40039         (NULL): Remove.
40040         (find_stack_direction, alloca): Use prototypes.
40041
40042         * lib/atexit.c (atexit): Define using a prototype.
40043
40044         * lib/basename.c, dirname.c, stripslash.c:
40045         Include <string.h> unconditionally.
40046
40047         * lib/bcopy.c: Include <stddef.h>.
40048         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
40049
40050         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
40051
40052         * lib/error.h (error, error_at_line, error_print_progname)
40053         [! (defined (__STDC__) && __STDC__)]: Remove decls.
40054         * lib/error.c: Include error.h first, to check interface.
40055         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
40056         (VA_START): Remove; all uses changeed to va_start.
40057         (exit, strerror): Remove decls.
40058         (error_print_progname): Prototype uncondionally.
40059         Don't include <errno.h>; no longer needed.
40060         (private_strerror): Remove.
40061         (error_tail): Always define.
40062         (error, error_at_line): Assume C89 or better; always use prototypes.
40063         * lib/fatal.c: Include "fatal.h" first, to test interface.
40064         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
40065         (VA_START): Remove; all uses changed to va_start.
40066         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
40067         this case.
40068         (exit): Remove decl.
40069         (fatal): Prototype unconditionally.  Assume va_start works.
40070         Abort at end, to pacify gcc.
40071
40072         * lib/euidaccess.c (main): Define with a prototype.
40073
40074         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
40075
40076         * lib/exitfail.c: Include <stdlib.h> unconditionally.
40077
40078         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
40079         prototypes.
40080         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
40081         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
40082         (getenv): Remove decl.
40083         (fnmatch): Define using a prototype.
40084         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
40085         (FCT): Define using a prototype.
40086
40087         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
40088
40089         * lib/gethostname.c: Include <stddef.h>.
40090         (gethostname): Define with prototype.  Length is size_t, not int.
40091
40092 2003-09-08  Paul Eggert  <eggert@twinsun.com>
40093
40094         Assume C89 or better; remove K&R cruft.
40095         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
40096         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
40097         string.h, getenv, malloc.
40098         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
40099         headers.
40100         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
40101         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
40102         do not check for strerror.
40103         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
40104         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
40105         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
40106         do not check for doprnt or vprintf.
40107         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
40108         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
40109
40110 2003-09-08  Paul Eggert  <eggert@twinsun.com>
40111
40112         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
40113         getversion.c should have been removed then, but was accidentally
40114         preserved.
40115
40116         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
40117         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
40118
40119 2003-09-08  Karl Berry  <karl@gnu.org>
40120
40121         * config/config.sub, config.guess, srclistvars.sh: update from savannah
40122                 config, forget about prep.
40123
40124         * config/depcomp, missing: update from automake.
40125
40126 2003-09-07  Paul Eggert  <eggert@twinsun.com>
40127
40128         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
40129         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
40130
40131 2003-09-07  Paul Eggert  <eggert@twinsun.com>
40132
40133         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
40134         copy_tm_result.  Bug reported by Simon Josefsson in
40135         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
40136
40137 2003-09-06  Paul Eggert  <eggert@twinsun.com>
40138
40139         * m4/time_r.m4: New file.
40140         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
40141         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
40142         is. Check for timegm declaration.
40143         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
40144         Do not check for gmtime_r.
40145         Replace mktime if __mktime_internal does not exist and if mktime
40146         hasn't been replaced already.
40147
40148 2003-09-06  Paul Eggert  <eggert@twinsun.com>
40149
40150         * lib/time_r.c, lib/time_r.h: New files.
40151
40152         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
40153         __localtime_r.
40154         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
40155         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
40156
40157         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
40158         __gmtime_r.
40159         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
40160         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
40161         Include <time_r.h>.
40162
40163         * lib/timegm.c: Switch to glibc implementation, with the following
40164         changes:
40165         [defined HAVE_CONFIG_H]: Include <config.h>.
40166         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
40167         (__mktime_internal) [!defined _LIBC]: New decl.
40168         (__gmtime_r) [!defined _LIBC]: New macro and function.
40169         (timegm): Use a prototype, since gnulib assumes C89.
40170         Do not bother declaring tmp to be const, as it's not really usefu.
40171         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
40172         (timegm): Declare only if HAVE_DECL_TIMEGM.
40173
40174 2003-09-06  Paul Eggert  <eggert@twinsun.com>
40175
40176         * MODULES.html.sh (func_all_modules): Add time_r.
40177         * modules/time_r: New file.
40178         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
40179         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
40180
40181 2003-09-03  Paul Eggert  <eggert@twinsun.com>
40182
40183         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
40184         Bug reported by Lute Kamstra in
40185         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
40186
40187         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
40188         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
40189         course with correspondingly smaller numbers for tomorrow and
40190         yesterday.  From Tadayoshi Funaba.  Originally installed into
40191         sh-utils on 1999-08-07, but the patch got lost (I guess during the
40192         coreutils merge?).
40193
40194 2003-08-31  Simon Josefsson  <jas@extundo.com>
40195
40196         * modules/timegm: New file.
40197         * MODULES.html.sh (func_all_modules): Add timegm.
40198
40199 2003-08-31  Simon Josefsson  <jas@extundo.com>
40200
40201         * m4/timegm.m4: New file.
40202
40203 2003-08-31  Simon Josefsson  <jas@extundo.com>
40204
40205         * lib/timegm.h: New file.
40206         * lib/timegm.c: New file.  Based on
40207         wget-1.8.2/src/http.c:mktime_from_utc.
40208
40209 2003-08-31  Karl Berry  <karl@gnu.org>
40210
40211         * lib/argp.h: update from libc.
40212
40213 2003-08-28  Bruno Haible  <bruno@clisp.org>
40214
40215         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
40216         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
40217         followed by '#define fnmatch fnmatch_posix' gives an error.
40218
40219 2003-08-28  Bruno Haible  <bruno@clisp.org>
40220
40221         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
40222         warning on QNX, which defines O_BINARY to 000000.
40223
40224 2003-08-27  Jim Meyering  <jim@meyering.net>
40225
40226         * m4/mkstemp.m4: Require that the system mkstemp be able to create
40227         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
40228         would fail after 32.  Reported by Danny Levinson.  Details here:
40229         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
40230
40231 2003-08-24  Bruno Haible  <bruno@clisp.org>
40232
40233         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
40234         MSVC7 <stdio.h> is included later.
40235
40236 2003-08-22  Simon Josefsson  <jas@extundo.com>
40237
40238         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
40239
40240 2003-08-20  Karl Berry  <karl@gnu.org>
40241
40242         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
40243
40244 2003-08-20  Bruno Haible  <bruno@clisp.org>
40245
40246         * modules/progname: New file.
40247         * MODULES.html.sh (func_all_modules): Add progname.
40248
40249 2003-08-20  Bruno Haible  <bruno@clisp.org>
40250
40251         * lib/progname.h: New file, from GNU gettext.
40252         * lib/progname.c: New file, from GNU gettext.
40253         * lib/progreloc.c: New file, from GNU gettext.
40254
40255 2003-08-19  Jim Meyering  <jim@meyering.net>
40256
40257         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
40258         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
40259
40260 2003-08-19  Bruno Haible  <bruno@clisp.org>
40261
40262         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
40263         more.
40264
40265 2003-08-19  Bruno Haible  <bruno@clisp.org>
40266
40267         * lib/xstrdup.c: Assume <string.h> exists.
40268
40269 2003-08-18  Paul Eggert  <eggert@twinsun.com>
40270
40271         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
40272         in makefile rules.
40273
40274 2003-08-18  Jim Meyering  <jim@meyering.net>
40275
40276         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
40277         * m4/lib-ld.m4: Likewise.
40278
40279 2003-08-18  Jim Meyering  <jim@meyering.net>
40280
40281         * lib/setenv.h: Indent nested cpp directive.
40282         * lib/vasnprintf.c: Remove trailing blanks.
40283
40284 2003-08-17  Simon Josefsson  <jas@extundo.com>
40285
40286         * modules/xstrndup: New file.
40287         * MODULES.html.sh (func_all_modules): Add xstrndup.
40288
40289 2003-08-17  Simon Josefsson  <jas@extundo.com>
40290
40291         * modules/argp: Fix autoconf macro name. Add more dependencies.
40292
40293 2003-08-17  Simon Josefsson  <jas@extundo.com>
40294
40295         * m4/xstrndup.m4: New file.
40296
40297 2003-08-17  Simon Josefsson  <jas@extundo.com>
40298
40299         * m4/argp.m4: New file.
40300
40301 2003-08-17  Simon Josefsson  <jas@extundo.com>
40302             Bruno Haible  <bruno@clisp.org>
40303
40304         * lib/xstrndup.h: New file.
40305         * lib/xstrndup.c: New file.
40306
40307 2003-08-17  Bruno Haible  <bruno@clisp.org>
40308
40309         * modules/strndup (Files, Include): Add lib/strndup.h.
40310
40311 2003-08-17  Bruno Haible  <bruno@clisp.org>
40312
40313         * modules/euidaccess (Files): Add lib/euidaccess.h.
40314
40315 2003-08-17  Bruno Haible  <bruno@clisp.org>
40316
40317         * lib/strndup.h: New file.
40318
40319 2003-08-17  Bruno Haible  <bruno@clisp.org>
40320
40321         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
40322         like AC_GNU_SOURCE.
40323         * modules/extensions (configure.ac): Comment out the invocation of
40324         gl_USE_SYSTEM_EXTENSIONS.
40325
40326 2003-08-16  Paul Eggert  <eggert@twinsun.com>
40327
40328         Merges from coreutils, etc.
40329         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
40330         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
40331         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
40332         fixing a typo.
40333         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
40334         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
40335
40336 2003-08-16  Paul Eggert  <eggert@twinsun.com>
40337
40338         Document merge from coreutils.
40339         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
40340         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
40341         * modules/utime: Add m4/utimes-null.m4.
40342
40343 2003-08-16  Paul Eggert  <eggert@twinsun.com>
40344
40345         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
40346         space, undoing this 2003-08-12 change:
40347         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
40348
40349 2003-08-16  Paul Eggert  <eggert@twinsun.com>
40350
40351         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
40352         strtoul.c from libc, undoing this 2003-08-12 change:
40353         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
40354
40355 2003-08-16  Jim Meyering  <jim@meyering.net>
40356
40357         Merges from coreutils.
40358         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
40359         prefix.  Adjust cache variables similarly.  Create 500 rather than
40360         just 300 files, to exercise bug on Darwin6.5, too.
40361         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
40362         $missing_dir.
40363         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
40364         AM_SYS_POSIX_TERMIOS.
40365         Reported by mkc@mathdogs.com.
40366         Also change use of $am_cv_sys_posix_termios
40367         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
40368         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
40369         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
40370         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
40371         in /proc/mounts until it finds one with matching device number.  This
40372         is unnecessary when the FILE argument *is* a mount point.  No stat call
40373         is necessary in that case.  So, disable the statvfs-testing code on
40374         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
40375         as RedHat bug# 84846.
40376         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
40377         to 1MB, so as not to render systems with no stack size limit (e.g.,
40378         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
40379         Include <unistd.h>.  On some systems,
40380         it is required for the definition of _SC_PAGESIZE.
40381
40382 2003-08-16  Jim Meyering  <jim@meyering.net>
40383
40384         Merge from coreutils.
40385         * lib/xstrtoimax.c: #else #if -> #elif.
40386         * lib/xstrtoumax.c: Likewise.
40387
40388 2003-08-16  Jim Meyering  <jim@meyering.net>
40389
40390         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
40391         * m4/utimes.m4: Removed.
40392         * m4/utimes-null.m4: Renamed from utimes.m4.
40393
40394         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
40395         to 1MB, so as not to render systems with no stack size limit (e.g.,
40396         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
40397         Include <unistd.h>.  On some systems,
40398         it is required for the definition of _SC_PAGESIZE.
40399
40400 2003-08-16  Jim Meyering  <jim@meyering.net>
40401         and Paul Eggert  <eggert@cs.ucla.edu>
40402
40403         Merges from coreutils, etc.
40404
40405         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
40406         using the latest version from cvs.  This avoids problems with #line
40407         directives using a vendor (Sun) compiler.
40408         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
40409         Don't set GETGROUPS_LIB here; now it's
40410         done via getgroups.m4's wrapper function.
40411         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
40412         rather than just in sh-util/configure.in, so that the
40413         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
40414         same.
40415         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
40416         AC_FUNC_GETLOADAVG where to find getloadavg.c.
40417         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
40418         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
40419         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
40420         Remove code that is now done by the newly-required macros.
40421         Append $(EXEEXT) to DF_PROG.
40422         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
40423         Do not invoke or require the following here,
40424         since prereq.m4 or some gnulib .m4 now does this for us:
40425         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
40426         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
40427         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
40428         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
40429         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
40430         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
40431         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
40432         AC_FUNC_OBSTACK.
40433         Do not replace the following functions, as this is now the job
40434         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
40435         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
40436         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
40437         atexit getpass, strdup, getpagesize.
40438         Replace 'raise'.
40439         Do not check for the following functions, as this is now the job
40440         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
40441         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
40442         setregid.
40443         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
40444         Check for sys/sysctl.h.
40445         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
40446         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
40447         of checking for ssize_t ourselves.
40448
40449         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
40450         Require every macro that gnulib/modules/* suggests for us.
40451         (jm_PREREQ_ADDEXT): New macro.
40452         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
40453         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
40454
40455         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
40456         (gl_PHYSMEM): Use it.
40457         Also check for `table' function.
40458         Check for new headers and functions.
40459         Add check for sys/sysmp.h.
40460         With suggestions from Kaveh Ghazi.
40461         Ignore headers that are present but cannot be compiled.  This
40462         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
40463         C 5.4.
40464
40465 2003-08-15  Paul Eggert  <eggert@twinsun.com>
40466
40467         Document merge from coreutils.
40468         * modules/userspec: Depend on posixver.
40469         * modules/strftime: Depend on tzset.
40470
40471 2003-08-15  Paul Eggert  <eggert@twinsun.com>
40472
40473         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
40474         rather than tab, after '#' in shell-script copyright notices.
40475         Suggested by Bruno Haible.
40476
40477 2003-08-15  Paul Eggert  <eggert@twinsun.com>
40478
40479         * config/srclist-update: Use three spaces, rather than tab, after '#'
40480         in shell-script copyright notices.  Suggested by Bruno Haible.
40481         Remove unnecessary parenthesization in regular expression.
40482
40483 2003-08-15  Jim Meyering  <jim@meyering.net>
40484
40485         Merge from coreutils.
40486         * lib/xgethostname.c: Include <stdlib.h>.
40487         (xghostname): Don't exit for anything other than memory-related
40488         failure; just return NULL.
40489         * lib/userspec.c: Include "posixver.h".
40490         (parse_user_spec): Accept `.' as a separator only
40491         in pre-POSIX-200112 mode.
40492         * lib/strtoimax.c: Use #elif rather than #else #if.
40493         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
40494         Remove function, now that we can rely on a working tzset function.
40495         [!_LIBC]: Ensure that the required autoconf test has been run.
40496         [!defined _NL_CURRENT && HAVE_STRFTIME]:
40497         Use underlying_strftime for %r.
40498         * lib/sha.c: Merge in some clean-up and optimization changes from
40499         glibc.
40500         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
40501         Ensure that it is a multiple of 64.
40502         Rearrange loop exit tests so as to avoid performing an
40503         additional fread after encountering an error or EOF.
40504         * lib/realloc.c: Update copyright date.
40505
40506 2003-08-15  Jim Meyering  <jim@meyering.net>
40507         and Paul Eggert  <eggert@twinsun.com>
40508
40509         Merge from coreutils.
40510         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
40511         member but strut utmpx does not.  Needed for AIX 4.3.3.
40512         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
40513
40514 2003-08-15  Jim Meyering  <jim@meyering.net>
40515         and Paul Eggert  <eggert@cs.ucla.edu>
40516
40517         Merges from coreutils, etc.
40518         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
40519         Require gl_FUNC_TZSET_CLOBBER.
40520         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
40521         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
40522         members.
40523
40524 2003-08-14  Paul Eggert  <eggert@twinsun.com>
40525
40526         Help the merge from coreutils.
40527         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
40528         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
40529         * m4/tzset.m4: Use it too.
40530
40531 2003-08-14  Paul Eggert  <eggert@twinsun.com>
40532
40533         * modules/tzset: New file.
40534
40535 2003-08-14  Jim Meyering  <jim@meyering.net>
40536
40537         Merges from coreutils.
40538         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
40539         variable names, rather than @FNMATCH_H@.
40540         * modules/alloca: Likewise for $(ALLOCA_H).
40541
40542         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
40543         the three copies of the literal target, `fnmatch.h'.
40544         * modules/alloca (alloca.h): Likewise.
40545
40546 2003-08-14  Jim Meyering  <jim@meyering.net>
40547
40548         Merge from coreutils.
40549         * m4/tzset.m4: New file.
40550         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
40551         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
40552         otherwise, AIX 5.1 systems would end up using the latter.
40553         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
40554         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
40555         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
40556         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
40557
40558 2003-08-14  Jim Meyering  <jim@meyering.net>
40559
40560         Merge from coreutils.
40561         * lib/obstack.h: Whitespace changes.
40562         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
40563         and xcalloc return values.
40564         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
40565         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
40566         hang on OSF/1 5.1 for DIR on both local and remote file systems.
40567         Reported by (and fix confirmed by) Nelson H. F. Beebe.
40568         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
40569         error from mntctl.
40570         Use mntctl's return value to drive the entry-processing loop, since
40571         we can't rely on the value of the vmt_length member in the last
40572         entry.  On some systems doing so could result in exhausting
40573         virtual memory.  Based in part on a patch from Mike Jetzer.
40574
40575 2003-08-14  Jim Meyering  <jim@meyering.net>
40576         and Paul Eggert  <eggert@twinsun.com>
40577
40578         Merges from coreutils, plus other fixes.
40579         * lib/physmem.c: Merge in portability changes from gcc/libiberty
40580         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
40581         for credits and details.  Thanks to Kaveh Ghazi for helping
40582         to keep these files in sync.
40583         (ARRAY_SIZE): Define it.
40584         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
40585         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
40586         (memcasecmp): Don't assume size_t fits in unsigned int.
40587         Remove casts and duplicate code.
40588         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
40589         (memcpy): Remove definition.
40590         Merge in some clean-up and optimization changes from glibc.
40591         [BLOCKSIZE]: Move definition to top of file.
40592         Ensure that it is a multiple of 64.
40593         Rearrange loop exit tests so as to avoid performing an
40594         additional fread after encountering an error or EOF.
40595         * lib/md5.h (md5_uintptr): Define.
40596         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
40597         return to the initial working directory.  Preserve errno
40598         for caller.
40599         * lib/idcache.c: Include "xalloc.h".
40600         (xmalloc, xrealloc): Remove decls.
40601         (getuser): Remove casts no longer required in C89.
40602         * lib/human.c: Include stdio.h, for sprintf.
40603         * lib/group-member.c: Include "xalloc.h".
40604         (xmalloc, xrealloc): Remove decls.
40605         (get_group_info): Remove casts no longer required in C89.
40606         * lib/getusershell.c (readname): Remove casts no longer required in
40607         C89.
40608         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
40609         * lib/getline.c: Whitespace fix, from coreutils.
40610
40611 2003-08-13  Paul Eggert  <eggert@twinsun.com>
40612
40613         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
40614         Check for isascii.
40615
40616         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
40617         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
40618         Undo previous (whitespace-only) change.
40619
40620 2003-08-13  Paul Eggert  <eggert@twinsun.com>
40621
40622         * lib/exclude.c: Include <ctype.h>
40623         (IN_CTYPE_DOMAIN): New macro.
40624         (is_space): New fn.
40625         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
40626         and empty lines.
40627
40628         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
40629         Undo previous (whitespace-only) change.
40630
40631 2003-08-13  Paul Eggert  <eggert@twinsun.com>
40632
40633         * config/srclist-update: Change update back to the old behavior,
40634         leaving whitespace alone.  Use one 'sed' command rather than a
40635         pipeline.
40636         (fixlicense): Now a variable, not a function.
40637         (remove_trailing_blanks): Remove.
40638         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
40639         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
40640         Undo previous (whitespace-only) change.
40641
40642 2003-08-12  Paul Eggert  <eggert@twinsun.com>
40643
40644         Merge from coreutils.
40645         * modules/euidaccess: Add lib_SOURCES, include for new
40646         file euidaccess.h
40647
40648 2003-08-12  Paul Eggert  <eggert@twinsun.com>
40649
40650         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
40651         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
40652         Normalize leading white space and remove trailing white space.
40653
40654         Merge from coreutils
40655         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
40656
40657         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
40658         0.12.1.  These files are now being upgraded automatically by
40659         ../config/srclist-update.
40660
40661 2003-08-12  Paul Eggert  <eggert@twinsun.com>
40662
40663         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
40664         Normalize leading white space and remove trailing white space.
40665         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
40666         notice, as per ../config/srclist-update.
40667
40668         Merge from coreutils.
40669         * lib/euidaccess.h: New file.
40670         * lib/euidaccess.c: Include it.
40671         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
40672         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
40673         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
40674
40675 2003-08-12  Paul Eggert  <eggert@twinsun.com>
40676
40677         * config/srclist-update: Add copyright notice.
40678         (remove_id_lines, remove_trailing_blanks): New constants.
40679         (fixfile): Use them to normalize spacing a bit in copied files.
40680         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
40681         Normalize leading white space and remove trailing white space.
40682
40683         * config/texinfo.tex: Sync with texinfo.
40684
40685         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
40686         strtoul.c from libc, to merge coreutils whitespace changes.
40687
40688         * config/srclist.txt: Get the following m4 files from gettext:
40689         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
40690         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
40691         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
40692         wint_t.m4.
40693
40694 2003-08-12  Karl Berry  <karl@gnu.org>
40695
40696         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
40697         been made.
40698
40699 2003-08-11  Paul Eggert  <eggert@twinsun.com>
40700
40701         * modules/gnu-source, m4/gnu-source.m4:
40702         Remove; we're assuming Autoconf 2.54 or later now.
40703         Suggested by Bruno Haible.
40704         * MODULES.html.sh (func_all_modules): Remove gnu-source.
40705
40706 2003-08-11  Bruno Haible  <bruno@clisp.org>
40707
40708         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
40709
40710 2003-08-11  Bruno Haible  <bruno@clisp.org>
40711
40712         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
40713         (vasnprintf): Use it instead of wcslen.
40714
40715 2003-08-11  Bruno Haible  <bruno@clisp.org>
40716
40717         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
40718         value to ensure that _Bool promotes to int. Use #define for _Bool when
40719         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
40720
40721 2003-08-10  Karl Berry  <karl@gnu.org>
40722
40723         * lib/regex.h: update from libc (whitespace fix).
40724
40725 2003-08-09  Paul Eggert  <eggert@twinsun.com>
40726
40727         Merge some files from coreutils.  These changes were
40728         originally made by Jim Meyering.
40729         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
40730         many older Unixes require this.
40731         * lib/alloca.c (alloca): Remove cast to argument of free;
40732         no longer needed in C89.
40733         * lib/alloca_.h, regex.h: Fix white space to match
40734         what GNU indent does.
40735
40736 2003-08-09  Paul Eggert  <eggert@twinsun.com>
40737
40738         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
40739         apparently Emacs's Unicode mode got confused before my 2003-08-05
40740         checkin.
40741
40742 2003-08-08  Paul Eggert  <eggert@twinsun.com>
40743
40744         * m4/extensions.m4: New file.
40745         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
40746         Require gl_USE_SYSTEM_EXTENSIONS.
40747         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
40748         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
40749
40750 2003-08-08  Paul Eggert  <eggert@twinsun.com>
40751
40752         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
40753         * modules/extensions, modules/gnu-source: New files.
40754         * modules/timespec, modules/unlocked-io: Depend on extensions.
40755
40756 2003-08-07  Paul Eggert  <eggert@twinsun.com>
40757
40758         * modules/restrict: New file.
40759         * MODULES.html.sh (func_all_modules): Add restrict.
40760         * modules/regex: Depend on restrict.
40761
40762 2003-08-07  Paul Eggert  <eggert@twinsun.com>
40763
40764         * m4/restrict.m4: New file.
40765         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
40766
40767 2003-08-07  Bruno Haible  <bruno@clisp.org>
40768
40769         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
40770         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
40771
40772 2003-08-07  Bruno Haible  <bruno@clisp.org>
40773
40774         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
40775         makes the module 'getndelim2' compatible with the module 'getline'.
40776
40777 2003-08-05  Paul Eggert  <eggert@twinsun.com>
40778
40779         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
40780         byte with "\201" to avoid glitches when editing that source file
40781         with multi-gnome-terminal.
40782
40783 2003-08-05  Paul Eggert  <eggert@twinsun.com>
40784
40785         * lib/bumpalloc.h: Remove.
40786
40787 2003-08-05  Paul Eggert  <eggert@twinsun.com>
40788
40789         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
40790         * modules/bumpalloc: Remove.
40791
40792 2003-08-04  Paul Eggert  <eggert@twinsun.com>
40793
40794         * lib/getloadavg.c: Change copyright notice and spacing to conform to
40795         GNU coding style.
40796
40797         Merge from coreutils.
40798         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
40799         1. From glibc.
40800         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
40801         from Karl Berry, implemented by Jim Meyering.
40802         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
40803         from Dmitry V. Levin.
40804         Remove anachronistic cast of xrealloc.
40805         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
40806         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
40807         type. Otherwise, it wouldn't compile with at least /bin/cc on
40808         ymp-cray-unicos9.0.2.X.
40809         Combine two mostly-identical uses of alloca into one.
40810         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
40811
40812 2003-08-04  Dave Love  <d.love@dl.ac.uk>
40813
40814         [From Emacs.]
40815
40816         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
40817         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
40818         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
40819         obsolete NLIST_NAME_UNION.
40820         [__GNU__]: Undef BSD and FSCALE.
40821         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
40822
40823 2003-08-03  Paul Eggert  <eggert@twinsun.com>
40824
40825         * lib/stdbool_.h (_Bool): Make it signed char, instead of
40826         an enum type, so that it's guaranteed to promote to int.  See:
40827         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
40828
40829 2003-08-03  Karl Berry  <karl@gnu.org>
40830
40831         * config/depcomp: update from automake.
40832
40833 2003-07-31  Paul Eggert  <eggert@twinsun.com>
40834
40835         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
40836         (strerror): Don't assume that a printable int fits in 14 bytes.
40837
40838 2003-07-31  Bruno Haible  <bruno@clisp.org>
40839
40840         * modules/getpass-gnu: New file.
40841         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
40842
40843 2003-07-31  Bruno Haible  <bruno@clisp.org>
40844
40845         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
40846
40847 2003-07-24  Karl Berry  <karl@gnu.org>
40848
40849         * config/missing: update from automake.
40850
40851 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
40852             Bruno Haible  <bruno@clisp.org>
40853
40854         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
40855         * lib/getline.c (getline, getdelim): Likewise.
40856         Remove _GNU_SOURCE define; now it's defined in config.h through
40857         m4/getline.m4.
40858
40859 2003-07-23  Karl Berry  <karl@gnu.org>
40860
40861         * config/config.sub: update from prep.
40862
40863 2003-07-22  Paul Eggert  <eggert@twinsun.com>
40864
40865         * modules/xalloc (Depends-on): Add exitfail.
40866         * modules/xmemcoll: Likewise.
40867
40868 2003-07-22  Paul Eggert  <eggert@twinsun.com>
40869
40870         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
40871         over-parenthesization in macros.
40872
40873         Sync with coreutils.
40874
40875         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
40876         required by C99.
40877
40878         Use `exit_failure' for xalloc and xmemcoll instead of their own
40879         private exit-failure variables.
40880         * lib/xalloc.h (xalloc_exit_failure): Remove.
40881         * lib/xmalloc.c: Likewise.  Include exitfail.h.
40882         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
40883         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
40884         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
40885         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
40886
40887 2003-07-20  Jim Meyering  <jim@meyering.net>
40888
40889         * modules/closeout (Depends-on): Add exitfail.
40890         Suggestion from Bruno Haible.
40891
40892 2003-07-19  Karl Berry  <karl@gnu.org>
40893
40894         * config/config.sub: update from prep.
40895
40896 2003-07-18  Paul Eggert  <eggert@twinsun.com>
40897
40898         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
40899         Remove.
40900         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
40901         to test that it can stand by itself.  Include "exitfail.h".
40902         Clients should set exit_failure instead.
40903         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
40904
40905 2003-07-18  Bruno Haible  <bruno@clisp.org>
40906
40907         * modules/getndelim2: New file.
40908         * modules/getline: Share files with module getndelim2.
40909         * modules/getnline: Depend on getndelim2 instead of sharing files with
40910         it. Add getnline.c to lib_SOURCES.
40911         * MODULES.html.sh (func_all_modules): Add getndelim2.
40912
40913 2003-07-18  Bruno Haible  <bruno@clisp.org>
40914
40915         * m4/getndelim2.m4: New file.
40916         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
40917         invoke gl_PREREQ_GETNDELIM2.
40918         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
40919         gl_PREREQ_GETNDELIM2.
40920         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
40921         gl_GETNDELIM2.
40922
40923 2003-07-18  Bruno Haible  <bruno@clisp.org>
40924
40925         * lib/getndelim2.h: New file.
40926         * lib/getndelim2.c: Make into a module of its own. Include config.h,
40927         getndelim2.h.
40928         (getndelim2): Make non-static. Change return type to ssize_t.
40929         * lib/getline.h: Change argument names.
40930         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
40931         * lib/getnline.c: Include getndelim2.h.
40932
40933 2003-07-18  Andreas Schwab  <schwab@suse.de>
40934
40935         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
40936
40937 2003-07-17  Karl Berry  <karl@gnu.org>
40938
40939         * config/config.sub: update from prep.
40940
40941 2003-07-17  Bruno Haible  <bruno@clisp.org>
40942
40943         * modules/getnline: New file.
40944         * modules/getline: Add lib/getndelim2.c to source file list.
40945         * MODULES.html.sh (func_all_modules): Add getnline.
40946
40947 2003-07-17  Bruno Haible  <bruno@clisp.org>
40948
40949         * m4/getnline.m4: New file.
40950
40951 2003-07-17  Bruno Haible  <bruno@clisp.org>
40952
40953         * m4/Makefile.am.in: Remove file.
40954         * m4/Makefile.am: Remove file.
40955         * m4/Makefile.in: Remove file.
40956
40957 2003-07-17  Bruno Haible  <bruno@clisp.org>
40958
40959         * lib/getnline.h: New file.
40960         * lib/getnline.c: New file.
40961         * lib/getndelim2.c: New file, extracted from getline.c.
40962         (getndelim2): Renamed from getdelim2, with added nmax argument.
40963         * lib/getline.c: Include getndelim2.c.
40964         (getdelim2): Moved out to getndelim2.c.
40965         (getline, getdelim): Update.
40966
40967 2003-07-17  Bruno Haible  <bruno@clisp.org>
40968
40969         * lib/Makefile.am: Remove file.
40970         * lib/Makefile.in: Remove file.
40971
40972 2003-07-17  Bruno Haible  <bruno@clisp.org>
40973
40974         * configure.in: Remove file.
40975         * Makefile.in: Remove file.
40976
40977 2003-07-17  Bruno Haible  <bruno@clisp.org>
40978
40979         * MODULES.html.sh: Put the </BODY> right before </HTML>.
40980
40981 2003-07-16  Karl Berry  <karl@gnu.org>
40982
40983         * config/srclist-update: was running fixlicense twice, which caused
40984                 texinfo.tex to be nullified for some reason.  Simplify,
40985                 $gplsrc is no longer needed as far as I can see?
40986
40987 2003-07-16  Jim Meyering  <jim@meyering.net>
40988
40989         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
40990
40991 2003-07-15  Paul Eggert  <eggert@twinsun.com>
40992
40993         * config/srclist.txt: Get the following files from gettext-runtime/intl
40994         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
40995         ref-del.sin.  From Bruno Haible.
40996         * config/srclist-update (fixfile): Change grep pattern again, since the
40997         previous fix didn't work (there was another trailing $).  Use
40998         '[$]' to escape the $s.
40999
41000 2003-07-15  Karl Berry  <karl@gnu.org>
41001
41002         * lib/vasnprintf.c: update from gettext.
41003
41004 2003-07-15  Karl Berry  <karl@gnu.org>
41005
41006         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
41007         gets expanded when surrounded by '$'.
41008
41009 2003-07-15  Jim Meyering  <jim@meyering.net>
41010
41011         * modules/save-cwd: Don't depend on error.  From Derek Price.
41012
41013 2003-07-15  Jim Meyering  <jim@meyering.net>
41014
41015         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
41016
41017 2003-07-14  Simon Josefsson  <jas@extundo.com>
41018
41019         * modules/mempcpy: New file.
41020         * MODULES.html.sh (func_all_modules): Add mempcpy.
41021
41022 2003-07-14  Simon Josefsson  <jas@extundo.com>
41023
41024         * m4/mempcpy.m4: New file.
41025
41026 2003-07-14  Simon Josefsson  <jas@extundo.com>
41027
41028         * lib/mempcpy.h: New file.
41029         * lib/mempcpy.c: New file.
41030
41031 2003-07-14  Paul Eggert  <eggert@twinsun.com>
41032
41033         * modules/getdate, modules/posixtm: Depend on mktime.
41034
41035 2003-07-14  Paul Eggert  <eggert@twinsun.com>
41036
41037         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
41038         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
41039         unicodeio.c, unicodeio.h, unlocked-io.h:
41040         Switch from LGPL to GPL.
41041
41042 2003-07-14  Paul Eggert  <eggert@twinsun.com>
41043
41044         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
41045         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
41046         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
41047         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
41048         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
41049         updated automatically by ../config/srclist-update.  This changes
41050         their license from LPGL to GPL.
41051
41052 2003-07-14  Paul Eggert  <eggert@twinsun.com>
41053
41054         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
41055         assumed to refer to the root of the most recent stable gettext version.
41056         * config/srclistvars.sh: Add defaults for eggert.
41057         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
41058         Match "This program" as well as "The program".  This is needed
41059         for gettext.
41060
41061 2003-07-14  Jim Meyering  <jim@meyering.net>
41062
41063         Don't emit diagnostics.  Let callers do that.
41064         * lib/save-cwd.c: Don't include "error.h".
41065         (save_cwd): Don't call error.  Ensure that errno is valid
41066         when returning nonzero.
41067
41068         * lib/save-cwd.h (restore_cwd): Update prototype.
41069         * lib/save-cwd.c (restore_cwd): Remove two parameters.
41070         Simplify.  Don't call error upon failure.  Let callers do that.
41071         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
41072         when auditing is enabled.  But don't bother updating the #if.
41073
41074 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
41075
41076         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
41077         it breaks C++ compilation.
41078         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
41079
41080 2003-07-10  Simon Josefsson  <jas@extundo.com>
41081
41082         * modules/strchrnul (Makefile.am): Add strchrnul.h.
41083
41084 2003-07-10  Jim Meyering  <jim@meyering.net>
41085
41086         * m4/clock_time.m4: Remove trailing blank.
41087         * m4/intmax_t.m4: Likewise.
41088
41089 2003-07-10  Jim Meyering  <jim@meyering.net>
41090
41091         * lib/vasnprintf.c: Remove trailing blanks.
41092         Make cpp indentation consistent.
41093
41094 2003-07-09  Paul Eggert  <eggert@twinsun.com>
41095
41096         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
41097         posixver.c, strftime.c, strnlen.c, strverscmp.c:
41098         Switch from LGPL to GPL.
41099
41100 2003-07-09  Paul Eggert  <eggert@twinsun.com>
41101
41102         * config/srclist.txt: Sort sublists.  Add
41103         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
41104         that differ from gnulib for one reason or another; we'd like this list
41105         to be smaller but for now let's document what we have.
41106
41107 2003-07-08  Paul Eggert  <eggert@twinsun.com>
41108
41109         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
41110         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
41111         and sweeter "eval x=$x".
41112         * config/srclist.txt: Get lib/argp* from glibc.
41113
41114 2003-07-07  Paul Eggert  <eggert@twinsun.com>
41115
41116         * lib/mktime.c: Fix some boundary cases and remove need for floating
41117         point.
41118
41119         Issue a compile-time diagnostic if time_t is floating point, or if
41120         two's complement arithmetic is not in effect, or if arithmetic
41121         right shift does not propagate the sign.  These assumptions were
41122         all in the original code but they weren't checked.
41123
41124         (TIME_T_MIDPOINT, verify): New macros.
41125         (__isleap): Remove; it has integer overflow problems.
41126         (leapyear): New function, without those problems.
41127         (ydhms_tm_diff): Remove; splitting into two parts.
41128         (ydhms_diff): New function, containing the arithmetic part of
41129         the old ydhms_tm_diff function.  Issue a compile-time
41130         diagnostic if we are not using C99 integer division.
41131         Avoid casts when possible.
41132         (guess_time_tm): New function, containing the checking part of
41133         the old ydhms_tm_diff function.  Return the new value, rather than
41134         the difference between it and the old.  Accept a new argument T
41135         so that *T specifies the old value.  Check for overflow in the result.
41136
41137         (__mktime_internal): Use a time_t offset, not a long int offset.
41138         This undoes the 2003-06-04 change, which is no longer needed now
41139         that we have better overflow checking.
41140         (localtime_offset): Likewise.
41141
41142         (__mktime_internal): Avoid harmful overflow on hosts where time_t
41143         and long are 64-bit but int is only 32-bit.
41144         (ydhms_diff): Use long int to store year1 and yday1.
41145         Issue a compile-time diagnostic if long int is not wide enough.
41146
41147         (__mktime_internal): Use long int to store adjusted year and yday.
41148         Use plain C rather than preprocessor commands, if that doesn't
41149         affect efficiency.
41150         Check for overflow (and try to repair) after each probe
41151         rather than checking only at the very end.  This avoids some bugs
41152         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
41153         does not equal GMT offset at maximum time).
41154         Use integer to check for overflow rather than floating point; this
41155         is more portable to non-IEEE hosts, and is a tad faster.
41156         When we detect that we are oscillating between two values,
41157         don't check whether tm_isdst has the requested value, since
41158         we already know the answer.  When tm_isdst has the wrong value,
41159         use a different heuristic to find the right one, based on the
41160         extreme values actually observed in practice in tz2003a,
41161         rather than the (overly optimistic) "previous 3 calendar quarters".
41162
41163         (not_equal_tm, print_tm, check_result): Use "const T" rather than
41164         "T const" to accommodate glibc style.
41165         (check_result): Use less-confusing report format.  "long" -> "long int.
41166         (main): Likewise.
41167         Don't loop if the iteration overflows time_t.
41168         Allow a negative step in the iteration.
41169
41170 2003-07-06  Karl Berry  <karl@gnu.org>
41171
41172         * config/depcomp: update from automake.
41173         * config/config.sub: update from prep.
41174
41175 2003-07-03  Karl Berry  <karl@gnu.org>
41176
41177         * config/config.guess: update from prep.
41178
41179 2003-07-01  Paul Eggert  <eggert@twinsun.com>
41180
41181         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
41182         xreadlink.c now includes it unconditionally.
41183
41184 2003-07-01  Paul Eggert  <eggert@twinsun.com>
41185
41186         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
41187         having it depend on HAVE_SYS_TYPES_H.
41188
41189 2003-07-01  Bruno Haible  <bruno@clisp.org>
41190
41191         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
41192         <sys/types.h> should be sufficient.
41193         Reported by Paul Eggert.
41194
41195 2003-06-26  Karl Berry  <karl@gnu.org>
41196
41197         * config/depcomp: update from automake.
41198
41199 2003-06-26  Bruno Haible  <bruno@clisp.org>
41200
41201         * modules/human: Depend on module stdbool.
41202
41203 2003-06-25  Bruno Haible  <bruno@clisp.org>
41204
41205         * modules/readlink: New file.
41206         * modules/xreadlink: Depend on it.
41207         * MODULES.html.sh (func_all_modules): Add readlink.
41208
41209 2003-06-25  Bruno Haible  <bruno@clisp.org>
41210
41211         * m4/readlink.m4: New file.
41212
41213 2003-06-25  Bruno Haible  <bruno@clisp.org>
41214
41215         * lib/readlink.c: New file.
41216
41217 2003-06-22  Karl Berry  <karl@gnu.org>
41218
41219         * config/srclist.txt: update mkinstalldirs from automake.
41220         * config/mkinstalldirs: update.
41221
41222 2003-06-22  Bruno Haible  <bruno@clisp.org>
41223
41224         Portability to mingw32.
41225         * m4/ssize_t.m4: New file, from GNU gettext.
41226         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
41227         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
41228
41229 2003-06-22  Bruno Haible  <bruno@clisp.org>
41230
41231         * modules/safe-read: Add m4/ssize_t.m4.
41232         * modules/xreadlink: Add m4/ssize_t.m4.
41233
41234 2003-06-20  Bruno Haible  <bruno@clisp.org>
41235
41236         Assume C89, so PARAMS isn't needed.
41237         * lib/unicodeio.h (PARAMS): Remove.
41238         * lib/unicodeio.c: Don't use PARAMS.
41239
41240 2003-06-18  Karl Berry  <karl@gnu.org>
41241
41242         * config/config.{guess,sub}: update from prep.
41243
41244 2003-06-18  Jim Meyering  <jim@meyering.net>
41245
41246         Merge changes from coreutils.
41247         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
41248         Remove explicit declarations of xmalloc and realloc.
41249         Include xalloc.h.
41250         (read_utmp): Remove anachronistic cast of xmalloc.
41251
41252 2003-06-17  Paul Eggert  <eggert@twinsun.com>
41253
41254         Assume C89, so PARAMS isn't needed.
41255         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
41256         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
41257         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
41258         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
41259         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
41260         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
41261         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
41262         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
41263         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
41264         lib/xstrtod.h, lib/xstrtol.h: Likewise.
41265         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
41266         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
41267         no longer needed. Anyway, config.h should always be included before any
41268         other file.
41269
41270 2003-06-11  Simon Josefsson  <jas@extundo.com>
41271
41272         * modules/sysexits: New file.
41273         * MODULES.html.sh (func_all_modules): Add sysexits.
41274
41275 2003-06-11  Simon Josefsson  <jas@extundo.com>
41276
41277         * lib/sysexit_.h: New file.
41278
41279 2003-06-11  Derek Price  <derek@ximbiot.com>
41280
41281         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
41282         necessary.
41283
41284 2003-06-11  Bruno Haible  <bruno@clisp.org>
41285
41286         * m4/sysexits.m4: New file.
41287
41288 2003-06-10  Simon Josefsson  <jas@extundo.com>
41289
41290         * lib/argp.h: New file, from glibc.
41291         * lib/argp-ba.c: New file, from glibc.
41292         * lib/argp-eexst.c: New file, from glibc.
41293         * lib/argp-fmtstream.c: New file, from glibc.
41294         * lib/argp-fmtstream.h: New file, from glibc.
41295         * lib/argp-fs-xinl.c: New file, from glibc.
41296         * lib/argp-help.c: New file, from glibc.
41297         * lib/argp-namefrob.h: New file, from glibc.
41298         * lib/argp-parse.c: New file, from glibc.
41299         * lib/argp-pv.c: New file, from glibc.
41300         * lib/argp-pvh.c: New file, from glibc.
41301         * lib/argp-xinl.c: New file, from glibc.
41302
41303 2003-06-10  Simon Josefsson  <jas@extundo.com>
41304
41305         * modules/strchrnul: New file.
41306
41307 2003-06-10  Simon Josefsson  <jas@extundo.com>
41308
41309         * modules/argp: New file.
41310
41311 2003-06-10  Simon Josefsson  <jas@extundo.com>
41312
41313         * m4/strchrnul.m4: New file.
41314
41315 2003-06-10  Simon Josefsson  <jas@extundo.com>
41316
41317         * lib/strchrnul.h: New file.
41318         * lib/strchrnul.c: New file.
41319
41320 2003-06-10  Bruno Haible  <bruno@clisp.org>
41321
41322         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
41323
41324 2003-06-07  Karl Berry  <karl@gnu.org>
41325
41326         * config/config.{guess,sub}: update from prep.
41327
41328 2003-06-07  Jim Meyering  <jim@meyering.net>
41329
41330         * modules/strtod: Use $(...) notation, not @...@ for
41331         AC_REPLACE'd variables.
41332         * modules/localcharset: Likewise.
41333
41334 2003-06-07  Jim Meyering  <jim@meyering.net>
41335
41336         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
41337         in place of my name in the copyright comment.
41338         Remove definition and uses of __P.
41339
41340         From coreutils.
41341         * lib/stat.c: Don't declare xmalloc explicitly.
41342         Instead, include "xalloc.h".
41343         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
41344         xrealloc, and xcalloc return values.
41345         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
41346         Improve comment.
41347         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
41348
41349 2003-06-07  Bruno Haible  <bruno@clisp.org>
41350
41351         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
41352         avoid AC_CONFIG_LINKS.
41353         * modules/fnmatch (Makefile.am): Use explicit creation rule for
41354         fnmatch.h, to avoid AC_CONFIG_LINKS.
41355         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
41356
41357 2003-06-07  Bruno Haible  <bruno@clisp.org>
41358
41359         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
41360         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
41361         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
41362         directory.
41363         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
41364         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
41365         directory.
41366
41367 2003-06-06  Jim Meyering  <jim@meyering.net>
41368
41369         Merge from coreutils.
41370         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
41371         Consolidate declarations and initializations of *_base* locals.
41372
41373         Merge from coreutils.
41374         This avoids a core dump on systems without GNU putenv,
41375         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
41376         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
41377         (unsetenv): New static function, from GNU libc.
41378         (rpl_putenv): Use it.
41379
41380         * lib/modechange.c: Remove trailing blanks.
41381
41382         Merge from coreutils.
41383         * lib/fsusage.c: Remove declaration of statfs.
41384         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
41385
41386         * lib/posixtm.c: Include <stdbool.h> unconditionally.
41387
41388 2003-06-06  Jim Meyering  <jim@meyering.net>
41389
41390         * lib/stdbool_.h: Renamed from stdbool.h.in.
41391
41392 2003-06-06  Jim Meyering  <jim@meyering.net>
41393             Bruno Haible  <bruno@clisp.org>
41394
41395         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
41396         Adjust Makefile.am snippet not to redirect directly to target.
41397         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
41398
41399 2003-06-05  Paul Eggert  <eggert@twinsun.com>
41400
41401         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
41402         mismatch, look in future quarters as well as past.  This fixes a
41403         bug when processing fall-backwards gaps immediately after a long
41404         period of daylight-saving time.
41405
41406         * lib/mktime.c: Assume freestanding C89 or better.
41407         (HAVE_LIMITS_H): Remove.  Assume it's 1.
41408         (__P): Remove; not used.
41409         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
41410         (mktime, not_equal_tm, print_tm, check_result,
41411         main): Use prototypes.  Use const * where appropriate.
41412         (main): Fix typo in testing code that uncovered by above changes.
41413         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
41414
41415 2003-06-04  Paul Eggert  <eggert@twinsun.com>
41416
41417         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
41418         locale.h, localeconv.  This merges changes from coreutils.
41419
41420         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
41421         It can be removed after the next Autoconf is released.
41422         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
41423         needed.
41424
41425 2003-06-04  Paul Eggert  <eggert@twinsun.com>
41426
41427         * lib/mktime.c: Fix Debian bug 177940
41428         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
41429         (localtime_offset): Now long int, not time_t, because we want it
41430         to be guaranteed to be signed.  All uses changed.
41431         (__mktime_internal): If overflow would occur when adding offset,
41432         don't add it.
41433
41434         Merge 'human' changes from coreutils.  Rewrite to support
41435         locale-specific notations like thousands separators.
41436         * lib/human.c: Simplify authorship notice.
41437         Include human.h immediately after config.h.
41438         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
41439         <limits.h>: Do not include, since human.h does.
41440         (SIZE_MAX, UINTMAX_MAX): New macros.
41441         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
41442         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
41443         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
41444         (power_letter): Renamed from suffixes.
41445         (generate_suffix_backwards): Remove.
41446         (adjust_value): Now takes int style (because of human.h changes)
41447         and long double value (for greater precision on some platforms).
41448         (group_number): New function.
41449         (human_readable): Use it.  Use integer options, not enum.
41450         Put the options before the sizes in the arg list.
41451         Support all the new options.
41452         The old human_readable function has been removed;
41453         use inttostr.h instead.
41454         (human_readable, default_block_size, humblock):
41455         Use uintmax_t, not int, for block sizes.
41456         (human_readable_inexact, block_size_types): Remove.
41457         (block_size_opts): New constant.
41458         (human_options): Renamed from human_block_size, with new signature
41459         that allows block sizes up to UINTMAX_MAX.  All callers changed.
41460         * lib/human.h: Add copyright and authorship notice.
41461         Include <limits.h> and <stdbool.h> unconditionally.
41462         (PARAMS): Remove.  All uses removed.
41463         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
41464         (enum human_inexact_style): Remove tag; now a nameless enum.
41465         (human_floor, human_ceiling, human_round_to_even): Now have
41466         values 2, 0, 1 rather than -1, 1, 0.
41467         (human_group_digits, human_suppress_point_zero, human_autoscale,
41468         human_base_1024, human_SI, human_B): New constants.
41469         (human_readable_inexact, human_block_size): Remove.
41470         (human_readable): Size args are now uintmax_t, not int.
41471         (human_options): New decl.
41472
41473         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
41474         unnecessary now that we assume C89 or better.  This change
41475         imported from coreutils.
41476
41477         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
41478         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
41479         in the 2003-05-30 sync from glibc.
41480
41481         .h files should stand alone, but we shouldn't include <sys/types.h>
41482         if we can get away with just <stddef.h>.
41483
41484         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
41485         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
41486         rather than <sys/types.h>, as we merely need size_t.
41487         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
41488         to get size_t.
41489         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
41490         Include <stdio.h>, to get FILE.
41491         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
41492         memcasecmp.h has included <stddef.h> and all we need is size_t.
41493         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
41494         our interface, instead of including <sys/types.h>
41495
41496 2003-06-04  Paul Eggert  <eggert@twinsun.com>
41497
41498         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
41499         now, as glibc mktime is buggy on non-glibc systems.
41500
41501 2003-06-03  Karl Berry  <karl@gnu.org>
41502
41503         * config/config.sub: update from prep.
41504
41505 2003-06-02  Paul Eggert  <eggert@twinsun.com>
41506
41507         [from coreutils]
41508         Fix some minor time-related bugs with POSIX time arguments.
41509         Some valid time stamps were being rejected (notably -1, and
41510         time stamps before 1900 on 64-bit hosts).  And some invalid
41511         time stamps were being accepted, e.g. September 31.
41512
41513         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
41514         that we can return (time_t) -1 successfully.
41515         * lib/posixtm.c: Likewise.
41516         [HAVE_STDBOOL_H]: Include <stdbool.h>.
41517         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
41518         (t): Remove static var.
41519         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
41520         of static var.  All uses changed.
41521         (year): Do not reject years before 1900; they can occur with
41522         64-bit time_t.
41523         (posix_time_parse): Do not check for out-of-range components;
41524         that is now the caller's responsibility, since our checks were
41525         only approximations.
41526         (posixtime): Use mktime to check for out-of-range components,
41527         since it knows them exactly.
41528         If mktime returns (time_t) -1, check whether an error actually occurred
41529         by invoking localtime on -1.
41530         (main) [TEST_POSIXTIME]: Check for input data errors, and report
41531         posixtime failures better.
41532         Improve the test data (in comments only).
41533
41534 2003-06-02  Karl Berry  <karl@gnu.org>
41535
41536         * config/mkinstalldirs (version): new variable.
41537         (--version): new option.
41538         (usage): improve message.
41539
41540 2003-05-30  Karl Berry  <karl@gnu.org>
41541
41542         * lib/mktime.c: update from libc.
41543
41544 2003-05-30  Bruno Haible  <bruno@clisp.org>
41545
41546         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
41547         * config/config.rpath: Upgrade to gettext-0.12.1.
41548
41549 2003-05-30  Bruno Haible  <bruno@clisp.org>
41550
41551         * m4/gettext.m4: Upgrade to gettext-0.12.1.
41552         * m4/nls.m4: New file, from gettext-0.12.1.
41553         * m4/po.m4: New file, from gettext-0.12.1.
41554         * m4/progtest.m4: Upgrade to gettext-0.12.1.
41555
41556 2003-05-30  Bruno Haible  <bruno@clisp.org>
41557
41558         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
41559         * lib/localcharset.h: Likewise.
41560         * lib/localcharset.c: Likewise.
41561
41562 2003-05-29  Karl Berry  <karl@gnu.org>
41563
41564         * config/config.rpath: update from gettext.
41565
41566 2003-05-28  Paul Eggert  <eggert@twinsun.com>
41567
41568         Assume the headers required for C89 freestanding compilers.
41569         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
41570         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
41571         * m4/human.m4 (gl_HUMAN): Likewise.
41572         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
41573         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
41574         * m4/userspec.m4 (gl_USERSPEC): Likewise.
41575         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
41576         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
41577         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
41578
41579 2003-05-28  Paul Eggert  <eggert@twinsun.com>
41580
41581         Assume the headers required for C89 freestanding compilers.
41582         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
41583         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
41584         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
41585         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
41586         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
41587         define, since <limits.h> is guaranteed to do that.
41588         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
41589         * lib/exclude.c: Include <stdbool.h> unconditionally.
41590         * lib/tempname.c: Include <stddef.h> unconditionally.
41591         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
41592         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
41593         <stddef.h> does that.
41594         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
41595         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
41596         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
41597         needed.
41598         * lib/xstrtol.c: Likewise.
41599         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
41600         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
41601
41602         * lib/addext.c (addext): Use assignment rather than cast, to avoid
41603         warnings on some platforms.
41604
41605         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
41606         arbitrarily.
41607
41608 2003-05-26  Jim Meyering  <jim@meyering.net>
41609
41610         Merge in a change from coreutils:
41611         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
41612         that is guaranteed to be `no'.  Use `no_such_member' to indicate
41613         that condition, rather than `-1' which is slightly misleading.
41614         Change the name of the cache variable to have the gl_ prefix.
41615         Prompted by a patch from Richard Dawe for DJGPP.
41616
41617 2003-05-24  Karl Berry  <karl@gnu.org>
41618
41619         * config/config.guess: update from prep.
41620
41621 2003-05-22  Karl Berry  <karl@gnu.org>
41622
41623         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
41624
41625 2003-05-20  Karl Berry  <karl@gnu.org>
41626
41627         * config/config.guess: update from prep.
41628
41629 2003-05-18  Karl Berry  <karl@gnu.org>
41630
41631         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
41632         might actually be set by the user.
41633
41634         * config/depcomp, install-sh, mdate-sh: update from automake.
41635
41636 2003-05-17  Bruno Haible  <bruno@clisp.org>
41637
41638         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
41639         invalid expansion for AC_EGREP_CPP.
41640         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
41641         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
41642         Suggested by Akim Demaille <akim@epita.fr> in
41643         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
41644
41645 2003-05-12  Jim Meyering  <jim@meyering.net>
41646
41647         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
41648         the space-padded-by-default conversion specifiers, %e, %k, %l.
41649
41650 2003-05-12  Bruno Haible  <bruno@clisp.org>
41651
41652         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
41653         the string is longer than 4 KB.
41654
41655 2003-05-11  Karl Berry  <karl@gnu.org>
41656
41657         * config/config.{guess,sub}: update from prep.
41658
41659 2003-05-09  Bruno Haible  <bruno@clisp.org>
41660
41661         * modules/error: Add m4/strerror_r.m4 to file list.
41662
41663 2003-05-03  Bruno Haible  <bruno@clisp.org>
41664
41665         Upgrade to Unicode-4.0.
41666         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
41667         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
41668         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
41669         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
41670         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
41671         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
41672         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
41673         Change width of U+E0100..U+E01EF from 1 to 0.
41674
41675 2003-04-25  Jim Meyering  <jim@meyering.net>
41676
41677         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
41678         of type size_t, not int.
41679
41680 2003-04-25  Bruno Haible  <bruno@clisp.org>
41681
41682         * lib/copy-file.c: Include <stddef.h>, for size_t.
41683
41684 2003-04-21  Paul Eggert  <eggert@twinsun.com>
41685
41686         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
41687         code which expansion is under static control.  Patch imported from
41688         Akim Demaille's patch to Bison; see
41689         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
41690
41691 2003-04-14  Bruno Haible  <bruno@clisp.org>
41692
41693         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
41694
41695 2003-04-11  Jim Meyering  <jim@meyering.net>
41696
41697         Merge changes from Coreutils.
41698
41699         2003-03-22  Jim Meyering  <jim@meyering.net>
41700
41701         * lib/strftime.c (widen): Cast alloca return value to proper type.
41702
41703         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
41704
41705         From GNU libc.
41706         * lib/strftime.c (my_strftime): Handle very large width
41707         specifications for numeric values correctly.  Improve checks for
41708         overflow.
41709
41710         2003-01-19  Jim Meyering  <jim@meyering.net>
41711
41712         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
41713         definitions.
41714         (nl_get_alt_digit) [! defined my_strftime]: Define.
41715         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
41716         _nl_get_alt_digit and _nl_get_walt_digit.
41717
41718         * lib/strftime.c (my_strftime): Merge in locale-related changes from
41719         libc. These changes have no effect outside of _LIBC.
41720
41721 2003-04-10  Bruno Haible  <bruno@clisp.org>
41722
41723         * modules/findprog: New file.
41724         * MODULES.html.sh (func_all_modules): Add it.
41725
41726 2003-04-10  Bruno Haible  <bruno@clisp.org>
41727
41728         * m4/findprog.m4: New file.
41729         * m4/eaccess.m4: New file.
41730
41731 2003-04-10  Bruno Haible  <bruno@clisp.org>
41732
41733         * lib/findprog.h: New file, from GNU gettext.
41734         * lib/findprog.c: New file, from GNU gettext.
41735
41736 2003-04-05  Jim Meyering  <jim@meyering.net>
41737
41738         Merge changes from Coreutils.
41739
41740         * lib/exclude.h (PARAMS): Remove definition and uses.
41741         * lib/exclude.c: Remove uses of `PARAMS'.
41742
41743         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
41744         Add test-cases for DOS filenames. Declare program_name.
41745         (main): Set up program_name.  Patch by Rich Dawe.
41746
41747         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
41748         error from mntctl.
41749         Use mntctl's return value to drive the entry-processing loop, since
41750         we can't rely on the value of the vmt_length member in the last
41751         entry.  On some systems doing so could result in exhausting
41752         virtual memory.  Based in part on a patch from Mike Jetzer.
41753
41754 2003-04-04  Bruno Haible  <bruno@clisp.org>
41755
41756         * modules/linebreak: New file.
41757         * MODULES.html.sh (func_all_modules): Add it.
41758
41759 2003-04-04  Bruno Haible  <bruno@clisp.org>
41760
41761         * m4/linebreak.m4: New file.
41762
41763 2003-04-04  Bruno Haible  <bruno@clisp.org>
41764
41765         * lib/linebreak.h: New file, from GNU gettext.
41766         * lib/linebreak.c: New file, from GNU gettext with slight
41767         modifications.
41768         * lib/lbrkprop.h: New file, from GNU gettext.
41769
41770 2003-04-03  Bruno Haible  <bruno@clisp.org>
41771
41772         * modules/utf8-ucs4: New file.
41773         * modules/utf16-ucs4: New file.
41774         * modules/ucs4-utf8: New file.
41775         * modules/ucs4-utf16: New file.
41776         * MODULES.html.sh (func_all_modules): Add them.
41777
41778 2003-04-03  Bruno Haible  <bruno@clisp.org>
41779
41780         * m4/utf-ucs4.m4: New file.
41781         * m4/ucs4-utf.m4: New file.
41782
41783 2003-04-03  Bruno Haible  <bruno@clisp.org>
41784
41785         * lib/utf8-ucs4.h: New file, from GNU gettext.
41786         * lib/utf16-ucs4.h: New file, from GNU gettext.
41787         * lib/ucs4-utf8.h: New file, from GNU gettext.
41788         * lib/ucs4-utf16.h: New file, from GNU gettext.
41789
41790 2003-04-02  Bruno Haible  <bruno@clisp.org>
41791
41792         * modules/binary-io: New file.
41793         * MODULES.html.sh (func_all_modules): Add it.
41794
41795 2003-04-02  Bruno Haible  <bruno@clisp.org>
41796
41797         * lib/binary-io.h: New file, from GNU gettext.
41798
41799 2003-04-01  Bruno Haible  <bruno@clisp.org>
41800
41801         * modules/pathname: New file.
41802         * MODULES.html.sh (func_all_modules): Add it.
41803
41804 2003-04-01  Bruno Haible  <bruno@clisp.org>
41805
41806         * lib/pathname.h: New file, from GNU gettext.
41807         * lib/concatpath.c: New file, from GNU gettext.
41808
41809 2003-03-30  Bruno Haible  <bruno@clisp.org>
41810
41811         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
41812
41813 2003-03-30  Bruno Haible  <bruno@clisp.org>
41814
41815         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
41816         function chown() doesn't exist.
41817
41818 2003-03-28  Bruno Haible  <bruno@clisp.org>
41819
41820         * modules/copy-file: New file.
41821         * MODULES.html.sh (func_all_modules): Add it.
41822
41823 2003-03-28  Bruno Haible  <bruno@clisp.org>
41824
41825         * m4/copy-file.m4: New file.
41826
41827 2003-03-28  Bruno Haible  <bruno@clisp.org>
41828
41829         * lib/copy-file.h: New file, from GNU gettext.
41830         * lib/copy-file.c: New file, from GNU gettext.
41831
41832 2003-03-18  Jim Meyering  <jim@meyering.net>
41833
41834         * lib/quote.c (quote_n): Fix typo in comment.
41835
41836 2003-03-18  Bruno Haible  <bruno@clisp.org>
41837
41838         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
41839         checking.
41840         * m4/onceonly_2_57.m4: Likewise.
41841
41842 2003-03-17  Bruno Haible  <bruno@clisp.org>
41843
41844         * m4/onceonly.m4: Require autoconf 2.54 or newer.
41845         (m4_quote): Remove macro.
41846         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
41847
41848 2003-03-14  Jim Meyering  <jim@meyering.net>
41849
41850         Merge changes from Coreutils.
41851         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
41852         to be const, in order to avoid warnings.
41853         (obstack_room): Likewise.
41854         (obstack_empty_p): Likewise.
41855
41856 2003-03-14  Bruno Haible  <bruno@clisp.org>
41857
41858         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
41859         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
41860
41861 2003-03-13  Paul Eggert  <eggert@twinsun.com>
41862
41863         Merge changes from Bison.
41864         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
41865         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
41866         when compiling Bison 1.875's `bitset bset = obstack_alloc
41867         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
41868         * lib/hash.c: Include <stdbool.h> unconditionally.
41869
41870 2003-03-13  Paul Eggert  <eggert@twinsun.com>
41871
41872         * m4/onceonly.m4 (m4_quote): New macro.
41873         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
41874         Quote AC_FOREACH variable-expansions properly.
41875
41876 2003-03-13  Paul Eggert  <eggert@twinsun.com>
41877
41878         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
41879
41880 2003-03-09  Paul Eggert  <eggert@twinsun.com>
41881
41882         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
41883         Reported by Bruce Becker; see:
41884         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
41885
41886 2003-03-03  Paul Eggert  <eggert@twinsun.com>
41887             Bruno Haible  <bruno@clisp.org>
41888
41889         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
41890         Reported by John Hughes, see
41891         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
41892
41893 2003-02-20  Bruno Haible  <bruno@clisp.org>
41894
41895         * MODULES.html.sh (func_all_modules): Add poll.
41896
41897 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
41898
41899         * modules/poll: New file.
41900
41901 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
41902
41903         * lib/poll_.h: New file.
41904         * lib/poll.c: New file.
41905
41906 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
41907
41908         * m4/poll.m4: New file.
41909
41910 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
41911
41912         * modules/mathl: New file.
41913
41914 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
41915
41916         * lib/mathl.h: New file.
41917         * lib/acosl.c: New file.
41918         * lib/asinl.c: New file.
41919         * lib/atanl.c: New file.
41920         * lib/ceill.c: New file.
41921         * lib/cosl.c: New file.
41922         * lib/expl.c: New file.
41923         * lib/floorl.c: New file.
41924         * lib/frexpl.c: New file.
41925         * lib/ldexpl.c: New file.
41926         * lib/logl.c: New file.
41927         * lib/sincosl.c: New file.
41928         * lib/sinl.c: New file.
41929         * lib/sqrtl.c: New file.
41930         * lib/tanl.c: New file.
41931         * lib/trigl.c: New file.
41932         * lib/trigl.h: New file.
41933
41934 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
41935
41936         * m4/mathl.m4: New file.
41937
41938 2003-02-18  Bruno Haible  <bruno@clisp.org>
41939
41940         * MODULES.html.sh (func_all_modules): Add mathl.
41941
41942 2003-02-17  Bruno Haible  <bruno@clisp.org>
41943
41944         * modules/mkdtemp: New module.
41945         * MODULES.html.sh (func_all_modules): Add it.
41946
41947 2003-02-17  Bruno Haible  <bruno@clisp.org>
41948
41949         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
41950
41951 2003-02-17  Bruno Haible  <bruno@clisp.org>
41952
41953         * lib/mkdtemp.h: New file, from GNU gettext.
41954         * lib/mkdtemp.c: New file, from GNU gettext.
41955
41956 2003-02-02  Jim Meyering  <jim@meyering.net>
41957
41958         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
41959         e.g. glibc-2.2.93.
41960
41961 2003-01-31  Bruno Haible  <bruno@clisp.org>
41962
41963         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
41964         'rpl_rename'.
41965         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
41966         'rpl_strnlen'.
41967         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
41968         'rpl_strtod'.
41969         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
41970         'rpl_utime'.
41971
41972 2003-01-31  Bruno Haible  <bruno@clisp.org>
41973
41974         * lib/rename.c: #undef rename before defining rpl_rename.
41975         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
41976
41977 2003-01-30  Bruno Haible  <bruno@clisp.org>
41978
41979         * modules/vasnprintf, modules/vasprintf: New modules.
41980         * MODULES.html.sh (func_all_modules): Add them.
41981
41982 2003-01-30  Bruno Haible  <bruno@clisp.org>
41983
41984         * m4/signed.m4: New file, from GNU gettext.
41985         * m4/longdouble.m4: New file, from GNU gettext.
41986         * m4/wchar_t.m4: New file, from GNU gettext.
41987         * m4/wint_t.m4: New file, from GNU gettext.
41988         * m4/vasnprintf.m4: New file.
41989         * m4/vasprintf.m4: New file.
41990
41991 2003-01-30  Bruno Haible  <bruno@clisp.org>
41992
41993         * lib/printf-args.h: New file, from GNU gettext.
41994         * lib/printf-args.c: New file, from GNU gettext.
41995         * lib/printf-parse.h: New file, from GNU gettext.
41996         * lib/printf-parse.c: New file, from GNU gettext.
41997         * lib/vasnprintf.h: New file, from GNU gettext.
41998         * lib/vasnprintf.c: New file, from GNU gettext.
41999         * lib/asnprintf.c: New file, from GNU gettext.
42000         * lib/vasprintf.h: New file, from GNU gettext with modifications.
42001         * lib/vasprintf.c: New file, from GNU gettext.
42002         * lib/asprintf.c: New file, from GNU gettext.
42003
42004 2003-01-29  Bruno Haible  <bruno@clisp.org>
42005
42006         * modules/stpncpy: New module.
42007         * MODULES.html.sh (func_all_modules): Add it.
42008
42009 2003-01-29  Bruno Haible  <bruno@clisp.org>
42010
42011         * m4/stpncpy.m4: New file.
42012
42013 2003-01-29  Bruno Haible  <bruno@clisp.org>
42014
42015         * lib/stpncpy.h: New file, from GNU gettext with modifications.
42016         * lib/stpncpy.c: New file, from GNU gettext with modifications.
42017
42018 2003-01-28  Bruno Haible  <bruno@clisp.org>
42019
42020         * modules/c-ctype: New module.
42021         * MODULES.html.sh (func_all_modules): Add it.
42022
42023 2003-01-28  Bruno Haible  <bruno@clisp.org>
42024
42025         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
42026         Paul Eggert.
42027         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
42028         Paul Eggert.
42029
42030 2003-01-27  Bruno Haible  <bruno@clisp.org>
42031
42032         * modules/xsetenv: New module.
42033         * MODULES.html.sh (func_all_modules): Add it.
42034
42035 2003-01-27  Bruno Haible  <bruno@clisp.org>
42036
42037         * lib/xsetenv.h: New file, from GNU gettext.
42038         * lib/xsetenv.c: New file, from GNU gettext.
42039
42040 2003-01-23  Jim Meyering  <jim@meyering.net>
42041
42042         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
42043         from working on systems without dirfd (at least Irix and OSF1/Tru64).
42044
42045 2003-01-23  Bruno Haible  <bruno@clisp.org>
42046
42047         * modules/minmax: New module.
42048         * MODULES.html.sh (func_all_modules): Add it.
42049
42050 2003-01-23  Bruno Haible  <bruno@clisp.org>
42051
42052         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
42053         Eggert.
42054
42055 2003-01-22  Bruno Haible  <bruno@clisp.org>
42056
42057         * modules/exit: New module.
42058         * MODULES.html.sh (func_all_modules): Add it.
42059
42060 2003-01-22  Bruno Haible  <bruno@clisp.org>
42061
42062         * lib/exit.h: New file, from GNU gettext.
42063
42064 2003-01-19  Bruno Haible  <bruno@clisp.org>
42065
42066         * gnulib-tool: Recognize option --extract-maintainer.
42067         (func_get_maintainer): New function.
42068         * modules/*: Add Maintainer entry.
42069
42070 2003-01-16  Jim Meyering  <jim@meyering.net>
42071
42072         * m4/regex.m4: The `regex' struct is both input and output.
42073         Initialize it before each use.  Patch by Tim Waugh.
42074
42075 2003-01-16  Bruno Haible  <bruno@clisp.org>
42076
42077         * MODULES.html.sh: Add a table of contents. Add the module name as
42078         leftmost column. Add hyperlinks.
42079
42080 2003-01-15  Bruno Haible  <bruno@clisp.org>
42081
42082         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
42083
42084 2003-01-15  Bruno Haible  <bruno@clisp.org>
42085
42086         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
42087         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
42088         suffix.
42089
42090 2003-01-15  Bruno Haible  <bruno@clisp.org>
42091
42092         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
42093
42094 2003-01-15  Bruno Haible  <bruno@clisp.org>
42095
42096         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
42097         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
42098
42099 2003-01-14  Jim Meyering  <jim@meyering.net>
42100
42101         * lib/same.c (same_name): Tweak a comment.
42102
42103 2003-01-14  Bruno Haible  <bruno@clisp.org>
42104
42105         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
42106         when a string comparison is sufficient.
42107
42108 2003-01-14  Bruno Haible  <bruno@clisp.org>
42109
42110         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
42111         'unsigned int'.
42112
42113 2003-01-14  Bruno Haible  <bruno@clisp.org>
42114
42115         * lib/hash-pjw.c: Add comment about low quality of this function.
42116
42117 2003-01-13  Bruno Haible  <bruno@clisp.org>
42118
42119         * modules/stpcpy: Distribute lib/stpcpy.h.
42120         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
42121
42122 2003-01-13  Bruno Haible  <bruno@clisp.org>
42123
42124         * modules/*: Add a description.
42125         * modules/strpbrk: Fix Makefile.am snippet.
42126         * modules/strtoimax: Fix dependencies.
42127         * modules/strtoumax: Likewise.
42128
42129 2003-01-13  Bruno Haible  <bruno@clisp.org>
42130
42131         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
42132         * modules/alloca (Makefile.am): All object files depend on alloca.h.
42133         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
42134
42135 2003-01-13  Bruno Haible  <bruno@clisp.org>
42136
42137         * gnulib-tool (func_create_testdir): Store config/* files in the main
42138         directory.
42139         * config.rpath: Move to ...
42140         * config/config.rpath: ... here.
42141         * modules/gettext: Contains config/config.rpath, not config.rpath.
42142         * modules/iconv: Likewise.
42143
42144 2003-01-12  Paul Eggert  <eggert@twinsun.com>
42145
42146         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
42147         to avoid collisions with libcurses and libreadline.
42148
42149         * m4/getstr.m4: Remove.
42150         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
42151
42152 2003-01-12  Paul Eggert  <eggert@twinsun.com>
42153
42154         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
42155         to avoid collisions with libcurses and libreadline.
42156
42157         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
42158         * lib/getstr.h, getstr.c: Remove.
42159         * lib/getline.c: Include "getline.h", to check interface.
42160         Move body of old getstr.c here: this defines MIN_CHUNK and
42161         declares getdelim2, which is renamed from getstr.
42162         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
42163
42164         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
42165         All uses changed.
42166         * lib/linebuffer.h: Likewise.
42167         (readline): Remove backward-compatibility macro.
42168
42169 2003-01-12  Paul Eggert  <eggert@twinsun.com>
42170
42171         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
42172         to avoid collisions with libcurses and libreadline.
42173         * getstr: Remove.
42174         * MODULES.html.sh: Remove getstr.
42175         * modules/getline: Depend on unlocked-io, not getstr.
42176
42177 2003-01-12  Jim Meyering  <jim@meyering.net>
42178
42179         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
42180
42181 2003-01-10  Bruno Haible  <bruno@clisp.org>
42182
42183         * modules/alloca: Change Makefile.am requirements. Simplify Include
42184         requirements. Add lib/alloca_.h to file list.
42185
42186 2003-01-10  Bruno Haible  <bruno@clisp.org>
42187
42188         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
42189
42190 2003-01-10  Bruno Haible  <bruno@clisp.org>
42191
42192         * lib/alloca_.h: New file.
42193         * lib/getdate.y: Unconditionally include alloca.h.
42194         * lib/makepath.c: Likewise.
42195         * lib/setenv.c: Likewise.
42196         * lib/userspec.c: Likewise.
42197
42198 2003-01-09  Karl Berry  <karl@gnu.org>
42199
42200         * MODULES.html.sh: include `dirname $0` in PATH, to find
42201         gnulib-tool.
42202
42203 2003-01-09  Bruno Haible  <bruno@clisp.org>
42204
42205         * modules/stdbool: Change configure.ac, Makefile.am requirements.
42206         Simplify Include requirements. Add lib/stdbool.h.in to file list.
42207
42208 2003-01-09  Bruno Haible  <bruno@clisp.org>
42209
42210         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
42211
42212 2003-01-09  Bruno Haible  <bruno@clisp.org>
42213
42214         * lib/stdbool.h.in: New file.
42215
42216 2003-01-09  Bruno Haible  <bruno@clisp.org>
42217
42218         * gnulib-tool (func_all_modules): Ignore files ending in ~.
42219         * MODULES.html.sh: Likewise.
42220
42221 2003-01-08  Jim Meyering  <jim@meyering.net>
42222
42223         * lib/full-write.c: Undefine and define-away `const' after inclusion
42224         of errno.h, not before.  Suggestion from Bruno Haible.
42225
42226 2003-01-08  Bruno Haible  <bruno@clisp.org>
42227
42228         * modules/full-read: Depend on full-write.
42229
42230 2003-01-08  Bruno Haible  <bruno@clisp.org>
42231
42232         * lib/safe-read.c: Include specification header first, to ensure its
42233         selfcontainedness.
42234         * lib/full-write.c: Likewise.
42235
42236 2003-01-07  Jim Meyering  <jim@meyering.net>
42237
42238         * lib/full-write.c: Rework so that it may serve to define full_read,
42239         too.
42240         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
42241
42242 2003-01-07  Bruno Haible  <bruno@clisp.org>
42243
42244         * lib/strtoimax.c: Include <stdint.h> as an alternative to
42245         <inttypes.h>.
42246         * lib/xstrtol.h: Likewise.
42247         * lib/xstrtoimax.c: Likewise.
42248         * lib/xstrtoumax.c: Likewise.
42249         * lib/human.h: Likewise.
42250
42251         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
42252         on systems that have <inttypes.h> but not <stdint.h>.
42253
42254 2003-01-07  Bruno Haible  <bruno@clisp.org>
42255
42256         * MODULES.html.sh: Add copyright notice.
42257         (missed_files): Omit CVS directory entries.
42258         (func_module): Make it work with sed-3.02.
42259         * MODULES.txt: Remove file.
42260
42261 2003-01-06  Jim Meyering  <jim@meyering.net>
42262
42263         * lib/version-etc.c: Update year in translatable copyright string.
42264
42265 2003-01-03  Karl Berry  <karl@gnu.org>
42266
42267         * config/config.{guess,sub}: update from prep.
42268
42269 2003-01-02  Karl Berry  <karl@gnu.org>
42270
42271         * doc/COPYING.DOC: belatedly updated to 1.2.
42272
42273 2003-01-01  Karl Berry  <karl@gnu.org>
42274
42275         * gnulib-tool (func_verify_module): report module name $module in
42276         error message, not $1.
42277         * gnulib-tool (create-testdir): don't complain if destdir couldn't
42278         be created, only if it doesn't exist.
42279         * gnulib-tool (last_checkin_date): don't expand the $Date here.
42280
42281 2002-12-31  Paul Eggert  <eggert@twinsun.com>
42282
42283         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
42284
42285 2002-12-31  Paul Eggert  <eggert@twinsun.com>
42286
42287         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
42288         memcmp if strcoll doesn't work.
42289
42290 2002-12-31  Bruno Haible  <bruno@clisp.org>
42291
42292         * lib/utime.c (utime_null): No need to call ftruncate if the file was
42293         nonempty.
42294
42295 2002-12-31  Bruno Haible  <bruno@clisp.org>
42296
42297         * lib/memcoll.c (STRCOLL): New macro.
42298         (memcoll): Use it.
42299
42300 2002-12-31  Bruno Haible  <bruno@clisp.org>
42301
42302         * lib/localcharset.h: New file.
42303         * lib/localcharset.c: Include it.
42304         * lib/unicodeio.c: Likewise.
42305
42306 2002-12-31  Bruno Haible  <bruno@clisp.org>
42307
42308         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
42309         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
42310
42311 2002-12-31  Bruno Haible  <bruno@clisp.org>
42312
42313         * lib/getline.h: Include <stddef.h>, for size_t.
42314
42315         * lib/unicodeio.h: Include <stddef.h>, for size_t.
42316         * lib/unicodeio.c: Don't include <stddef.h>.
42317
42318 2002-12-31  Bruno Haible  <bruno@clisp.org>
42319
42320         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
42321         HAVE_TM_ZONE.
42322
42323 2002-12-24  Karl Berry  <karl@gnu.org>
42324
42325         * config/config.guess: update from prep.
42326
42327 2002-12-24  Bruno Haible  <bruno@clisp.org>
42328
42329         General infrasructure.
42330         * m4/README: Rewritten.
42331         * m4/onceonly.m4: New file.
42332         * m4/onceonly_2_57.m4: New file.
42333
42334         Module atexit.
42335         * m4/atexit.m4: New file.
42336
42337         Module strtod.
42338         * m4/strtod.m4: New file.
42339
42340         Module strtol.
42341         * m4/strtol.m4: New file.
42342
42343         Module strtoul.
42344         * m4/strtoul.m4: New file.
42345
42346         Module memchr.
42347         * m4/memchr.m4: New file.
42348
42349         Module memcmp.
42350         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
42351         (jm_FUNC_MEMCMP): Invoke it.
42352
42353         Module memcpy.
42354         * m4/memcpy.m4: New file.
42355
42356         Module memmove.
42357         * m4/memmove.m4: New file.
42358
42359         Module memset.
42360         * m4/memset.m4: New file.
42361
42362         Module strcspn.
42363         * m4/strcspn.m4: New file.
42364
42365         Module strpbrk.
42366         * m4/strpbrk.m4: New file.
42367
42368         Module strstr.
42369         * m4/strstr.m4: New file.
42370
42371         Module strerror.
42372         * m4/strerror.m4: New file.
42373
42374         Module mktime.
42375         * m4/mktime.m4: Renamed from jm-mktime.m4.
42376         (gl_PREREQ_MKTIME): New macro.
42377         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
42378
42379         Module malloc.
42380         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
42381         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
42382         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
42383
42384         Module realloc.
42385         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
42386         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
42387         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
42388
42389         Module strftime.
42390         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
42391         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
42392         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
42393         gl_TM_GMTOFF.
42394         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
42395
42396         Module xalloc.
42397         * m4/xalloc.m4: New file.
42398
42399         Module alloca.
42400         * m4/alloca.m4: New file.
42401
42402         Module putenv.
42403         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
42404         (jm_FUNC_PUTENV): Invoke it.
42405
42406         Module setenv.
42407         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
42408         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
42409         when invoked twice.
42410         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
42411         gt_FUNC_SETENV.
42412
42413         Module memrchr.
42414         * m4/memrchr.m4: New file.
42415
42416         Module stpcpy.
42417         * m4/stpcpy.m4: New file.
42418
42419         Module strcase.
42420         * m4/strcase.m4: New file.
42421
42422         Module strdup.
42423         * m4/strdup.m4: New file.
42424
42425         Module strnlen.
42426         * m4/strnlen.m4: New file.
42427
42428         Module strndup.
42429         * m4/strndup.m4: New file.
42430
42431         Module xstrtod.
42432         * m4/xstrtod.m4: New file.
42433
42434         Module xstrtol.
42435         * m4/xstrtol.m4: New file.
42436
42437         Module getdate.
42438         * m4/getdate.m4: New file.
42439
42440         Module unlocked-io.
42441         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
42442         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
42443         * m4/jm-glibc-io.m4n: Remove file.
42444
42445         Module long-options.
42446         * m4/long-options.m4: New file.
42447
42448         Module md5.
42449         * m4/md5.m4: New file.
42450
42451         Module sha.
42452         * m4/sha.m4: New file.
42453
42454         Module getstr.
42455         * m4/getstr.m4: New file.
42456
42457         Module getline.
42458         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
42459         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
42460         <sys/types.h>, for size_t. Use the function name gnu_getline, not
42461         simply getline. Infoke gl_PREREQ_GETLINE.
42462
42463         Module obstack.
42464         * m4/obstack.m4: New file.
42465
42466         Module hash.
42467         * m4/hash.m4: New file.
42468
42469         Module readtokens.
42470         * m4/readtokens.m4: New file.
42471
42472         Module strverscmp.
42473         * m4/strverscmp.m4: New file.
42474
42475         Module stdbool.
42476         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
42477         OSF/1.
42478
42479         Module strtoll.
42480         * m4/strtoll.m4: New file.
42481
42482         Module strtoull.
42483         * m4/strtoull.m4: New file.
42484
42485         Module strtoimax.
42486         * m4/strtoimax.m4: New file.
42487
42488         Module strtoumax.
42489         * m4/strtoumax.m4: New file.
42490
42491         Module xstrtoimax.
42492         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
42493         jm_AC_PREREQ_XSTRTOIMAX.
42494         Moved the strtol prerequisites to strtol.m4.
42495         Moved the strtoll prerequisites to strtoll.m4.
42496         Moved the strtoimax prerequisites to strtoimax.m4.
42497
42498         Module xstrtoumax.
42499         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
42500         jm_AC_PREREQ_XSTRTOUMAX.
42501         Moved the strtoul prerequisites to strtoul.m4.
42502         Moved the strtoull prerequisites to strtoull.m4.
42503         Moved the strtoumax prerequisites to strtoumax.m4.
42504
42505         Module chown.
42506         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
42507         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
42508
42509         Module dup2.
42510         * m4/dup2.m4: New file.
42511
42512         Module ftruncate.
42513         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
42514         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
42515
42516         Module getgroups.
42517         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
42518         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
42519
42520         Module gettimeofday.
42521         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
42522         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
42523         gl_PREREQ_GETTIMEOFDAY.
42524
42525         Module mkdir.
42526         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
42527         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
42528
42529         Module mkstemp.
42530         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
42531         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
42532         jm_AC_TYPE_UINTMAX_T.
42533         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
42534
42535         Module stat.
42536         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
42537         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
42538
42539         Module lstat.
42540         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
42541         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
42542
42543         Module timespec.
42544         * m4/timespec.m4 (gl_TIMESPEC): New macro.
42545         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
42546         * m4/st_mtim.m4: Indentation.
42547
42548         Module nanosleep.
42549         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
42550         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
42551         gl_PREREQ_NANOSLEEP.
42552
42553         Module regex.
42554         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
42555         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
42556         (gl_REGEX): New macro.
42557
42558         Module rename.
42559         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
42560         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
42561
42562         Module rmdir.
42563         * m4/rmdir.m4: New file.
42564
42565         Module utime.
42566         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
42567         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
42568         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
42569
42570         Module dirname.
42571         * m4/dirname.m4: New file.
42572
42573         Module getopt.
42574         * m4/getopt.m4: New file.
42575
42576         Module unistd-safer.
42577         * m4/unistd-safer.m4: New file.
42578
42579         Module fnmatch.
42580         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
42581         declaration.
42582         (gl_PREREQ_FNMATCH_EXTRA): New macro.
42583         (gl_FUNC_FNMATCH_POSIX): New macro.
42584         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
42585         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
42586         simply fnmatch.
42587
42588         Module exclude.
42589         * m4/exclude.m4: New file.
42590
42591         Module human.
42592         * m4/human.m4: New file.
42593
42594         Module acl.
42595         * m4/acl.m4: Nop.
42596
42597         Module backupfile.
42598         * m4/backupfile.m4: New file.
42599         * m4/d-ino.m4: Indentation.
42600
42601         Module fsusage.
42602         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
42603         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
42604         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
42605
42606         Module dirfd.
42607         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
42608         requirements.
42609
42610         Module euidaccess.
42611         * m4/euidaccess.m4: New file.
42612
42613         Module file-type.
42614         * m4/file-type.m4: New file.
42615
42616         Module fileblocks.
42617         * m4/fileblocks.m4: New file.
42618
42619         Module filemode.
42620         * m4/filemode.m4: New file.
42621
42622         Module isdir.
42623         * m4/isdir.m4: New file.
42624
42625         Module lchown.
42626         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
42627         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
42628
42629         Module makepath.
42630         * m4/makepath.m4: New file.
42631
42632         Module modechange.
42633         * m4/modechange.m4: New file.
42634
42635         Module mountlist.
42636         * m4/mountlist.m4: New file.
42637         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
42638         Indentation.
42639
42640         Module path-concat.
42641         * m4/path-concat.m4: New file.
42642
42643         Module pathmax.
42644         * m4/pathmax.m4: New file.
42645
42646         Module same.
42647         * m4/same.m4: New file.
42648
42649         Module save-cwd.
42650         * m4/save-cwd.m4: New file.
42651
42652         Module savedir.
42653         * m4/savedir.m4: New file.
42654
42655         Module xgetcwd.
42656         * m4/xgetcwd.m4: New file.
42657         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
42658
42659         Module xreadlink.
42660         * m4/xreadlink.m4: New file.
42661
42662         Module safe-read.
42663         * m4/safe-read.m4: New file.
42664
42665         Module safe-write.
42666         * m4/safe-write.m4: New file.
42667
42668         Module closeout.
42669         * m4/closeout.m4: New file.
42670
42671         Module stdio-safer.
42672         * m4/stdio-safer.m4: New file.
42673
42674         Module getpass.
42675         * m4/getpass.m4: New file.
42676
42677         Module getugroups.
42678         * m4/getugroups.m4: New file.
42679
42680         Module group-member.
42681         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
42682         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
42683
42684         Module idcache.
42685         * m4/idcache.m4: New file.
42686
42687         Module userspec.
42688         * m4/userspec.m4: New file.
42689
42690         Module gettime.
42691         * m4/clock_time.m4: New file.
42692         * m4/gettime.m4: New file.
42693
42694         Module settime.
42695         * m4/settime.m4: New file.
42696
42697         Module posixtm.
42698         * m4/posixtm.m4: New file.
42699
42700         Module gethostname.
42701         * m4/gethostname.m4: New file.
42702
42703         Module canon-host.
42704         * m4/canon-host.m4: New file.
42705
42706         Module gettext.
42707         * m4/codeset.m4: New file, from gettext-0.11.5.
42708         * m4/gettext.m4: New file, from gettext-0.11.5.
42709         * m4/glibc21.m4: New file, from gettext-0.11.5.
42710         * m4/iconv.m4: New file, from gettext-0.11.5.
42711         * m4/intdiv0.m4: New file, from gettext-0.11.5.
42712         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
42713         * m4/inttypes.m4: New file, from gettext-0.11.5.
42714         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
42715         * m4/isc-posix.m4: New file, from gettext-0.11.5.
42716         * m4/lcmessage.m4: New file, from gettext-0.11.5.
42717         * m4/lib-ld.m4: New file, from gettext-0.11.5.
42718         * m4/lib-link.m4: New file, from gettext-0.11.5.
42719         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
42720         * m4/progtest.m4: New file, from gettext-0.11.5.
42721         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
42722         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
42723         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
42724
42725         Module localcharset.
42726         * m4/localcharset.m4: New file.
42727
42728         Module hard-locale.
42729         * m4/hard-locale.m4: New file.
42730
42731         Module mbswidth.
42732         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
42733         onceonly macros.
42734         * m4/mbrtowc.m4: Add comment.
42735
42736         Module memcasecmp.
42737         * m4/memcasecmp.m4: New file.
42738
42739         Module memcoll.
42740         * m4/memcoll.m4: New file.
42741
42742         Module unicodeio.
42743         * m4/unicodeio.m4: New file.
42744
42745         Module rpmatch.
42746         * m4/rpmatch.m4: New file.
42747
42748         Module yesno.
42749         * m4/yesno.m4: New file.
42750
42751         Module exitfail.
42752         * m4/exitfail.m4: New file.
42753
42754         Module c-stack.
42755         * m4/c-stack.m4 (gl_C_STACK): New macro.
42756         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
42757
42758         Module error.
42759         * m4/error.m4 (gl_ERROR): New macro.
42760         (jm_PREREQ_ERROR): Use onceonly macros.
42761
42762         Module fatal.
42763         * m4/fatal.m4: New file.
42764
42765         Module getloadavg.
42766         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
42767         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
42768
42769         Module getpagesize.
42770         * m4/getpagesize.m4: New file.
42771
42772         Module getusershell.
42773         * m4/getusershell.m4: New file.
42774
42775         Module physmem.
42776         * m4/physmem.m4: New file.
42777
42778         Module posixver.
42779         * m4/posixver.m4: New file.
42780
42781         Module quotearg.
42782         * m4/quotearg.m4: New file.
42783
42784         Module quote.
42785         * m4/quote.m4: New file.
42786
42787         Module readutmp.
42788         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
42789
42790         Module sig2str.
42791         * m4/sig2str.m4: New file.
42792
42793         Other.
42794         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
42795         ulonglong.m4.
42796         * m4/intmax_t.m4: New file.
42797         * m4/d-type.m4: Indentation.
42798         * m4/jm-macros.m4: Update.
42799         * m4/prereq.m4 (jm_PREREQ): Update.
42800         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
42801         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
42802         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
42803         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
42804         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
42805         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
42806         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
42807         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
42808         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
42809         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
42810         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
42811         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
42812         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
42813         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
42814         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
42815         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
42816         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
42817         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
42818         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
42819
42820 2002-12-24  Bruno Haible  <bruno@clisp.org>
42821
42822         * MODULES.txt: Update according to m4/ changes.
42823
42824         Module gettext.
42825         * config.rpath: New file, from gettext-0.11.5.
42826
42827         * modules/*: New module descriptions.
42828         * gnulib-tool: New file.
42829         * MODULES.html.sh: New file.
42830
42831 2002-12-21  Karl Berry  <karl@gnu.org>
42832
42833         * doc/fdl.texi: update to version 1.2.
42834
42835 2002-12-19  Karl Berry  <karl@gnu.org>
42836
42837         * config/config.guess: update from prep.
42838
42839 2002-12-18  Bruno Haible  <bruno@clisp.org>
42840
42841         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
42842         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
42843
42844 2002-12-17  Bruno Haible  <bruno@clisp.org>
42845
42846         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
42847         stdlib.h, string.h.
42848
42849 2002-12-17  Bruno Haible  <bruno@clisp.org>
42850
42851         * lib/canon-host.c (strdup): Remove unused declaration.
42852
42853         * lib/fsusage.c: Include full_read.h.
42854         (get_fs_usage): Use full_read instead of safe_read.
42855
42856         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
42857
42858 2002-12-12  Karl Berry  <karl@gnu.org>
42859
42860         * config/config.guess: update from prep.
42861
42862 2002-12-11  Bruno Haible  <bruno@clisp.org>
42863
42864         * m4/setenv.m4: New file, from gettext-0.11.5.
42865
42866 2002-12-11  Bruno Haible  <bruno@clisp.org>
42867
42868         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
42869         not unsetenv().
42870         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
42871         modifications:
42872
42873         2002-12-11  Bruno Haible  <bruno@clisp.org>
42874
42875                 * setenv.c (alloca): Fall back to malloc.
42876                 (freea): New macro.
42877                 (setenv): Use freea() to free memory allocated with alloca().
42878
42879         2002-11-13  Bruno Haible  <bruno@clisp.org>
42880
42881                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
42882                 function declarations.
42883                 * unsetenv.c (unsetenv): Likewise.
42884
42885         2002-03-04  Bruno Haible  <bruno@clisp.org>
42886
42887                 Portability to AIX 4.3.3.
42888                 * unsetenv.c: New file, extracted from setenv.c.
42889                 * setenv.c: Move the unsetenv() function to unsetenv.c.
42890
42891         2001-12-20  Bruno Haible  <bruno@clisp.org>
42892
42893                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
42894                 use malloc instead. For SunOS 4.
42895
42896         2001-12-11  Bruno Haible  <bruno@clisp.org>
42897
42898                 * setenv.c: Declare alloca.
42899                 (compar_fn_t): New typedef.
42900                 (KNOWN_VALUE, STORE_VALUE): Use it.
42901
42902         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
42903         setenv.h.
42904
42905 2002-12-10  Paul Eggert  <eggert@twinsun.com>
42906
42907         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
42908         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
42909         Choose values that are less likely to collide with system fnmatch
42910         options.
42911         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
42912         defined (e.g., a pure POSIX system).
42913         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
42914         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
42915
42916 2002-12-06  Paul Eggert  <eggert@twinsun.com>
42917
42918         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
42919         a pain in practice to deal with generated m4 files.  This change
42920         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
42921
42922         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
42923         and jm-glibc-io.m4, as they are no longer a special case.
42924         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
42925         kludge and the auto-generation stuff.  Check only whether the
42926         functions are declared, not whether they exist, since older hosts
42927         that don't declare the functions can't use the optimization anyway.
42928
42929 2002-12-06  Jim Meyering  <jim@meyering.net>
42930
42931         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
42932
42933         Merge in changes from libc's misc/error.c, in preparation
42934         for the merge of gnulib's changes back into libc.
42935
42936         * lib/error.c (_): Define only if not already defined.
42937         Move definition to follow all #include directives.
42938         Include unlocked-io.h only if !_LIBC.
42939         [_LIBC]: Include <libio/libioP.h>.
42940         [USE_IN_LIBIO]: Include <libio/iolibio.h>
42941         (fflush): Tweak definition to use INTUSE.
42942         (putc): Define.
42943
42944 2002-12-05  Paul Eggert  <eggert@twinsun.com>
42945
42946         * lib/alloca.c [defined emacs]: Include "lisp.h".
42947         (xalloc_die) [defined emacs]: New macro.
42948         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
42949         [! defined emacs]: Include <xalloc.h>.
42950         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
42951         (pointer): Typedef to POINTER_TYPE *.
42952         (malloc): Remove decl; we now always use xmalloc.
42953         (alloca): Use old-style definition, since Emacs needs this.
42954         Check for arithmetic overflow when computing combined size.
42955
42956 2002-12-04  Paul Eggert  <eggert@twinsun.com>
42957
42958         Do not generate unlocked-io.h automatically, since it's easier to
42959         maintain it by hand.
42960
42961         * lib/unlocked-io.h: New file, from GNU diffutils,
42962         but with proper copyright notice and attribution.
42963         * lib/gen-uio: Remove.
42964         * lib/Makefile.am: Add copyright notice.
42965         (libfetish_a_SOURCES): Add unlocked-io.h.
42966         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
42967         (DISTCLEANFILES, io_functions): Remove macros.
42968         (EXTRA_DIST): Remove gen_uio.
42969         (unlocked-io.h): Remove rule.
42970
42971 2002-12-04  Jim Meyering  <jim@meyering.net>
42972
42973         Reflect the fact that stat.c and lstat.c are no longer generated.
42974         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
42975         (DISTCLEANFILES): Likewise.
42976         (EXTRA_DIST): Likewise.
42977         (all_local): Don't depend on stat.c or lstat.c.
42978         (stat.c, lstat.c): Remove rules.
42979         (EXTRA_DIST): Remove xstat.in.
42980
42981         * lib/xstat.in: Remove file.  Contents moved into stat.c.
42982         * lib/stat.c: New file.  Contents mostly from xstat.in.
42983         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
42984         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
42985
42986         * lib/safe-read.c: Rework so that it may serve to define safe_write,
42987         too.
42988         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
42989
42990 2002-12-03  Jim Meyering  <jim@meyering.net>
42991
42992         * lib/safe-read.c, safe-write.c: Change variable names and comments,
42993         but not semantics, to minimize the differences between these two files.
42994         (safe_read): Change comment to mention SAFE_READ_ERROR.
42995
42996         * lib/safe-read.c (IS_EINTR): Define.
42997         (safe_read): Use IS_EINTR in place of in-function cpp directives.
42998
42999 2002-12-02  Jim Meyering  <jim@meyering.net>
43000
43001         * lib/safe-read.c (EINTR): Define.
43002         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
43003         (INT_MAX): Provide fallback.
43004         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
43005
43006         * lib/safe-read.h (SAFE_READ_ERROR): Define.
43007
43008 2002-12-02  Bruno Haible  <bruno@clisp.org>
43009
43010         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
43011         Define, taken from safe-read.c.
43012         (INT_MAX): Provide fallback.
43013         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
43014         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
43015
43016         * lib/safe-read.c (EINTR): Remove definition.
43017         (safe_read): Don't use EINTR if it is absent.
43018
43019 2002-12-01  Jim Meyering  <jim@meyering.net>
43020
43021         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
43022         zero.
43023         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
43024
43025 2002-11-27  Paul Eggert  <eggert@twinsun.com>
43026
43027         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
43028         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
43029         with `if (! (value < limit)) abort ();', for readability.
43030
43031 2002-11-26  Karl Berry  <karl@gnu.org>
43032
43033         * lib/strdup.c: copy from libc again, with jim's ok.
43034         * lib/.cppi-disable: re-add strdup.c
43035
43036 2002-11-25  Karl Berry  <karl@gnu.org>
43037
43038         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
43039         instead of "strtol.c".
43040
43041 2002-11-25  Karl Berry  <karl@gnu.org>
43042
43043         * config/install-sh: update from automake for variable quoting, $0 in
43044         error msgs, etc.
43045
43046         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
43047         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
43048         entry.
43049
43050 2002-11-25  Jim Meyering  <jim@meyering.net>
43051
43052         * lib/mktime.c: Sync from libc, now that it has the latest fix.
43053
43054 2002-11-24  Karl Berry  <karl@gnu.org>
43055
43056         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
43057         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
43058
43059 2002-11-24  Jim Meyering  <jim@meyering.net>
43060
43061         Update from coreutils:
43062
43063         * lib/mktime.c: Merge in changes from libc.
43064
43065         Avoid a link-time failure on some Linux systems.
43066         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
43067         (otherwise).
43068         (__mon_yday): Declare with the STATIC attribute.
43069         (__mktime_internal): Likewise.
43070         Based on a report from Greg Schafer.
43071
43072 2002-11-23  Jim Meyering  <jim@meyering.net>
43073
43074         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
43075         Use `unsigned', not `int', as type of index.
43076
43077         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
43078
43079         * lib/fsusage.c: Remove unneeded parentheses around operands of
43080         `defined'.
43081
43082 2002-11-22  Paul Eggert  <eggert@twinsun.com>
43083
43084         * lib/quotearg.h: Allow multiple inclusion by surrounding with
43085         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
43086         so that we can be included first.
43087         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
43088         * lib/quotearg.c: Include quotearg.h immediately after config.h.
43089         No need to include stddef.h or sys/types.h any more.
43090         Surround local include files with "", not "<>".
43091         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
43092         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
43093         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
43094         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
43095         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
43096         (ISPRINT): Remove; no longer needed now that we assume C89.
43097
43098         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
43099         Preserve errno.
43100
43101         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
43102         quotearg_char): Use SIZE_MAX rather than
43103         (size_t) -1 when we are talking about "infinity".
43104
43105         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
43106
43107 2002-11-22  Paul Eggert  <eggert@twinsun.com>
43108
43109         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
43110         hint that one should use `if (! x) abort ();' rather than `assert
43111         (x);', and anyway it's one less thing to worry about configuring.
43112         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
43113         hash_rehash, hash_insert): Use abort rather than assert.
43114
43115 2002-11-22  Bruno Haible  <bruno@clisp.org>
43116
43117         * lib/safe-read.h: Assume C89. Add comments.
43118         (safe_read): Change return type to size_t.
43119         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
43120         byte counts > SSIZE_MAX correctly.
43121         * lib/safe-write.h: New file.
43122         * lib/safe-write.c: New file.
43123         * lib/full-read.h: New file.
43124         * lib/full-read.c: New file.
43125         * lib/full-write.h: Assume C89. Add comments.
43126         * lib/full-write.c: Include safe-write.h.
43127         (full_write): Rewritten to use safe_write.
43128         Suggested by Jim Meyering and Paul Eggert.
43129
43130 2002-11-21  Jim Meyering  <jim@meyering.net>
43131
43132         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
43133
43134         Merge in changes from the coreutils.
43135
43136         2002-09-25  Paul Eggert  <eggert@twinsun.com>
43137         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
43138         <stdint.h>.
43139         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
43140         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
43141         int.  Work more efficiently if X is the same width as uintmax_t.
43142         Do not compare X to -1, to avoid bogus compiler warning.
43143         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
43144         Don't assume that f_frsize and f_bsize are the same type.
43145
43146         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
43147         warning on FreeBSD.
43148
43149         * lib/makepath.c (make_path): Restore umask *before* creating the final
43150         component.
43151         (make_path): Minor reformatting.
43152
43153         * lib/xmalloc.c: Adjust to work with new autoconf macros,
43154         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
43155         HAVE_MALLOC/HAVE_REALLOC.
43156
43157         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
43158         dummy ones.  At least on GNU/Linux systems, `auto' means something
43159         else.
43160         From Michael Stone.
43161
43162 2002-11-21  Bruno Haible  <bruno@clisp.org>
43163
43164         Remove case insensitive option matching.
43165         * lib/argmatch.h (argcasematch): Remove declaration.
43166         (ARGCASEMATCH): Remove macro.
43167         (__xargmatch_internal): Remove case_sensitive argument.
43168         (XARGMATCH): Update.
43169         (XARGCASEMATCH): Remove macro.
43170         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
43171         case_sensitive argument.
43172         (argcasematch): Remove function.
43173         (__xargmatch_internal): Remove case_sensitive argument.
43174         (main): Use XARGMATCH instead of XARGCASEMATCH.
43175
43176         * lib/xmalloc.c: Change compile-time error message. Add comment about
43177         required autoconf version.
43178
43179 2002-11-20  Paul Eggert  <eggert@twinsun.com>
43180
43181         Merge argmatch cleanups from Bison.  Assume C89.
43182
43183         * lib/argmatch.c: Include config.h here, not in argmatch.h.
43184         Include stdlib.h, for EXIT_FAILURE.
43185         Always include <string.h>, since we assume C89.
43186         (EXIT_FAILURE): Remove pre-C89 bug workaround.
43187         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
43188         Include <stddef.h> instead, since it's all we need for size_t.
43189         (PARAMS): Remove.  All uses removed.
43190         (ARRAY_CARDINALITY): Do not bother to #undef.
43191         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
43192         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
43193         Remove unnecessary parentheses.
43194         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
43195         Insert necessary parentheses.
43196         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
43197         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
43198
43199 2002-11-19  Bruno Haible  <bruno@clisp.org>
43200
43201         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
43202         * lib/mbswidth.h: Include <stddef.h>, for size_t.
43203
43204         * lib/mbswidth.h (PARAMS): Remove macro.
43205         (mbswidth, mbsnwidth): Use ANSI C function declarations.
43206         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
43207
43208         * lib/gcd.h (PARAMS): Remove macro.
43209         (gcd): Use ANSI C function declarations.
43210         * lib/gcd.c (gcd): Likewise.
43211
43212 2002-11-15  Bruno Haible  <bruno@clisp.org>
43213
43214         * lib/strcspn.c: Include <stddef.h>.
43215         (strcspn): Use ANSI C function declaration. Change return type to
43216         size_t. Use NULL.
43217         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
43218         (strpbrk): Use NULL.
43219         * lib/strpbrk.h (PARAMS): Remove macro.
43220         (strpbrk): Use ANSI C function declaration.
43221         * lib/strstr.c: Don't include <sys/types.h>.
43222         * lib/strstr.h (PARAMS): Remove macro.
43223         (strstr): Use ANSI C function declarations.
43224
43225 2002-11-14  Karl Berry  <karl@gnu.org>
43226
43227         * config/mkinstalldirs: `do' on separate line, instead of
43228         `for var; do'.
43229
43230 2002-11-06  Bruno Haible  <bruno@clisp.org>
43231
43232         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
43233         * lib/gcd.c (gcd): Likewise.
43234
43235 2002-11-05  Bruno Haible  <bruno@clisp.org>
43236
43237         * lib/gcd.h: New file, from gettext-0.11.5.
43238         * lib/gcd.c: New file, from gettext-0.11.5.
43239
43240 2002-11-05  Bruno Haible  <bruno@clisp.org>
43241
43242         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
43243         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
43244         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
43245         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
43246
43247         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
43248         <libintl.h>.
43249         * lib/makepath.c: Include gettext.h instead of <locale.h> and
43250         <libintl.h>.
43251
43252         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
43253         * lib/human.c: Include gettext.h instead of <libintl.h>.
43254         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
43255         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
43256         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
43257         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
43258         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
43259         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
43260         (textdomain): Remove definition.
43261         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
43262
43263         * lib/long-options.c: Remove include of <libintl.h> and definition of
43264         _.
43265         * lib/same.c: Remove include of <libintl.h> and definition of _.
43266
43267 2002-11-04  Owen Taylor  <otaylor@redhat.com>
43268
43269         * lib/config.charset: A few additions for Solaris.
43270
43271 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
43272
43273         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
43274         * lib/localcharset.c (locale_charset): Declare as extern "C".
43275
43276 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
43277
43278         * lib/config.charset: msdos in uk_UA uses CP1125.
43279
43280 2002-11-04  Bruno Haible  <bruno@clisp.org>
43281
43282         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
43283         * lib/strcase.h: New file, from GNU gettext-0.11.5.
43284         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
43285         * lib/strstr.h: New file, from GNU gettext-0.11.5.
43286         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
43287
43288 2002-11-04  Bruno Haible  <bruno@clisp.org>
43289
43290         * lib/localcharset.c (locale_charset): Don't return an empty string.
43291
43292 2002-11-04  Bruno Haible  <bruno@clisp.org>
43293
43294         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
43295         aliases.
43296
43297 2002-11-04  Bruno Haible  <bruno@clisp.org>
43298
43299         * lib/config.charset: Update for newest glibc. Add canonical names
43300         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
43301
43302 2002-11-04  Bruno Haible  <bruno@clisp.org>
43303
43304         * lib/config.charset: Add support for NetBSD.
43305
43306 2002-11-04  Bruno Haible  <bruno@clisp.org>
43307
43308         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
43309
43310 2002-11-01  Bruno Haible  <bruno@clisp.org>
43311
43312         * configure.in: Add AC_CONFIG_AUX_DIR call.
43313         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
43314         test/Makefile.
43315         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
43316
43317 2002-09-28  Karl Berry  <karl@gnu.org>
43318
43319         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
43320         installed automake until the next release, since changes have been
43321         made.
43322
43323 2002-09-25  Karl Berry  <karl@gnu.org>
43324
43325         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
43326         * lib/getopt*: copy from libc/posix.
43327         * lib/gettext.h: copy from gettext.
43328         * lib/.cppi-disable: add strdup.c, gettext.h.
43329
43330 2002-09-25  Karl Berry  <karl@gnu.org>
43331
43332         * config/srclist.txt: enable gettext.h check.
43333         * config/config.{guess,sub}: update from prep.
43334         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
43335                 from automake 1.6.3.
43336         See srclist*.
43337
43338 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
43339
43340         * regex.c (PATFETCH): Remove the translating fetch.
43341         (PATFETCH_RAW): Rename to PATFETCH.
43342         (set_image_of_range): New fun.
43343         (SET_RANGE_TABLE_WORK_AREA): Use it.
43344         (regex_compile): Don't translate the pattern chars so eagerly.
43345         Only do it when inserting an `exactn' bytecode or when handling
43346         a char-range.
43347         (mutually_exclusive_p): Avoid empty statement.
43348
43349 2002-07-06  Jim Meyering  <meyering@lucent.com>
43350
43351         * m4/README: Don't mention Makefile.am.in.
43352         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
43353
43354 2002-07-01  Jim Meyering  <meyering@lucent.com>
43355
43356         * lib/c-stack.c: Include sys/time.h.
43357         From Volker Borchert.
43358
43359 2002-06-26  Paul Eggert  <eggert@twinsun.com>
43360
43361         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
43362
43363 2002-06-26  Paul Eggert  <eggert@twinsun.com>
43364
43365         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
43366         New macro.  Use it uniformly instead of
43367         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
43368         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
43369         reported by Vin Shelton.
43370
43371 2002-06-22  Paul Eggert  <eggert@twinsun.com>
43372
43373         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
43374         Do not assume SA_SIGINFO behavior.
43375         Bug reported by Jim Meyering on NetBSD 1.5.2.
43376
43377 2002-06-22  Jim Meyering  <meyering@lucent.com>
43378
43379         * m4/c-stack.m4: New file, from diffutils-2.8.2.
43380         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
43381
43382         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
43383         now that configure.ac uses AC_GNU_SOURCE.
43384         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
43385         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
43386
43387         Update to latest tools.  Suggestions from Paul Eggert.
43388         * m4/stdbool.m4: New file, from diffutils-2.8.2.
43389         * m4/gnu-source.m4: Update from diffutils-2.8.2.
43390         * m4/fnmatch.m4: Likewise.
43391         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
43392         to AC_HEADER_STDBOOL
43393
43394 2002-06-22  Jim Meyering  <meyering@lucent.com>
43395
43396         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
43397         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
43398
43399 2002-06-22  Jim Meyering  <meyering@lucent.com>
43400
43401         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
43402
43403         * lib/exitfail.c, exitfail.h: Likewise.
43404         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
43405
43406         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
43407         of fnmatch.h.
43408         (EXTRA_DIST): Add fnmatch_loop.c.
43409         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
43410
43411         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
43412         * lib/fnmatch.c: Update from diffutils-2.8.2.
43413         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
43414         * lib/fnmatch.h: Remove file.
43415
43416 2002-06-21  Jim Meyering  <meyering@lucent.com>
43417
43418         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
43419         * m4/mbrtowc.m4: Likewise.
43420
43421         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
43422         * m4/mbswidth.m4: Reflect name change:
43423         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
43424         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
43425
43426         * m4/lib-link.m4: Update from gettext-0.11.2.
43427         * m4/gettext.m4: Likewise.
43428
43429         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
43430         From Alfred M. Szmidt.
43431
43432 2002-06-18  Paul Eggert  <eggert@twinsun.com>
43433
43434         * lib/file-type.h: Report an error if neither S_ISREG nor
43435         S_IFREG is defined, instead of using a test specific to glibc
43436         2.2.  This should be safe, since POSIX requires S_ISREG and
43437         Unix Version 7 had S_IFREG.  We don't need to check for
43438         <sys/types.h> since we don't use any symbols that it defines.
43439
43440 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
43441
43442         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
43443         $@-t, so that each temporary file name is unique and valid in the first
43444         8 characters, for operation under DOS.
43445
43446 2002-06-15  Paul Eggert  <eggert@twinsun.com>
43447
43448         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
43449
43450 2002-06-15  Jim Meyering  <meyering@lucent.com>
43451
43452         Work even with DJGPP 2.03, which lacks support for symlinks.
43453         From Richard Dawe.
43454         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
43455         is defined.
43456         * lib/lchown.c (S_ISLNK): Likewise.
43457
43458 2002-06-15  Jim Meyering  <meyering@lucent.com>
43459
43460         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
43461         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
43462         have been included before this file.
43463
43464 2002-06-14  Jim Meyering  <meyering@lucent.com>
43465
43466         * lib/file-type.h: Use the version from diffutils-2.8.2.
43467         * lib/file-type.c: Likewise.
43468
43469 2002-06-07  Jim Meyering  <meyering@lucent.com>
43470
43471         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
43472         They're needed at least for NetBSD 1.5.2.
43473         ($statxfs_includes): Include those same headers.
43474         ($statxfs_includes): Include sys/vfs.h if available.
43475         ($statxfs_includes): Likewise for sys/statvfs.h.
43476         Check for the following members in both structs statfs and statvfs:
43477         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
43478
43479 2002-06-01  Jim Meyering  <meyering@lucent.com>
43480
43481         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
43482         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
43483
43484 2002-05-28  Jim Meyering  <meyering@lucent.com>
43485
43486         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
43487         Reported by Volker Borchert.
43488
43489 2002-05-27  Jim Meyering  <meyering@lucent.com>
43490
43491         Fix a problem seen only on nonconforming systems whereby ls.c's
43492         use of localtime, and then of gettimeofday would cause trouble:
43493         the localtime call used to initialize rpl_gettimeofday's save
43494         mechanism would clobber ls's current local time information so
43495         that in any long listing the first file would always be listed
43496         with date 1970-01-01.  Analysis by Volker Borchert.
43497
43498         * lib/gettimeofday.c (localtime): Undefine.
43499         (rpl_localtime): New function.
43500
43501 2002-05-27  Jim Meyering  <meyering@lucent.com>
43502
43503         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
43504         localtime.
43505
43506         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
43507         use the replacement function; it wouldn't resolve at link time.
43508         Reported by Volker Borchert.
43509
43510 2002-05-22  Jim Meyering  <meyering@lucent.com>
43511
43512         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
43513         file-type.h.
43514         * lib/file-type.h: New file.
43515         * lib/file-type.c (file_type): New file/function.  Extracted from
43516         diffutils.
43517
43518 2002-04-30  Jim Meyering  <meyering@lucent.com>
43519
43520         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
43521
43522 2002-04-29  Paul Eggert  <eggert@twinsun.com>
43523
43524         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
43525
43526 2002-04-29  Paul Eggert  <eggert@twinsun.com>
43527
43528         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
43529         Do not check for alloca.h (no longer used) or stdbool.h (was never
43530         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
43531
43532 2002-04-29  Paul Eggert  <eggert@twinsun.com>
43533
43534         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
43535
43536 2002-04-29  Jim Meyering  <meyering@lucent.com>
43537
43538         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
43539         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
43540         Use AC_FUNC_STRNLEN here instead.
43541
43542         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
43543         With autoconf-2.53a, it's part of AC_PROG_CC.
43544
43545 2002-04-28  Paul Eggert  <eggert@twinsun.com>
43546
43547         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
43548         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
43549
43550 2002-04-28  Paul Eggert  <eggert@twinsun.com>
43551
43552         * lib/sig2str.h, lib/sig2str.c: New files.
43553         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
43554
43555 2002-04-28  Paul Eggert  <eggert@twinsun.com>
43556
43557         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
43558         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
43559         of 127, since 64 is the largest conceivable number for ancient
43560         nonstandard hosts.
43561         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
43562
43563 2002-04-28  Jim Meyering  <meyering@lucent.com>
43564
43565         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
43566
43567 2002-04-24  Jim Meyering  <meyering@lucent.com>
43568
43569         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
43570         (jm_PREREQ): Use it.
43571
43572         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
43573         mach/mach.h fcntl.h.
43574         Check for this function: setlocale.
43575
43576 2002-04-24  Jim Meyering  <meyering@lucent.com>
43577
43578         * lib/gettext.h: New file, from Gettext.
43579         * lib/Makefile.am (INCLUDES): Remove -I../intl.
43580         (libfetish_a_SOURCES): Add gettext.h.
43581
43582 2002-04-16  Jim Meyering  <meyering@lucent.com>
43583
43584         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
43585         ut_pid, ut_id, ut_exit.
43586
43587 2002-04-16  Jim Meyering  <meyering@lucent.com>
43588
43589         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
43590         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
43591         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
43592
43593 2002-04-12  Jim Meyering  <meyering@lucent.com>
43594
43595         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
43596         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
43597         existence of the getmntinfo function.  Needed for Darwin 5.3.
43598
43599         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
43600         This is necessary at least on Darwin 5.3.
43601
43602         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
43603         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
43604         strnlen.o in the library, and that makes some versions of ranlib
43605         object.
43606
43607 2002-04-12  Jim Meyering  <meyering@lucent.com>
43608
43609         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
43610
43611 2002-04-09  Jim Meyering  <meyering@lucent.com>
43612
43613         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
43614         to be more precise.  Rather than saying we're checking whether the
43615         function `works', say what we're testing.
43616         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
43617         Reported by Bruno Haible.
43618
43619 2002-03-10  Jim Meyering  <meyering@lucent.com>
43620
43621         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
43622         Suggestion from Santiago Vila.
43623
43624 2002-03-08  Jim Meyering  <meyering@lucent.com>
43625
43626         * lib/rename.c: Mention that this wrapper is needed also on
43627         mips-dec-ultrix4.4 systems.
43628
43629 2002-03-02  Jim Meyering  <meyering@lucent.com>
43630
43631         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
43632         not HAVE_CLOCK_SETTIME.
43633
43634 2002-02-27  Paul Eggert  <eggert@twinsun.com>
43635
43636         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
43637         Check for clock_settime.
43638
43639 2002-02-27  Paul Eggert  <eggert@twinsun.com>
43640
43641         * lib/nanosleep.h: Rename to....
43642         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
43643
43644         * lib/gettime.c: New file.
43645         * lib/settime.c: New file.
43646         * lib/stime.c: Remove.
43647
43648         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
43649         timespec.h.  Remove nanosleep.h.
43650
43651 2002-02-25  Paul Eggert  <eggert@twinsun.com>
43652
43653         * m4/acl.m4: New file.
43654         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
43655         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
43656
43657 2002-02-25  Paul Eggert  <eggert@twinsun.com>
43658
43659         * lib/acl.c, lib/acl.h: New files.
43660         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
43661
43662 2002-02-24  Jim Meyering  <meyering@lucent.com>
43663
43664         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
43665         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
43666         cause trouble.  Reported by Nelson Beebe.
43667
43668 2002-02-23  Paul Eggert  <eggert@twinsun.com>
43669
43670         * lib/path-concat.c (xpath_concat): Reorder code to pacify
43671         compilers that don't know that xalloc_die never returns.
43672
43673 2002-02-20  Jim Meyering  <meyering@lucent.com>
43674
43675         * lib/getdate.c: Regenerate using bison-1.33.
43676
43677 2002-02-17  Jim Meyering  <meyering@lucent.com>
43678
43679         * config/config.guess (main): Don't use `head -1'; it's no longer
43680         portable. Use `sed 1q' instead.
43681
43682 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
43683
43684         * m4/codeset.m4: Upgrade to gettext-0.11.
43685         * m4/gettext.m4: Upgrade to gettext-0.11.
43686         * m4/glibc21.m4: Upgrade to gettext-0.11.
43687         * m4/iconv.m4: Upgrade to gettext-0.11.
43688         * m4/isc-posix.m4: Upgrade to gettext-0.11.
43689         * m4/lcmessage.m4: Upgrade to gettext-0.11.
43690         * m4/lib-ld.m4: New file, from gettext-0.11.
43691         * m4/lib-link.m4: New file, from gettext-0.11.
43692         * m4/lib-prefix.m4: New file, from gettext-0.11.
43693         * m4/progtest.m4: Upgrade to gettext-0.11.
43694
43695 2002-02-15  Paul Eggert  <eggert@twinsun.com>
43696
43697         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
43698         (jm_PREREQ): Use it.
43699
43700 2002-02-15  Paul Eggert  <eggert@twinsun.com>
43701
43702         * lib/posixver.c, lib/posixver.h: New files.
43703         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
43704
43705 2002-02-02  Paul Eggert  <eggert@twinsun.com>
43706             Bruno Haible  <bruno@clisp.org>
43707
43708         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
43709         (fwrite_success_callback): New declaration.
43710         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
43711         print_unicode_char. Call failure callback instead of error.
43712         (fwrite_success_callback): New function.
43713         (exit_failure_callback): New function.
43714         (fallback_failure_callback): New function.
43715         (print_unicode_char): Call unicode_to_mb.
43716
43717 2002-01-26  Jim Meyering  <meyering@lucent.com>
43718
43719         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
43720         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
43721
43722 2002-01-26  Jim Meyering  <meyering@lucent.com>
43723
43724         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
43725
43726 2002-01-22  Paul Eggert  <eggert@twinsun.com>
43727
43728         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
43729
43730 2002-01-22  Jim Meyering  <meyering@lucent.com>
43731
43732         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
43733         Otherwise, some versions of automake would omit the rule that makes
43734         Makefile from Makefile.in.
43735
43736 2002-01-21  Paul Eggert  <eggert@twinsun.com>
43737
43738         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
43739         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
43740         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
43741         (memcoll): Set errno to zero if there is no error.
43742
43743         * lib/quotearg.c (quotearg_buffer_restyled):
43744         Fix bug with quoting buffers containing NUL when backslashing escapes.
43745         This bug was exposed by the other changes in this patch.
43746         (quotearg_n_options): New arg ARGSIZE.
43747         All callers changed.
43748         (quoting_options_from_style): New function.
43749         (quotearg_n_style): Use it.
43750         (quotearg_n_style_mem): New function.
43751
43752         * lib/quotearg.h (quotearg_n_style_mem): New function.
43753
43754 2002-01-19  Jim Meyering  <meyering@lucent.com>
43755
43756         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
43757         Remove useless quotes: DF_PROG="df".
43758         * m4/strnlen.m4: New file.
43759
43760 2002-01-16  Paul Eggert  <eggert@twinsun.com>
43761
43762         * lib/backupfile.c (ISDIGIT): Comment fix.
43763         * lib/getdate.y (ISDIGIT): Likewise.
43764         * lib/posixtm.c (ISDIGIT, year): Likewise.
43765         * lib/strverscmp.c (ISDIGIT): Likewise.
43766         * lib/userspec.c (ISDIGIT): Likewise.
43767
43768 2002-01-16  Jim Meyering  <meyering@lucent.com>
43769
43770         * lib/getdate.y: Add three semicolons, each just before a closing
43771         brace. Bison (as of version 1.31) no longer papers over that mistake.
43772
43773 2002-01-05  Jim Meyering  <meyering@lucent.com>
43774
43775         * lib/version-etc.c (version_etc_copyright): Update copyright year.
43776
43777 2001-12-19  Paul Eggert  <eggert@twinsun.com>
43778
43779         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
43780         not silently exit merely because the output buffer happens to
43781         have nothing pending.
43782
43783 2001-12-18  Paul Eggert  <eggert@twinsun.com>
43784
43785         See the big note in ../ChangeLog.
43786         * lib/human.c (suffixes): Prefer K to k for 1024.
43787         (generate_suffix_backwards): New function.
43788         (human_readable_inexact): Use it.
43789         * lib/xstrtol.c (__xstrtol): If there is no number but there
43790         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
43791         Accept 'K' as well as 'k'.
43792
43793 2001-12-15  Jim Meyering  <meyering@lucent.com>
43794
43795         * lib/regex.h (__restrict_arr): Update from libc.
43796
43797         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
43798         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
43799         (STREQ): Define.
43800
43801 2001-12-14  Jim Meyering  <meyering@lucent.com>
43802
43803         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
43804         Suggestion from Bruno Haible.
43805
43806 2001-12-10  Jim Meyering  <meyering@lucent.com>
43807
43808         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
43809         xrealloc, Instead, include "xalloc.h".
43810         (initbuffer): Don't cast xmalloc return value to char*.
43811         (readline): Reword comment.
43812         Don't cast xrealloc return value to char*
43813         Return NULL, not 0.
43814
43815 2001-12-09  Jim Meyering  <meyering@lucent.com>
43816
43817         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
43818         about `signed and unsigned type in conditional expression'.
43819         * lib/posixtm.c (posix_time_parse): Likewise.
43820
43821         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
43822
43823         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
43824         to avoid a pedantic warning.
43825
43826         * lib/getstr.c: Don't include assert.h.
43827         (getstr): Remove warning-evoking assertions.
43828         Return -1 if offset parameter is out of bounds.
43829         Change the type of a local from int to size_t.
43830
43831         * lib/strftime.c (my_strftime_localtime_r): Include this function
43832         definition in the `#if ! HAVE_TM_GMTOFF' block.
43833
43834         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
43835         Include xalloc.h instead.
43836
43837 2001-12-02  Jim Meyering  <meyering@lucent.com>
43838
43839         * lib/tempname.c: Don't declare getenv, thus reverting the change of
43840         2001-11-18.  It's no longer necessary, now that stdlib.h is always
43841         included.
43842
43843         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
43844         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
43845
43846 2001-11-30  Akim Demaille  <akim@epita.fr>
43847
43848         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
43849         before being defined.
43850
43851 2001-11-27  Paul Eggert  <eggert@twinsun.com>
43852
43853         * lib/quotearg.h (quotearg_n, quotearg_n_style):
43854         First arg is int, not unsigned.
43855         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
43856         (SIZE_MAX, UINT_MAX): New macros.
43857         (quotearg_n_options): Abort if N is negative.
43858         Avoid overflow check on hosts where size_t is 64 bits and int
43859         is 32 bits, as overflow is impossible there.
43860         Fix off-by-one typo that caused unnecessary reallocation.
43861
43862 2001-11-27  Jim Meyering  <meyering@lucent.com>
43863
43864         * lib/tempname.c: Merge with version from libc.
43865         * lib/regex.c: Likewise.
43866
43867         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
43868         systems for which STDC_HEADERS is 0, it was not included, resulting in
43869         a warning about an integer-to-pointer conversion problem with getenv.
43870         Reported by Volker Borchert.
43871
43872 2001-11-26  Jim Meyering  <meyering@lucent.com>
43873
43874         * lib/gtod.h: Remove file.
43875         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
43876         * lib/gettimeofday.c: Don't include gtod.h.
43877         (GTOD_init): Remove function.
43878         (rpl_gettimeofday): Do its job here instead, rather than aborting.
43879         Suggestion from Volker Borchert.
43880
43881 2001-11-23  Jim Meyering  <meyering@lucent.com>
43882
43883         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
43884         it.
43885         * lib/hash.c (struct hash_table): Define it here instead.
43886
43887 2001-11-22  Jim Meyering  <meyering@lucent.com>
43888
43889         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
43890
43891 2001-11-20  Jim Meyering  <meyering@lucent.com>
43892
43893         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
43894         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
43895
43896 2001-11-19  Jim Meyering  <meyering@lucent.com>
43897
43898         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
43899         directory.  Use "conftestXXXXXX" as the template.
43900         Suggestion from Paul Eggert.
43901
43902         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
43903         immediately, so the test doesn't mistakenly hit the max-open-files
43904         limit.
43905
43906 2001-11-18  Paul Eggert  <eggert@twinsun.com>
43907
43908         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
43909         (TEMPORARIES): New macro.
43910         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
43911         removes an artificial limitation (e.g. HP-UX 10.20, where
43912         TMP_MAX is 17576).
43913
43914 2001-11-18  Jim Meyering  <meyering@lucent.com>
43915
43916         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
43917
43918 2001-11-18  Jim Meyering  <meyering@lucent.com>
43919
43920         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
43921         on SunOS 4.
43922
43923         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
43924         files will be created before anything else.
43925
43926 2001-11-17  Paul Eggert  <eggert@twinsun.com>
43927
43928         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
43929         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
43930
43931 2001-11-17  Jim Meyering  <meyering@lucent.com>
43932
43933         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
43934         Prompted by a report from Bob Proulx.
43935
43936         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
43937         Instead, require UTILS_FUNC_MKSTEMP.
43938
43939 2001-11-17  Jim Meyering  <meyering@lucent.com>
43940
43941         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
43942         Now, that's done as part of AC_FUNC_STRTOD.
43943
43944 2001-11-17  Jim Meyering  <meyering@lucent.com>
43945
43946         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
43947         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
43948         rather than group writable.  Patch by Juan F. Codagnone.
43949
43950         * lib/readtokens.c: Remove explicit declarations of xmalloc and
43951         xrealloc, Instead, include "xalloc.h".
43952
43953         * lib/mountlist.c: Include unlocked-io.h after all system headers.
43954         Remove explicit declarations of xmalloc, xrealloc,
43955         and xstrdup.  Instead, include "xalloc.h".
43956
43957         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
43958         unlocked-io.h.
43959         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
43960         Likewise.
43961         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
43962
43963         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
43964         Reported by Padraig Brady.
43965
43966         * lib/mkstemp.c: #undef mkstemp.
43967         Include config.h.
43968         (rpl_mkstemp): Rename from mkstemp.
43969         Protoize.
43970
43971 2001-11-16  Jim Meyering  <meyering@lucent.com>
43972
43973         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
43974         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
43975         determine the amount of total physical memory, use pstat_getstatic.
43976         HPUX-11 doesn't define _SC_PHYS_PAGES.
43977         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
43978         If sysconf couldn't be used to determine the amount of available
43979         physical memory, use both pstat_getstatic and pstat_getdynamic.
43980         Based on a patch from Bob Proulx.
43981
43982 2001-11-10  Jim Meyering  <meyering@lucent.com>
43983
43984         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
43985         (jm_PREREQ): Use it.
43986
43987 2001-11-09  Jim Meyering  <meyering@lucent.com>
43988
43989         * m4/jm-macros.m4: Require autoconf-2.52f.
43990         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
43991         Use these AC_-prefixed names, not the AM_-prefixed ones.
43992
43993         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
43994
43995 2001-11-05  Jim Meyering  <meyering@lucent.com>
43996
43997         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
43998
43999 2001-11-04  Jim Meyering  <meyering@lucent.com>
44000
44001         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
44002         $DEFS.
44003
44004 2001-11-03  Jim Meyering  <meyering@lucent.com>
44005
44006         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
44007         of AC_DEFUN.
44008
44009         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
44010         know the name of the variable in the macro definition.
44011
44012 2001-11-03  Jim Meyering  <meyering@lucent.com>
44013
44014         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
44015         in argmatch_to_argument call.
44016
44017         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
44018         argument.
44019
44020         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
44021         e.g., a fault due to an attempt to free a NULL pointer.
44022
44023 2001-11-01  Jim Meyering  <meyering@lucent.com>
44024
44025         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
44026         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
44027
44028 2001-11-01  Jim Meyering  <meyering@lucent.com>
44029
44030         * lib/dirfd.c, lib/dirfd.h: New files.
44031         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
44032
44033         * lib/hash.c (hash_print) [TESTING]: Clean up.
44034
44035 2001-10-22  Paul Eggert  <eggert@twinsun.com>
44036
44037         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
44038         to avoid a warning if -Wall.
44039
44040 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
44041
44042         * README: New file
44043         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
44044         (per RMS's instructions, this is now the canonical source)
44045         * lgpl/, gpl/: New directories.
44046
44047 2001-10-21  Paul Eggert  <eggert@twinsun.com>
44048
44049         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
44050
44051 2001-10-21  Jim Meyering  <meyering@lucent.com>
44052
44053         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
44054         this code would end up calling gettext even in packages built
44055         with --disable-nls.
44056         * lib/getopt.c (_): Likewise.
44057         * lib/regex.c (_): Likewise.
44058
44059 2001-10-20  Paul Eggert  <eggert@twinsun.com>
44060
44061         * m4/error.m4 (jm_PREREQ_ERROR):
44062         Do not invoke AC_CHECK_FUNCS with strerror_r, as
44063         AC_FUNC_STRERROR_R does that.
44064         Check for strerror declaration.
44065
44066         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
44067         are supposed to have them these days.
44068         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
44069         Merge changes from latest Autoconf CVS.
44070         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
44071         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
44072         POSIX decided to standardize on the int flavor of strerror_r.
44073
44074 2001-10-20  Paul Eggert  <eggert@twinsun.com>
44075
44076         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
44077         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
44078         Use strerror_r that is only a macro, even if it is not a function.
44079         (strerror): Check for HAVE_DECL_STRERROR before declaring.
44080         (private_strerror): Use prototypes, not old-style function definition.
44081         (print_errno_message): New function.
44082         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
44083         char*-flavored one.
44084         (error_tail, error, error_at_line): Use it.
44085
44086 2001-10-11  Jim Meyering  <meyering@lucent.com>
44087
44088         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
44089         and quote_n (1, ... to avoid clobbering a buffer.
44090
44091 2001-10-05  Jim Meyering  <meyering@lucent.com>
44092
44093         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
44094         hash-pjw.h.
44095         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
44096         * lib/hash-pjw.h: New file.
44097
44098 2001-09-30  Jim Meyering  <meyering@lucent.com>
44099
44100         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
44101         `struct fsstat' has the `f_fstypename' member.
44102         Use that to define FS_TYPE, which is now used to make
44103         the getfsstat link test tighter.
44104
44105 2001-09-30  Jim Meyering  <meyering@lucent.com>
44106
44107         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
44108         Include <sys/ucred.h>, for Apple Darwin.
44109         Include sys/mount.h and sys/fs_types.h only if available.
44110         (FS_TYPE): Define.
44111         (read_filesystem_list): Use FS_TYPE.
44112
44113 2001-09-29  Paul Eggert  <eggert@twinsun.com>
44114
44115         * lib/exclude.c (excluded_filename): 0 -> false, since it's
44116         a boolean context.
44117
44118 2001-09-29  Jim Meyering  <meyering@lucent.com>
44119
44120         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
44121         [one-argument getmntent function]): Include stdio.h before mntent.h.
44122         SunOS 4.1.x needs it for the declaration of `FILE'.
44123         Patch by Volker Borchert.
44124
44125         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
44126         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
44127         sys/fs_types.h, and make the link-test for getfsstat guard #include
44128         directives with appropriate #if HAVE_*_H tests so that we can
44129         detect getfsstat on Apple Darwin1.3.7 systems.
44130         Reported by Nelson Beebe.
44131         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
44132
44133 2001-09-28  Paul Eggert  <eggert@twinsun.com>
44134
44135         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
44136         #defines strtoimax.  Also treat the other strto* functions
44137         like strtoimax.
44138
44139         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
44140         Check for strtoul and strtoumax,
44141         as those declarations are made even in the signed case.
44142         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
44143         Likewise, for strtol and strtoimax.
44144
44145 2001-09-28  Paul Eggert  <eggert@twinsun.com>
44146
44147         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
44148         #defines strtoimax.  Also treat the other strto* functions
44149         like strtoimax.
44150
44151         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
44152         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
44153         (strtoimax, strtoumax): Do not declare if already defined as a macro.
44154
44155 2001-09-26  Jim Meyering  <meyering@lucent.com>
44156
44157         Most macros in unlocked-io.h had the wrong number of arguments.
44158         * lib/gen-uio: New script.
44159         (USE_UNLOCKED_IO): Define to 1 if not already defined.
44160         * lib/unlocked-io.hin: Remove file.
44161         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
44162         rather than trying to embed it here.
44163         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
44164         Reported by Padraig Brady.
44165
44166 2001-09-25  Volker Borchert  <bt@teknon.de>
44167
44168         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
44169         `result'.
44170
44171 2001-09-24  Jim Meyering  <meyering@lucent.com>
44172
44173         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
44174
44175 2001-09-23  Jim Meyering  <meyering@lucent.com>
44176
44177         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
44178         instead of the mere test for existence of mntent.h.  The latter
44179         would get a false-positive on AIX 3.4 systems.
44180         In the outer getmntent if-block, don't die if neither of the getmntent
44181         tests succeeds.  Instead, just fall through and continue with the
44182         remaining tests.
44183
44184 2001-09-23  Jim Meyering  <meyering@lucent.com>
44185
44186         * lib/mountlist.c: Remove useless parentheses in #if directives.
44187         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
44188         the deprecated MOUNTED symbol is no longer defined in mntent.h.
44189
44190 2001-09-22  Jim Meyering  <meyering@lucent.com>
44191
44192         * m4/gettext.m4: New file.  From gettext.
44193         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
44194         * m4/progtest.m4: Likewise
44195         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
44196         * m4/glibc21.m4: Likewise.
44197
44198         * m4/libintl.m4: Remove.  No longer used.
44199
44200 2001-09-22  Jim Meyering  <meyering@lucent.com>
44201
44202         * lib/localcharset.c: Update from latest gettext.
44203         * lib/config.charset: Likewise.
44204
44205 2001-09-20  Jim Meyering  <meyering@lucent.com>
44206
44207         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
44208         strtoimax.
44209         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
44210         strtoumax.
44211
44212 2001-09-20  Jim Meyering  <meyering@lucent.com>
44213
44214         * lib/xstrtol.c (strtoimax): Guard declaration with
44215         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
44216         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
44217         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
44218         (strtoumax): Likewise, for completeness (it wasn't necessary).
44219
44220 2001-09-17  Paul Eggert  <eggert@twinsun.com>
44221
44222         * lib/strtoimax.c (HAVE_LONG_LONG):
44223         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
44224         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
44225         to work around bug in IBM C compiler.
44226
44227 2001-09-17  Jim Meyering  <meyering@lucent.com>
44228
44229         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
44230         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
44231         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
44232         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
44233         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
44234         whenever the right hand side need not be expanded by the shell.
44235
44236 2001-09-16  Paul Eggert  <eggert@twinsun.com>
44237
44238         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
44239         library.  It's not correct, as some older glibcs are buggy.
44240         fnmatch wasn't fixed until glibc 2.2.
44241
44242         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
44243         special shell magic here.
44244
44245 2001-09-16  Jim Meyering  <meyering@lucent.com>
44246
44247         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
44248         * m4/jm-macros.m4: Require it.
44249
44250 2001-09-16  Jim Meyering  <meyering@lucent.com>
44251
44252         * lib/mkdir.c: New file.
44253
44254 2001-09-15  Jim Meyering  <meyering@lucent.com>
44255
44256         * m4/jm-macros.m4: Check for help2man.
44257
44258 2001-09-11  Jim Meyering  <meyering@lucent.com>
44259
44260         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
44261         The body, by Paul Eggert, was moved here from configure.in.
44262         * m4/jm-macros.m4: Require UTILS_HOST_OS.
44263
44264 2001-09-04  Paul Eggert  <eggert@twinsun.com>
44265
44266         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
44267         (jm_PREREQ): Use it.
44268
44269 2001-09-04  Paul Eggert  <eggert@twinsun.com>
44270
44271         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
44272         Use ssize_t, not int, to store result of readlink.
44273         Check for ssize_t overflow as well as size_t overflow,
44274         as POSIX says the result of readlink is implementation-defined
44275         when ssize_t overflows.
44276         Remove unnecessary cast to char*.
44277         Use free+malloc instead of realloc, as the storage doesn't need
44278         to be preserved and it's clearer and can be more efficient that way.
44279         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
44280         * lib/xreadlink.h (xreadlink): Update prototype.
44281
44282 2001-09-04  Paul Eggert  <eggert@twinsun.com>
44283
44284         * lib/xgetcwd.c: Revert some of the previous change; intead,
44285         fix the HAVE_GETCWD_NULL code to behave more like the
44286         !HAVE_GETCWD_NULL code used to.
44287
44288         Include "xalloc.h".
44289         (xgetcwd): Do not return NULL when memory is exhausted; instead,
44290         invoke xalloc_die.
44291
44292 2001-09-03  Paul Eggert  <eggert@twinsun.com>
44293
44294         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
44295         sys/param.h, as pathmax.h includes them.
44296
44297 2001-09-03  Paul Eggert  <eggert@twinsun.com>
44298
44299         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
44300         (jm_PREREQ_XGETCWD): New macro.
44301
44302         * m4/getcwd.m4: New file.
44303
44304 2001-09-03  Paul Eggert  <eggert@twinsun.com>
44305
44306         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
44307         like the HAVE_GETCWD_NULL code.
44308         Include pathmax.h if not HAVE_GETCWD.
44309         Do not include xalloc.h.
44310         (INITIAL_BUFFER_SIZE): New symbol.
44311         Do not use xmalloc / xrealloc, since the caller is responsible for
44312         handling errors.  Preserve errno around `free' during failure.
44313         Do not overrun buffer when using getwd.
44314
44315 2001-09-03  Paul Eggert  <eggert@twinsun.com>
44316
44317         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
44318         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
44319         getcwd (NULL, 0).
44320
44321 2001-09-03  Paul Eggert  <eggert@twinsun.com>
44322
44323         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
44324         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
44325         spotted by Jim Meyering.
44326
44327 2001-09-03  Jim Meyering  <meyering@lucent.com>
44328
44329         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
44330         failure.
44331
44332 2001-09-02  Jim Meyering  <meyering@lucent.com>
44333
44334         * lib/error.c: Update from GNU libc.
44335
44336 2001-09-01  Jim Meyering  <meyering@lucent.com>
44337
44338         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
44339         Used by df.
44340
44341 2001-09-01  Jim Meyering  <meyering@lucent.com>
44342
44343         * lib/xreadlink.c: New file.
44344         * lib/xreadlink.h: New file.
44345         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
44346         xreadlink.h.
44347
44348         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
44349         doesn't conflict with sparc Solaris 7's definition in
44350         /usr/include/sys/int_types.h.
44351
44352         * lib/exclude.c: Use `""', not `<>' to #include non-system header
44353         files.
44354         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
44355         and strncasecmp as r-values.  Unixware didn't have declarations.
44356
44357 2001-08-31  Paul Eggert  <eggert@twinsun.com>
44358
44359         * lib/xstrtol.h: Add copyright notice.
44360         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
44361         LONGINT_INVALID_SUFFIX_CHAR.
44362
44363 2001-08-31  Paul Eggert  <eggert@twinsun.com>
44364
44365         * lib/xstrtol.c (strtoimax): New decl.
44366
44367 2001-08-31  Paul Eggert  <eggert@twinsun.com>
44368
44369         * lib/xgetcwd.c: Don't include pathmax.h.
44370         Include stdlib.h and unistd.h if available.
44371         Include xalloc.h.
44372         (xmalloc, xstrdup, free): Remove decls.
44373         (xgetcwd): Don't assume sizes fit in unsigned.
44374         Check for overflow when computing sizes.
44375         Simplify reallocation code.
44376
44377 2001-08-31  Paul Eggert  <eggert@twinsun.com>
44378
44379         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
44380         a directory's st_size can have an arbitrary value, so the old
44381         usage could waste an arbitrary amount of memory.  All uses
44382         changed.
44383         * lib/savedir.h: Update prototype.
44384
44385 2001-08-31  Paul Eggert  <eggert@twinsun.com>
44386
44387         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
44388
44389         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
44390         old strtoimax.c.
44391
44392         Also, make the following further changes to make this file's
44393         configuration more similar to that of strtol.c:
44394         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
44395         (strtoumax, uintmax_t, strtoull, strtol): Remove.
44396         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
44397         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
44398         changed to signed values.
44399
44400         And make the following changes as well:
44401         Fix copyright notice, as 1999 was missing.
44402         (verify): New macro.
44403         (strtoimax): Check sizes at compile-time, not run-time.
44404         Prefer strtol to strtoll if both work.
44405         (main): Remove; it was not that useful and was a pain to maintain.
44406
44407         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
44408
44409 2001-08-31  Jim Meyering  <meyering@lucent.com>
44410
44411         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
44412         Use an initial, malloc'd, buffer of length 128 rather than
44413         a statically allocated one of length 1024.
44414
44415 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44416
44417         Simplify code, partly by assuming autoconf 2.52 semantics.
44418
44419         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
44420
44421         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
44422         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
44423         All uses removed.
44424         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
44425         Move AC_REQUIRE to next-to-top level, to avoid confusion.
44426         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
44427         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
44428         jm_AC_HEADER_INTTYPES_H.
44429         * m4/jm-macros.m4 (jm_MACROS): Likewise.
44430
44431         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
44432
44433         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
44434         Quote first arg of AC_DEFUN.
44435         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
44436         since they are needed to parse the include file even if we need
44437         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
44438         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
44439         but with opposite signedness.
44440
44441 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44442
44443         Merge 'exclude' changes from tar 1.13.22.
44444         This fixes one or two unlikely storage allocation overflow bugs,
44445         but doesn't change user-visible behavior otherwise.
44446
44447 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44448
44449         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
44450         (jm_PREREQ_EXCLUDE): New macro.
44451
44452 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44453
44454         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
44455         tm to be declared.
44456
44457 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44458
44459         * lib/hash.c: Remove '2001' from copyright notice.
44460
44461 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44462
44463         * lib/full-write.h: New file.
44464         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
44465         * lib/full-write.c: Correct credits, as cccp.c no longer
44466         exists and anyway it was so heavily changed from the old cccp
44467         code as to be unrecognizable.  Include full-write.h.
44468         (full_write) Return size_t, with short writes meaning failure.
44469         All callers changed.  This fixes a bug with large buffers
44470         on 64-bit hosts.
44471         * lib/utime.c: Include full-write.h.
44472
44473 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44474
44475         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
44476         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
44477         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
44478         Include if available.
44479         (<xalloc.h>): Include
44480         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
44481         (verify): New macro.  Use it to verify that EXCLUDE macros do not
44482         collide with FNM macros.
44483         (struct patopts): New struct.
44484         (struct exclude): Use it, as exclude patterns now come with options.
44485         (new_exclude): Support above changes.
44486         (new_exclude, add_exclude_file):
44487         Initial size must now be a power of two to simplify overflow checking.
44488         (free_exclude, fnmatch_no_wildcards): New function.
44489         (excluded_filename): No longer requires options arg, as the options
44490         are determined by add_exclude.  Now returns bool, not int.
44491         (excluded_filename, add_exclude):
44492         Add support for the fancy new exclusion options.
44493         (add_exclude, add_exclude_file): Now takes int options arg.
44494         Check for arithmetic overflow when computing sizes.
44495         (add_exclude_file): xrealloc might modify errno, so don't
44496         realloc until after errno might be used.
44497
44498         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
44499         New macros.
44500         (free_exclude): New decl.
44501         (add_exclude, add_exclude_file): Now takes int options arg.
44502         (excluded_filename): No longer requires options arg, as the options
44503         are determined by add_exclude.  Now returns bool, not int.
44504
44505 2001-08-30  Paul Eggert  <eggert@twinsun.com>
44506
44507         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
44508
44509 2001-08-27  Jim Meyering  <meyering@lucent.com>
44510
44511         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
44512
44513         * lib/version-etc.c (N_): Remove definition.
44514         Revert most of last change.
44515         Instead, simply don't mark the `Copyright...' string for translation.
44516         Based on advice from Paul Eggert.
44517
44518         * lib/strtoxmax.c: Tweak comment.
44519
44520 2001-08-26  Jim Meyering  <meyering@lucent.com>
44521
44522         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
44523
44524         * m4/xstrtoimax.m4: New file.
44525         * m4/xstrtoumax.m4: Add comments explaining why we
44526         AC_REPLACE_FUNCS(strtol).
44527
44528 2001-08-26  Jim Meyering  <meyering@lucent.com>
44529
44530         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
44531         of copyright with `%s' so translators don't get an untranslated
44532         message in 2002.
44533         (COPYRIGHT_YEAR): Define.
44534         (version_etc): Use fprintf rather than fputs.
44535         Suggestion from Ulrich Drepper.
44536
44537         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
44538
44539         * lib/strtoll.c: New file, from GNU libc.
44540         * lib/xstrtoimax.c: New file.
44541
44542         * lib/xstrtol.h: Add xstrtoimax.
44543         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
44544         * lib/strtoimax.c: New file.  Likewise, but first define
44545         STRTOUXMAX_SIGNED.
44546
44547         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
44548         ...
44549         * lib/strtoxmax.c: ... then renamed to this.
44550
44551 2001-08-18  Paul Eggert  <eggert@twinsun.com>
44552
44553         * m4/inttypes.m4: Add AC_PREREQ(2.13).
44554         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
44555         (jm_AC_TYPE_INTMAX_T): New macro.
44556         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
44557
44558         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
44559
44560         * m4/longlong.m4: Renamed from ulonglong.m4.
44561         * m4/inttypes.m4: Renamed from inttypes_h.m4.
44562         * m4/uintmax_t.m4: Removed.
44563
44564 2001-08-13  Paul Eggert  <eggert@twinsun.com>
44565
44566         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
44567         Port to Solaris 8, where 'sed' requires a space after the 'r'
44568         command, and where sh dislikes "$/".  Clean up the spacing a bit.
44569         Redirect output to $tmp just once.
44570
44571 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
44572
44573         * lib/addext.c (<errno.h>): Include.
44574         (errno): Declare if not defined.
44575         (addext): Work correctly when pathconf returns -1 and leaves
44576         errno alone because there is no limit.  Also, work even if
44577         pathconf returns a value greater than SIZE_MAX.
44578
44579 2001-08-12  Jim Meyering  <meyering@lucent.com>
44580
44581         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
44582         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
44583         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
44584         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
44585         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
44586         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
44587         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
44588         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
44589         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
44590         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
44591         utime.m4, utimes.m4, xstrtoumax.m4:
44592         Quote the first argument in each use of AC_DEFUN.
44593
44594 2001-08-12  Jim Meyering  <meyering@lucent.com>
44595
44596         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
44597         Simply `return getcwd (NULL, 0);'.
44598         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
44599         Use 1300 as initial value for length, not PATH_MAX.
44600
44601         * lib/pathmax.h: Clean up cpp syntax.
44602
44603 2001-08-12  Jim Meyering  <meyering@lucent.com>
44604
44605         * lib/gettimeofday.c: New file.
44606         * lib/gtod.h: New file.
44607         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
44608
44609 2001-08-05  Jim Meyering  <meyering@lucent.com>
44610
44611         * m4/jm-macros.m4: Require autoconf-2.52.
44612
44613 2001-08-04  Jim Meyering  <meyering@lucent.com>
44614
44615         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
44616         stmt, to get in sync with glibc.
44617
44618 2001-08-03  Paul Eggert  <eggert@twinsun.com>
44619
44620         The following changes are from gettext 0.10.39 as maintained by
44621         Bruno Haible.
44622
44623         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
44624         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
44625         with inverted sense.  All uses changed.
44626
44627         * lib/mbswidth.c: Don't include <limits.h>.
44628         Include <stdlib.h> and <string.h> unconditionally.
44629         (iswcntrl, mbsinit, ISCNTRL): New macros.
44630         (mbsnwidth): Use K&R style function declarations.
44631         Don't bother checking for MB_LEN_MAX == 1, since the compiler
44632         can optimize it when MB_CUR_MAX == 1.
44633         The width of control characters is zero, not 1.
44634
44635 2001-08-03  Paul Eggert  <eggert@twinsun.com>
44636
44637         The following changes are from gettext 0.10.39 as maintained by
44638         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
44639
44640         * m4/codeset.m4: Upgrade to serial AM1.
44641         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
44642         all uses changed.  Quote first arg of AC_DEFUN.
44643         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
44644
44645         * m4/iconv.m4: Upgrade to serial AM2.
44646         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
44647         Add --with-libconv-prefix.
44648         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
44649         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
44650         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
44651         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
44652         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
44653
44654         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
44655         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
44656         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
44657         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
44658         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
44659         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
44660         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
44661         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
44662         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
44663
44664         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
44665         string.h any more.
44666
44667         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
44668         not the default value.
44669
44670         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
44671         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
44672         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
44673         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
44674         Also check for iswcntrl, used for wcwidth fallback.
44675         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
44676         to Autoconf 2.13.
44677
44678 2001-08-03  Jim Meyering  <meyering@lucent.com>
44679
44680         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
44681         as it was in the original.  Reported by Paul Eggert.
44682
44683 2001-07-16  Jim Meyering  <meyering@lucent.com>
44684
44685         * m4/gettimeofday.m4: New file.
44686         Prompted by a report from Bernhard Baehr.
44687
44688 2001-07-15  Jim Meyering  <meyering@lucent.com>
44689
44690         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
44691         stuff. Now it's in ../Makefile.cfg.
44692
44693 2001-07-15  Jim Meyering  <meyering@lucent.com>
44694
44695         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
44696         (BUILT_SOURCES): Add unlocked-io.h.
44697         (io_functions): Define.
44698         (unlocked-io.h): New rule.
44699         (DISTCLEANFILES): Add unlocked-io.h.
44700         (all-local): Depend on unlocked-io.h, to ensure it is created.
44701
44702         * lib/unlocked-io.hin: New file
44703
44704         * lib/regex.c: Update from glibc.
44705
44706 2001-07-05  Jim Meyering  <meyering@lucent.com>
44707
44708         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
44709         recommendation.
44710         (libfetish_a_SOURCES): Put all .h files here instead.
44711         Remove a thus-exposed (better checks in automake) duplicate and
44712         two unnecessary .h files.
44713
44714 2001-07-04  Jim Meyering  <meyering@lucent.com>
44715
44716         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
44717         that generates jm-glibc-io.m4 so that it doesn't trigger any make
44718         distcheck failure.
44719
44720 2001-07-02  Jim Meyering  <meyering@lucent.com>
44721
44722         The following changes were prompted by suggestions from Bruno Haible.
44723
44724         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
44725         is now generated.
44726         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
44727         definition of EXTRA_DIST.
44728         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
44729         ensure that the generated file is created/updated whenever the list
44730         of $(unlocked_functions) is changed.
44731         (jm-glibc-io.m4): New rule.
44732         (unlocked-io.h): New rule -- currently unused.
44733
44734 2001-06-24  Jim Meyering  <meyering@lucent.com>
44735
44736         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
44737         unmatched right bracket, rather than kludging it with an extra,
44738         falsely-matching quote in a comment.  Patch by Akim Demaille.
44739
44740 2001-06-11  Jim Meyering  <meyering@lucent.com>
44741
44742         * lib/regex.c: Update from GNU libc.
44743
44744 2001-05-27  Jim Meyering  <meyering@lucent.com>
44745
44746         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
44747         Check for ut_type in struct utmp.
44748
44749 2001-05-27  Jim Meyering  <meyering@lucent.com>
44750
44751         * lib/readutmp.h (UT_TYPE): Define.
44752
44753 2001-05-24  Jim Meyering  <meyering@lucent.com>
44754
44755         * lib/argmatch.c: Include "quote.h".
44756         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
44757         quote function.  Reported by Göran Uddeborg.
44758
44759 2001-05-22  Jim Meyering  <meyering@lucent.com>
44760
44761         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
44762         now that we use the package-supplied version unconditionally.
44763         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
44764
44765 2001-05-21  Jim Meyering  <meyering@lucent.com>
44766
44767         * m4/regex.m4: Change a couple backticks to single quotes to avoid
44768         shell syntax errors.
44769
44770 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
44771
44772         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
44773
44774 2001-05-20  Paul Eggert  <eggert@twinsun.com>
44775
44776         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
44777         Don't bother to check library strftime, since
44778         we'll be using our own my_strftime function anyway.
44779         Define my_strftime instead of strftime.
44780
44781 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
44782
44783         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
44784         which is not yet declared.
44785
44786 2001-05-15  Jim Meyering  <meyering@lucent.com>
44787
44788         * m4/regex.m4: Use proper quoting so brackets appear in the test
44789         program.
44790         Reported by, and with help from, Bruno Haible.
44791
44792 2001-05-13  Jim Meyering  <meyering@lucent.com>
44793
44794         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
44795         undefined.
44796
44797 2001-05-11  Paul Eggert  <eggert@twinsun.com>
44798
44799         dirname code cleanup.  base_name now behaves more compatibly
44800         with POSIX basename when given file names that have trailing
44801         slashes, and similarly for dir_name.  Add new primitives
44802         base_len and dir_len.  Put the directory-name-related decls
44803         into dirname.h.
44804
44805         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
44806         * lib/backupfile.c (base_name): Likewise.
44807         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
44808         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
44809         * lib/makepath.c (strip_trailing_slashes): Likewise.
44810         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
44811         ISSLASH): Likewise.
44812         * lib/rename.c (strip_trailing_slashes): Likewise.
44813         * lib/same.c (base_name): Likewise.
44814         * lib/stripslash.c (ISSLASH): Likewise.
44815
44816         * lib/addext.c: Include <dirname.h> after size_t is defined.
44817         * lib/backupfile.c: Likewise.
44818
44819         * lib/addext.c (addext): Use base_len to trim redundant
44820         trailing slashes instead of doing it ourselves.
44821         But do not trim the last slash if it is not redundant.
44822
44823         * lib/backupfile.c (find_backup_file_name,
44824         max_backup_version): Use base_len instead of rolling it ourselves.
44825         Handle the case of "" and (on DOS) "C:" correctly.
44826
44827         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
44828         needed. Include <string.h>, <dirname.h>.
44829         (base_name): Allow file names ending in slashes, other than names
44830         that are all slashes.  In this case, return the basename followed
44831         by the slashes.  This is more general, and can be used in places
44832         where the original base_name purposely had an assertion failure.
44833         (base_len): New function.
44834
44835         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
44836         Do not include <assert.h>; no longer needed.
44837         Include xalloc.h.
44838         (memrchr): Remove decl.
44839         (dir_name_r): Remove.
44840         (dir_len): Renamed from dirlen.  All callers changed.
44841         Rewrite in terms of base_name, for simplicity and consistency.
44842         (dir_name): Never return NULL.  All callers changed.
44843         Do not include <stdlib.h> in test program; no longer needed.
44844         return 0; is fine for test program.
44845
44846         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
44847         New macros.
44848         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
44849
44850         * lib/path-concat.c (path_concat): Use base_len to compute
44851         base length, not strlen; this means we cannot rely on memcpy
44852         to null-terminate.
44853
44854         * lib/same.c (STREQ): Remove.
44855         (same_name): Handle the case where the basename ends in trailing '/'.
44856
44857         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
44858         a slash was stripped.  Do not strip the last slash after a
44859         file system prefix.
44860
44861 2001-05-11  Paul Eggert  <eggert@twinsun.com>
44862
44863         * lib/Makefile.am (libfetish_a_SOURCES):
44864         Add strftime.c, since we now compile it on all hosts.
44865
44866         * lib/strftime.c (my_strftime):
44867         Define to nstrftime if emacs, but only if my_strftime is not defined.
44868         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
44869         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
44870         Add one more extra argument: a nanoseconds value.
44871         All uses changed.
44872         (ns): New macro.
44873         (my_strftime function): Add %N format.
44874         (emacs_strftimeu): Renamed from emacs_strftime,
44875         with extra ut argument.
44876
44877 2001-05-09  Paul Eggert  <eggert@twinsun.com>
44878
44879         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
44880
44881 2001-04-21  Jim Meyering  <meyering@lucent.com>
44882
44883         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
44884         doesn't interfere.
44885
44886 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
44887
44888         * m4/ftruncate.m4: Check for chsize.
44889         Link with ftruncate.o unconditionally if ftruncate is missing.
44890         This was required when cross-compiling to i586-mingw32msvc.
44891
44892 2001-04-08  Jim Meyering  <meyering@lucent.com>
44893
44894         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
44895         recomputed; that's necessary when the offset spans a DST transition.
44896         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
44897
44898 2001-04-02  Jim Meyering  <meyering@lucent.com>
44899
44900         * lib/regex.h, regex.c: Update from GNU libc.
44901
44902 2001-03-24  Jim Meyering  <meyering@lucent.com>
44903
44904         * m4/jm-macros.m4: Require autoconf-2.49d.
44905
44906 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
44907
44908         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
44909
44910 2001-03-19  Paul Eggert  <eggert@twinsun.com>
44911
44912         * lib/version-etc.c (version_etc_copyright): Update to 2001.
44913
44914 2001-03-17  Jim Meyering  <meyering@lucent.com>
44915
44916         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
44917         now that the version in autoconf is equivalent.
44918         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
44919
44920         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
44921         Suggestion from Akim Demaille.
44922
44923         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
44924         (jm_PREREQ_TEMPNAME): New function.
44925
44926 2001-03-16  Paul Eggert  <eggert@twinsun.com>
44927
44928         * lib/tempname.c (uint64_t): Define to uintmax_t if
44929         not defined, and if UINT64_MAX is not defined.
44930         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
44931         Reported by John David Anglin.
44932
44933 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
44934
44935         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
44936         resolve alias if codeset is empty.
44937         * lib/config.charset (BeOS): Use wildcard syntax.
44938
44939 2001-03-13  Jim Meyering  <meyering@lucent.com>
44940
44941         * lib/path-concat.c (path_concat)
44942         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
44943         concatenating e.g., `C:' and `foo'.
44944         From Bruno Haible.
44945
44946 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
44947
44948         * lib/localcharset.c (locale_charset): Don't use
44949         setlocale(LC_CTYPE,NULL). Don't return NULL.
44950         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
44951
44952 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
44953
44954         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
44955         support for DOS/DJGPP.
44956
44957 2001-03-01  Paul Eggert  <eggert@twinsun.com>
44958
44959         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
44960         lacks mkstemp.  Compile our own tempname.c if we compile our own
44961         mkstemp.c, as mkstemp relies on tempname.
44962
44963 2001-03-01  Jim Meyering  <meyering@lucent.com>
44964
44965         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
44966         AH_VERBATIM really does output its argument verbatim.
44967
44968 2001-02-28  Paul Eggert  <eggert@twinsun.com>
44969
44970         * lib/Makefile.am (libfetish_a_SOURCES):
44971         Add dup-safer.c, fopen-safer.c.
44972         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
44973
44974         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
44975         * lib/unistd-safer.h: New files.
44976
44977 2001-02-25  Paul Eggert  <eggert@twinsun.com>
44978
44979         The mkstemp replacement is taken from glibc 2.2.2, with some
44980         portability fixes for use outside glibc, as follows:
44981
44982         * lib/tempname.c (struct_stat64): New macro.
44983         (direxists, __gen_tempname): Use it.
44984         This avoids a portability problem with Solaris 8.
44985
44986         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
44987         (<stddef.h>, <stdint.h>, <string.h>):
44988         Include only if STDC_HEADERS || _LIBC.
44989         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
44990         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
44991         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
44992         (__set_errno): Define this macro if <errno.h> doesn't.
44993         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
44994         Define these macros if <stdio.h> doesn't.
44995         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
44996         Define these macros if <sys/stat.h>
44997         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
44998         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
44999         __xstat64): Define if not _LIBC.
45000         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
45001         (__gen_tempname): Invoke gettimeofday only if
45002         HAVE_GETTIMEOFDAY || _LIBC;
45003         otherwise, fall back on plain "time".
45004         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
45005
45006         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
45007
45008         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
45009
45010 2001-02-18  Paul Eggert  <eggert@twinsun.com>
45011
45012         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
45013
45014 2001-02-17  Paul Eggert  <eggert@twinsun.com>
45015
45016         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
45017         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
45018         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
45019         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
45020
45021 2001-02-17  Paul Eggert  <eggert@twinsun.com>
45022
45023         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
45024         Remove workaround macros for hosts that have mbrtowc but not
45025         mbstate_t, as we now insist on proper declarations for both
45026         before using mbrtowc.
45027
45028 2001-02-17  Jim Meyering  <meyering@lucent.com>
45029
45030         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
45031         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
45032         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
45033         UnixWare 7.1.1.
45034
45035         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
45036         rather than AC_CACHE_VAL.
45037
45038 2001-02-17  Jim Meyering  <meyering@lucent.com>
45039
45040         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
45041         around included file name.
45042
45043         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
45044
45045         * lib/strftime.c: Update from GNU libc (the only changes were to
45046         comments).
45047
45048 2001-02-17  Jim Meyering  <meyering@lucent.com>
45049
45050         * lib/regex.c: Update from libc.
45051
45052 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
45053
45054         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
45055         clash.
45056
45057 2001-02-16  Paul Eggert  <eggert@twinsun.com>
45058
45059         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
45060         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
45061         Reported by Mark Hounschell via Paul Eggert.
45062
45063 2001-02-07  Jim Meyering  <meyering@lucent.com>
45064
45065         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
45066
45067 2001-02-05  Jim Meyering  <meyering@lucent.com>
45068
45069         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
45070         it includes the patch required for `large file' support with at least
45071         HP-UX's 10.20 /bin/cc.
45072
45073 2001-02-03  Jim Meyering  <meyering@lucent.com>
45074
45075         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
45076         AS_IF, now that it works once again (mysteriously).
45077         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
45078
45079 2001-01-30  Jim Meyering  <meyering@lucent.com>
45080
45081         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
45082         * m4/chown.m4: Rename conftestchown to conftest.chown.
45083         * m4/rename.m4: s/conftestdir/conftest.d1/ and
45084         s/conftestdir2/conftest.d2/.
45085         * m4/utimes.m4: s/conftestdata/conftest.data/
45086         Inspired by Pavel Roskin's change in autoconf.
45087
45088 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
45089
45090         * lib/config.charset: Update for FreeBSD 4.2.
45091
45092 2001-01-27  Jim Meyering  <meyering@lucent.com>
45093
45094         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
45095         a use of AS_IF.
45096         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
45097
45098 2001-01-26  Jim Meyering  <meyering@lucent.com>
45099
45100         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
45101         quotearg.c includes it.
45102
45103 2001-01-26  Jim Meyering  <meyering@lucent.com>
45104
45105         * lib/quotearg.c: Include stddef.h.
45106         * lib/quote.c: Include stddef.h.
45107         Reported by Axel Kittenberger.
45108
45109         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
45110         line in double quotes so that it evokes a better diagnostic.
45111         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
45112         Reported by Axel Kittenberger.
45113
45114 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
45115
45116         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
45117         as if it was a `charset'.
45118
45119 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
45120
45121         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
45122         has const.
45123
45124 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
45125
45126         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
45127         to avoid a warning.  Add back 'const' to inptr.
45128
45129 2001-01-20  Jim Meyering  <meyering@lucent.com>
45130
45131         Be sure that headers are checked before used in code compiled
45132         for the type checks.
45133         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
45134         In place of that, invoke jm_CHECK_ALL_TYPES.
45135         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
45136         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
45137         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
45138         The check for ssize_t was mistakenly run before the test for unistd.h.
45139
45140         The configure-time check for stdbool.h was missing.
45141         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
45142         (jm_PREREQ_HASH): New function.
45143
45144 2001-01-17  Jim Meyering  <meyering@lucent.com>
45145
45146         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
45147         for autoconf-2.49c.
45148         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
45149
45150 2001-01-16  Jim Meyering  <meyering@lucent.com>
45151
45152         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
45153         From Bruno Haible.
45154
45155 2001-01-14  Jim Meyering  <meyering@lucent.com>
45156
45157         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
45158         foo and bar.  Create conftestdir/ in the script, not in the C code.
45159         Remove directories in the script, not in the C code.
45160         Remove conftestdir{,2} before trying to create the directory.
45161         Make the entire configure script fail if the mkdir fails.
45162
45163 2001-01-14  Jim Meyering  <meyering@lucent.com>
45164
45165         * lib/rename.c: New file.  From Volker Borchert.
45166         Include stdlib.h, string.h or strings.h, and xalloc.h.
45167         Use strip_trailing_slashes rather than open-coding it.
45168
45169 2001-01-03  Paul Eggert  <eggert@twinsun.com>
45170
45171         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
45172
45173 2001-01-03  Jim Meyering  <meyering@lucent.com>
45174
45175         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
45176         of local `inptr' to avoid warning with some system declarations of
45177         iconv.
45178
45179 2001-01-02  Volker Borchert  <bt@teknon.de>
45180
45181         * m4/rename.m4: New file.
45182         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
45183
45184 2001-01-01  Jim Meyering  <meyering@lucent.com>
45185
45186         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
45187         even on systems with utmpx.h.  It's necessary for the declaration of
45188         utmp's ut_user member.  Reported by Andreas Jaeger.
45189
45190         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
45191         available. They are required for the declarations of getgrgid and
45192         getpwuid resp.
45193         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
45194         Reported by Andreas Jaeger.
45195
45196 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
45197
45198         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
45199         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
45200         so `make install' also works in VPATH builds.
45201
45202 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
45203
45204         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
45205         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
45206         can be used in subdirectories.
45207
45208 2000-12-29  Paul Eggert  <eggert@twinsun.com>
45209
45210         * lib/modechange.c: Do not assume that mode_t uses the
45211         traditional octal encoding.  E.g. "chmod 1 FOO" should set
45212         the other-execute bit of FOO even if S_IXOTH != 1.
45213
45214         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
45215         WOTH, XOTH, ALLM): New macros.
45216         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
45217          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
45218         Use them.
45219         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
45220         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
45221         (mode_compile):
45222         No need to use uintmax_t; unsigned long is long enough.
45223         Don't bother to get suffix since we don't use it.
45224
45225 2000-12-26  Jim Meyering  <meyering@lucent.com>
45226
45227         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
45228         better with autoheader.
45229
45230 2000-12-24  Jim Meyering  <meyering@lucent.com>
45231
45232         * lib/hash.c (is_prime): Return explicit boolean values.
45233         (hash_get_first): Return NULL to appease Irix5.6's 89.
45234         Reported by Nelson Beebe.
45235
45236 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
45237
45238         * lib/localcharset.c (locale_charset): Add support for Win32.
45239
45240 2000-12-18  Paul Eggert  <eggert@twinsun.com>
45241
45242         * lib/physmem.h, lib/physmem.c: New files.
45243
45244         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
45245         (noinst_HEADERS): Add physmem.h.
45246
45247         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
45248         't' for compatibility with Solaris 8 sort.
45249
45250 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
45251
45252         * lib/config.charset: Add support for BeOS.
45253
45254 2000-12-17  Jim Meyering  <meyering@lucent.com>
45255
45256         * m4/dos.m4 (jm_AC_DOS): New file and macro.
45257         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
45258
45259 2000-12-16  Jim Meyering  <meyering@lucent.com>
45260
45261         This bug had a serious impact on chown: `chown N:M FILE' (for integer
45262         N and M) would have treated it like `chown N:N FILE'.
45263
45264         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
45265
45266 2000-12-16  Jim Meyering  <meyering@lucent.com>
45267
45268         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
45269         SHELLS_FILE to a file name that's useful on djgpp systems.
45270         Include stdlib.h.
45271         (ADDITIONAL_DEFAULT_SHELLS): Define.
45272         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
45273         Based mostly on a patch from Prashant TR.
45274
45275 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
45276
45277         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
45278         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
45279         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
45280
45281 2000-12-08  Andreas Schwab  <schwab@suse.de>
45282
45283         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
45284         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
45285
45286 2000-12-07  Jim Meyering  <meyering@lucent.com>
45287
45288         * lib/stripslash.c (ISSLASH): Define.
45289         (strip_trailing_slashes): Use ISSLASH rather than comparing against
45290         `/'.
45291         From Prashant TR.
45292
45293         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
45294         (dir_name_r): Declare this function as static.
45295         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
45296         manifest itself on a name containing a mix of slashes and
45297         backslashes.
45298         Make this function work with names starting with a DOS-style
45299         drive letter and colon prefix.
45300         (dir_name): Append `.' if necessary.
45301         Based mostly on patches from Prashant TR and Eli Zaretskii.
45302
45303         * lib/dirname.h (dir_name_r): Remove prototype.
45304
45305 2000-12-06  Paul Eggert  <eggert@twinsun.com>
45306
45307         * m4/off_t-format.m4: Remove this file.
45308         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
45309
45310 2000-12-06  Jim Meyering  <meyering@lucent.com>
45311
45312         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
45313         replacement strtoull, we may well need the replacement strtoul, too.
45314         Check for declarations of strtoul and strtoull.
45315         Check for strtol.  Mainly as a cue to cause automake to include
45316         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
45317         Check for limits.h -- strtol.c needs it.
45318
45319 2000-12-05  Jim Meyering  <meyering@lucent.com>
45320
45321         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
45322
45323 2000-12-04  Jim Meyering  <meyering@lucent.com>
45324
45325         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
45326         Also include memory.h, stdlib.h, unistd.h if appropriate.
45327         Reported by Andreas Jaeger (conflicting declaration of malloc).
45328
45329 2000-12-02  Jim Meyering  <meyering@lucent.com>
45330
45331         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
45332         * m4/jm-macros.m4 (jm_MACROS): require it.
45333
45334 2000-12-02  Jim Meyering  <meyering@lucent.com>
45335
45336         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
45337
45338 2000-12-01  Paul Eggert  <eggert@twinsun.com>
45339
45340         * lib/memrchr.c: Include <config.h> before any system include file.
45341
45342 2000-11-30  Jim Meyering  <meyering@lucent.com>
45343
45344         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
45345
45346 2000-11-30  Jim Meyering  <meyering@lucent.com>
45347
45348         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
45349
45350 2000-11-29  Paul Eggert  <eggert@twinsun.com>
45351
45352         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
45353
45354 2000-11-26  Jim Meyering  <meyering@lucent.com>
45355
45356         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
45357
45358 2000-11-22  Paul Eggert  <eggert@twinsun.com>
45359
45360         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
45361         size of (size_t) -1; it's not portable.
45362
45363 2000-11-17  Jim Meyering  <meyering@lucent.com>
45364
45365         * lib/strstr.c: Update from GNU libc.
45366
45367 2000-11-17  Akim Demaille  <akim@epita.fr>
45368
45369         * lib/obstack.h: Formatting changes.
45370         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
45371         prevent type checking.
45372         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
45373         cast the value to (void *): assigning a `foo *' to a `void *'
45374         variable is valid.
45375         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
45376
45377 2000-11-16  Jim Meyering  <meyering@lucent.com>
45378
45379         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
45380
45381 2000-11-11  Jim Meyering  <meyering@lucent.com>
45382
45383         * lib/error.c: Add a couple #includes, merging from GNU libc version.
45384
45385 2000-11-10  Jim Meyering  <meyering@lucent.com>
45386
45387         * lib/obstack.h: Update from GNU libc.
45388         * lib/obstack.c: Likewise.
45389
45390 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
45391
45392         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
45393
45394 2000-11-06  Paul Eggert  <eggert@twinsun.com>
45395
45396         * lib/getusershell.c (setusershell): Use rewind rather than
45397         fseek/fseeko, to avoid configuration hassles with fseeko.
45398         Don't bother opening SHELLS_FILE if shellstream is NULL;
45399         it's not necessary.
45400
45401 2000-11-05  Jim Meyering  <meyering@lucent.com>
45402
45403         * lib/makepath.h (make_dir): Declare.
45404         * lib/makepath.c (make_dir): Remove `static' attribute.
45405         Tweak a comment.
45406
45407 2000-11-04  Jim Meyering  <meyering@lucent.com>
45408
45409         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
45410
45411 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
45412
45413         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
45414         last one in a bucket, advance to the next bucket.
45415
45416 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
45417
45418         * lib/fnmatch.c: Do not comment out all the code if we are using
45419         the GNU C library, because in some cases we are replacing buggy
45420         code in the GNU C library itself.
45421
45422 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
45423
45424         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
45425         (regex_compile): Catch bogus \(\1\).
45426
45427 2000-10-30  Paul Eggert  <eggert@twinsun.com>
45428
45429         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
45430         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
45431         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
45432
45433 2000-10-30  Paul Eggert  <eggert@twinsun.com>
45434
45435         * lib/error.h, getline.h, modechange.h:
45436         Remove "2000" from Copyright line, as the file hasn't been
45437         changed this year other than in the copyright notice.
45438
45439         * lib/xalloc.h: Add "2000" to Copyright line, as this file
45440         was changed this year.
45441
45442 2000-10-29  Jim Meyering  <meyering@lucent.com>
45443
45444         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
45445         renaming.
45446         * m4/ls-mntd-fs.m4: Likewise
45447
45448 2000-10-29  Jim Meyering  <meyering@lucent.com>
45449
45450         * lib/xstat.in: Fix grammar in comment.
45451
45452 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
45453
45454         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
45455         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
45456         doesn't define __restrict_arr.
45457
45458 2000-10-28  Jim Meyering  <meyering@lucent.com>
45459
45460         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
45461         (jm_PREREQ_MEMCHR): New function.
45462
45463 2000-10-28  Jim Meyering  <meyering@lucent.com>
45464
45465         * lib/memchr.c: Update from libc.
45466         Adjust for portability:
45467         [HAVE_STDLIB_H]: Include stdlib.h.
45468         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
45469         Undef __memchr, too.
45470         [!weak_alias]: Define __memchr to memchr.
45471
45472         * lib/regex.c: Update from libc.
45473         * lib/regex.h: Likewise.
45474         * lib/getopt1.c: Likewise.
45475         * lib/memcmp.c: Likewise.
45476
45477         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
45478         Avoid using fseek, when possible -- it's broken by design.
45479         Patch by Ulrich Drepper.
45480
45481 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
45482
45483         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
45484         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
45485         Giving in to popular pressure to shut up the compiler with casts.
45486
45487 2000-10-26  Jim Meyering  <meyering@lucent.com>
45488
45489         * lib/strftime.c: Update from libc.
45490
45491 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
45492
45493         * regex.c: More `unsigned char' -> `re_char' changes.
45494         Also change several `int' into `re_wchar_t'.
45495         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
45496         (PUSH_FAILURE_POINTER): Don't cast any more.
45497         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
45498         We want GCC to complain, since this piece of code makes
45499         re_match non-reentrant, which *should* be fixed.
45500         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
45501         (EXTEND_BUFFER): Use RETALLOC.
45502         (SET_LIST_BIT): Don't cast.
45503         (re_wchar_t): New type.
45504         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
45505         that those two functions will always properly return.
45506         (IMMEDIATE_QUIT_CHECK): Cast to void.
45507         (analyse_first): Use recursion rather than an explicit stack.
45508         (re_compile_fastmap): Can't fail anymore.
45509         (re_search_2): Don't check re_compile_fastmap for failure.
45510         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
45511         Now also sets the new value (passed in a new argument).
45512         (re_match_2_internal): Use it.
45513         Also, use a new var `reg' of type size_t when looping through regs
45514         rather than reuse the inappropriate `mcnt'.
45515
45516 2000-10-25  Jim Meyering  <meyering@lucent.com>
45517
45518         * lib/obstack.c: Update from libc.
45519
45520 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
45521
45522         * regex.c (regex_compile): Change the way of handling a range from
45523         a char less than 256 to a char not less than 256.
45524
45525 2000-10-24  Andrew Innes  <andrewi@gnu.org>
45526
45527         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
45528         NT-Emacs only.
45529         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
45530         so that re_search functions only quit when callers expect them to.
45531
45532 2000-10-23  Jim Meyering  <meyering@lucent.com>
45533
45534         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
45535         wrong.  That set_locale call must not have any side effects.
45536         From Paul Eggert.
45537
45538 2000-10-22  Jim Meyering  <meyering@lucent.com>
45539
45540         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
45541         [CYCLIC]: Remove now-unused definition.
45542
45543         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
45544         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
45545         Suggestion from Ulrich Drepper.
45546
45547 2000-10-21  Jim Meyering  <meyering@lucent.com>
45548
45549         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
45550         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
45551         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
45552
45553 2000-10-21  Jim Meyering  <meyering@lucent.com>
45554
45555         * lib/dirname.c (memrchr): Declare if necessary.
45556         (dir_name): Remove the restriction that there be no
45557         trailing slashes.  Now, this code skips past them, effectively
45558         ignoring them.
45559         [TEST_DIRNAME] (main): New unit tests.
45560
45561         * lib/memrchr.c: New file from GNU libc.
45562         Undef __memrchr, too.
45563         [!weak_alias]: Define __memrchr to memrchr.
45564         Guard weak_alias use with `#ifdef weak_alias'.
45565
45566 2000-10-21  Jim Meyering  <meyering@lucent.com>
45567
45568         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
45569         (dir_name): Use dir_name_r.
45570         * lib/dirname.h (dir_name_r): Declare it.
45571
45572 2000-10-17  Jim Meyering  <meyering@lucent.com>
45573
45574         * lib/quote.h (PARAMS): Define and use.
45575         Reported by Akim Demaille.
45576
45577         * lib/getopt.c: Update from libc.
45578
45579 2000-10-16  Jim Meyering  <meyering@lucent.com>
45580
45581         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
45582         setlocale.
45583         From Jan Fedak.
45584
45585 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
45586
45587         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
45588
45589 2000-09-25  Jim Meyering  <meyering@lucent.com>
45590
45591         * lib/md5.h (rol): Define (from GnuPG).
45592
45593         * lib/sha.c: Give credit (GnuPG) where due.
45594         (M): Use rol rather than open-coding it.
45595         Add a FIXME comment.
45596
45597 2000-09-21  Jim Meyering  <meyering@lucent.com>
45598
45599         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
45600         Reported by Michael Stone.
45601
45602 2000-09-20  Jim Meyering  <meyering@lucent.com>
45603
45604         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
45605         (noinst_HEADERS): Add sha.h.
45606         Based on code from Scott G. Miller and from GnuPG.
45607
45608 2000-09-18  Jim Meyering  <meyering@lucent.com>
45609
45610         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
45611         LIBS. Otherwise, everyone ends up linking with -lelf for some
45612         configurations.
45613         Reported by Mike Stone.
45614
45615 2000-09-15  Jim Meyering  <meyering@lucent.com>
45616
45617         * lib/regex.c: Update from libc.
45618
45619 2000-09-10  Jim Meyering  <meyering@lucent.com>
45620
45621         * lib/getopt.c (_getopt_internal): Update from glibc.
45622
45623 2000-09-09  Jim Meyering  <meyering@lucent.com>
45624
45625         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
45626         think it should be used as a general replacement for isascii.
45627         * lib/fnmatch.c: Likewise.
45628         * lib/mbswidth.c: Likewise
45629         * lib/regex.c: Likewise.
45630
45631         Don't use atoi.
45632         * lib/userspec.c: Include sys/param.h and limits.h.
45633         Include xstrtol.h.
45634         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
45635         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
45636         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
45637         UID, GID.  Check range.
45638
45639 2000-09-06  Jim Meyering  <meyering@lucent.com>
45640
45641         * lib/getopt.c (_getopt_internal): Update from glibc.
45642
45643 2000-08-30  Jim Meyering  <meyering@lucent.com>
45644
45645         * lib/strftime.c: Merge in changes from GNU libc.
45646
45647 2000-08-26  Jim Meyering  <meyering@lucent.com>
45648
45649         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
45650         * m4/fpending.m4: New file.
45651
45652 2000-08-26  Jim Meyering  <meyering@lucent.com>
45653
45654         * lib/closeout.c: Include "__fpending.h".
45655         (close_stdout_status): Return right away if there's nothing to flush.
45656
45657         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
45658         * lib/__fpending.c: New file.
45659         * lib/__fpending.h: New file.
45660
45661 2000-08-20  Jim Meyering  <meyering@lucent.com>
45662
45663         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
45664         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
45665         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
45666
45667 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
45668
45669         Improve fileutils installation on systems where running
45670         programs (like install) can't be unlinked.
45671         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
45672         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
45673
45674 2000-08-07  Paul Eggert  <eggert@twinsun.com>
45675
45676         Standardize on "memory exhausted" instead of "Memory exhausted"
45677         or "virtual memory exhausted".
45678         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
45679         "virtual memory exhausted".
45680         * lib/same.c (same_name): Invoke xalloc_die instead of printing
45681         our own message.
45682         * lib/userspec.c (parse_user_spec): Likewise.
45683         * lib/bumpalloc.h: comment fix
45684         * lib/same.c, userspec.c: Include xalloc.h.
45685
45686         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
45687         not char *const and pointing to a constant array.
45688         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
45689         (xrealloc): Comment fix.
45690
45691         * lib/userspec.c (parse_user_spec):
45692         Don't translate a message until just before returning,
45693         to avoid unnecessary translation.
45694
45695 2000-08-07  Jim Meyering  <meyering@lucent.com>
45696
45697         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
45698         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
45699         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
45700         getgroups.c, gethostname.c, getopt.h, group-member.c,
45701         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
45702         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
45703         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
45704         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
45705         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
45706         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
45707         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
45708         yesno.c: Back out Copyright date changes for each file with no change
45709         this year.  This eases coordination with other programs using the same
45710         source code modules.  From Paul Eggert.
45711
45712 2000-08-06  Paul Eggert  <eggert@twinsun.com>
45713
45714         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
45715         not char, for compatibility with glibc 2.1.3 strftime.c.
45716
45717 2000-08-03  Greg McGary  <greg@mcgary.org>
45718
45719         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
45720         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
45721         (EXTEND_BUFFER): Use them.
45722
45723 2000-08-01  Jim Meyering  <meyering@lucent.com>
45724
45725         * lib/dirname.c (ISSLASH): Define.
45726         (BACKSLASH_IS_PATH_SEPARATOR): Define.
45727         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
45728         both `\' and `/' may be use as path separators.
45729         Based on a patch from Prashant TR.
45730
45731 2000-07-31  Paul Eggert  <eggert@twinsun.com>
45732
45733         * lib/quotearg.c (quotearg_n_options): Don't make the initial
45734         slot vector a constant, since it might get modified.
45735
45736 2000-07-31  Jim Meyering  <meyering@lucent.com>
45737
45738         * lib/xmalloc.c: Use `virtual memory exhausted', not
45739         `Memory exhausted'.
45740         * lib/obstack.c (print_and_abort): Likewise.
45741
45742 2000-07-30  Paul Eggert  <eggert@twinsun.com>
45743
45744         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
45745         buffer, so that the caller can always quote one small
45746         component of a "memory exhausted" message in slot 0.
45747         From a suggestion by Jim Meyering.
45748
45749 2000-07-30  Jim Meyering  <meyering@lucent.com>
45750
45751         * lib/makepath.c (make_path): Quote the other instance, too.
45752
45753         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
45754         (STATIC_BUF_SIZE): Define.
45755         (quotearg_n_options): Use only statically allocated storage when
45756         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
45757         than STATIC_BUF_SIZE.
45758
45759 2000-07-29  Jim Meyering  <meyering@lucent.com>
45760
45761         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
45762         * lib/dirname.c (dir_name): Likewise.
45763
45764         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
45765         `/'.
45766
45767         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
45768         (dir_name): Assert that there are no trailing slashes.
45769
45770 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
45771
45772         * lib/mbswidth.h (mbswidth): Add a flags argument.
45773         (mbswidth): New declaration.
45774         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
45775         * lib/mbswidth.c (mbswidth): Add a flags argument.
45776         (mbsnwidth): New function.
45777
45778 2000-07-24  Jim Meyering  <meyering@lucent.com>
45779
45780         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
45781
45782 2000-07-23  Paul Eggert  <eggert@twinsun.com>
45783
45784         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
45785
45786 2000-07-23  Paul Eggert  <eggert@twinsun.com>
45787
45788         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
45789         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
45790         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
45791         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
45792         invoke multibyte primitives.
45793
45794 2000-07-23  Paul Eggert  <eggert@twinsun.com>
45795
45796         * lib/quotearg.c:
45797         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
45798         so that mbstate_t is always defined.
45799
45800         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
45801         be 1 in at least one GCC installation, and this configuration
45802         error is likely to be common.  Ignoring MB_LEN_MAX hurts
45803         performance on hosts that have mbrtowc but have only unibyte
45804         locales, but I assume these hosts are rare.
45805
45806 2000-07-23  Paul Eggert  <eggert@twinsun.com>
45807
45808         * lib/mbswidth.c (_XOPEN_SOURCE):
45809         Don't define; this causes problems on Solaris 7.
45810         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
45811
45812 2000-07-23  Jim Meyering  <meyering@lucent.com>
45813
45814         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
45815         too: getgrgid, getpwuid, getuid.
45816
45817 2000-07-23  Jim Meyering  <meyering@lucent.com>
45818
45819         * lib/basename.c (base_name): Add an assertion.
45820
45821 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
45822
45823         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
45824         shadow its mbsinit function.
45825
45826 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
45827
45828         * lib/mbswidth.h: New file.
45829         * lib/mbswidth.c: New file.
45830         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
45831         (noinst_HEADERS): Add mbswidth.h.
45832
45833 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
45834
45835         * lib/config.charset: Add support for FreeBSD. Improve support for
45836         HP-UX and IRIX 6.
45837
45838 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
45839
45840         * m4/mbswidth.m4: New file.
45841         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
45842
45843 2000-07-15  Jim Meyering  <meyering@lucent.com>
45844
45845         * lib/makepath.c: Include quote.h.
45846         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
45847         corresponding argument in a `quote (...)' call.
45848         Give better diagnostics.
45849
45850         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
45851         (noinst_HEADERS): Add quote.h.
45852
45853         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
45854         from tar's src/misc.c.
45855         * lib/quote.h: New file.  Prototypes for same.
45856
45857 2000-07-14  Paul Eggert  <eggert@twinsun.com>
45858
45859         From a suggestion by Bruno Haible.
45860         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
45861         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
45862         to decide whether to define the BeOS workaround macro;
45863         this adjusts to the change to AC_MBSTATE_T.
45864
45865 2000-07-14  Jim Meyering  <meyering@lucent.com>
45866
45867         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
45868         jm_AC_TYPE_UINTMAX_T.
45869
45870 2000-07-13  Paul Eggert  <eggert@twinsun.com>
45871
45872         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
45873
45874         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
45875         quotearg_buffer_restyled): Add support for
45876         clocale_quoting_style.  Undo previous change to
45877         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
45878         and "{RIGHT QUOTATION MARK}" msgids.
45879
45880 2000-07-10  Paul Eggert  <eggert@twinsun.com>
45881
45882         From a suggestion by Bruno Haible.
45883         * m4/mbstate_t.m4 (AC_MBSTATE_T):
45884         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
45885         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
45886         and mbstate_t, to a single-part test that simply defines mbstate_t.
45887         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
45888         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
45889
45890 2000-07-10  Jim Meyering  <meyering@lucent.com>
45891
45892         * m4/strerror_r.m4: Mirror the correction made in autoconf.
45893
45894         * m4/gnu-source.m4: Output to confdefs.h directly.
45895         Suggestion from Akim Demaille.
45896
45897 2000-07-09  Paul Eggert  <eggert@twinsun.com>
45898
45899         The old behavior of quoting `like this' doesn't look good with
45900         newer, ISO-style fonts.  See:
45901         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
45902
45903         Instead, quote "like this" by default.  Let the translator
45904         tailor the locale-specific quoting behavior by providing
45905         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
45906
45907         * lib/quotearg.c (N_): New macro.
45908         (gettext_default): New function.
45909         (quotearg_buffer_restyled): Use
45910         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
45911         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
45912
45913 2000-07-09  Jim Meyering  <meyering@lucent.com>
45914
45915         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
45916         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
45917
45918         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
45919         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
45920
45921 2000-07-09  Jim Meyering  <meyering@lucent.com>
45922
45923         * lib/Most files: Update copyright dates to include 2000.
45924
45925 2000-07-08  Jim Meyering  <meyering@lucent.com>
45926
45927         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
45928         if not defined.
45929         (xgethostname): Remove now-unnecessary #ifdef.
45930         Move declaration of `err' into loop where it's used.
45931
45932 2000-07-05  Paul Eggert  <eggert@twinsun.com>
45933         and Bruno Haible  <haible@clisp.cons.org>
45934
45935         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
45936         only if the test for an object-type mbstate_t fails.  This
45937         prevents us from mistakenly reporting that mbstate_t is a
45938         system object type after we "#define mbstate_t int" to work
45939         around its lack.
45940
45941 2000-07-05  Paul Eggert  <eggert@twinsun.com>
45942         and Bruno Haible  <haible@clisp.cons.org>
45943
45944         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
45945
45946 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
45947
45948         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
45949         to strerror_r.
45950         Include <ctype.h> for use of isalpha.
45951
45952 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
45953
45954         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
45955         by allocating a larger buffer. Test the gethostname return value for
45956         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
45957         returns an error and ENAMETOOLONG isn't defined.
45958
45959 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
45960
45961         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
45962         dimension.
45963
45964 2000-07-04  Jim Meyering  <meyering@lucent.com>
45965
45966         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
45967         of the deprecated AC_CHECKING.
45968
45969 2000-07-04  Jim Meyering  <meyering@lucent.com>
45970
45971         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
45972         Reported by Bruno Haible.
45973
45974 2000-07-04  Jim Meyering  <meyering@lucent.com>
45975
45976         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
45977         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
45978         lacks mbrtowc.
45979
45980 2000-07-03  Paul Eggert  <eggert@twinsun.com>
45981
45982         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
45983         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
45984
45985 2000-07-03  Paul Eggert  <eggert@twinsun.com>
45986         and Bruno Haible  <haible@clisp.cons.org>
45987
45988         * lib/quotearg.c (mbrtowc):
45989         Assign to *pwc, and return 1 only if result is nonzero.
45990         (iswprint): Use ISPRINT when substituting our own mbrtowc.
45991
45992 2000-07-03  Jim Meyering  <meyering@lucent.com>
45993
45994         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
45995
45996 2000-07-03  Jim Meyering  <meyering@lucent.com>
45997
45998         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
45999         This is necessary to get a definition of e.g., UTMP_FILE on
46000         HP-UX 10.20.
46001         From Bob Proulx.
46002
46003 2000-07-02  Jim Meyering  <meyering@lucent.com>
46004
46005         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
46006
46007         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
46008         AC_LIBOBJ(function_name).
46009         * m4/chown.m4: Likewise.
46010         * m4/fnmatch.m4: Likewise.
46011         * m4/ftruncate.m4: Likewise.
46012         * m4/getgroups.m4: Likewise.
46013         * m4/getline.m4: Likewise.
46014         * m4/group-member.m4: Likewise.
46015         * m4/jm-macros.m4: Likewise.
46016         * m4/lstat.m4: Likewise.
46017         * m4/malloc.m4: Likewise.
46018         * m4/memcmp.m4: Likewise.
46019         * m4/nanosleep.m4: Likewise.
46020         * m4/putenv.m4: Likewise.
46021         * m4/realloc.m4: Likewise.
46022         * m4/regex.m4: Likewise.
46023         * m4/stat.m4: Likewise.
46024         * m4/strftime.m4: Likewise.
46025
46026 2000-07-02  Jim Meyering  <meyering@lucent.com>
46027
46028         * lib/quotearg.c (mbstate_t): Don't define here.
46029
46030 2000-07-02  Jim Meyering  <meyering@lucent.com>
46031
46032         * lib/nanosleep.c (SIGCONT): Define if not already defined.
46033
46034 2000-07-01  Jim Meyering  <meyering@lucent.com>
46035
46036         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
46037
46038 2000-07-01  Jim Meyering  <meyering@lucent.com>
46039
46040         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
46041         problem.
46042
46043 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
46044
46045         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
46046         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
46047
46048 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
46049
46050         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
46051         per change in ../m4/ls-mntd-fs.m4.
46052         (read_filesystem_list): Ignore symbolic links.
46053
46054 2000-06-29  Jim Meyering  <meyering@lucent.com>
46055
46056         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
46057         for declaration of strcmp.
46058
46059         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
46060
46061         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
46062         Avoid warning by casting result to `char *' to remove `const'.
46063
46064 2000-06-28  Jim Meyering  <meyering@lucent.com>
46065
46066         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
46067         included by quotearg.c, for which we perform this test.  From
46068         Bruno Haible.
46069
46070 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
46071
46072         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
46073         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
46074         <utmpx.h> exists, put readutmp.o into LIBOBJS.
46075
46076 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
46077
46078         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
46079
46080 2000-06-26  Paul Eggert  <eggert@twinsun.com>
46081
46082         savedir now sets errno on failure and invokes xmalloc to get memory.
46083         Fix a couple of other minor bugs while we're at it.
46084
46085         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
46086         (NAMLEN): Remove macro.
46087         (malloc, realloc): Remove decls.
46088         (stpcpy): Likewise.
46089         ("xalloc.h"): Include.
46090         (NAME_SIZE_DEFAULT): New macro.
46091         (savedir): Use xmalloc / xrealloc to allocate memory.
46092         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
46093         Skip "" directory entries.
46094         Use strlen to calculate directory entry length, since the old method
46095         is rarely used these days and isn't worth supporting.
46096         Don't use a pointer after freeing it.
46097         Check for integer overflow when calculating allocation size.
46098         Use memcpy to copy entries, instead of stpcpy.
46099         Set errno properly when returning NULL.
46100         Check for readdir error.
46101
46102 2000-06-26  Jim Meyering  <meyering@lucent.com>
46103
46104         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
46105
46106 2000-06-25  Jim Meyering  <meyering@lucent.com>
46107
46108         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
46109         Linux header bug when _XOPEN_SOURCE is defined to 500.
46110
46111 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
46112
46113         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
46114         deficiency.
46115
46116 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
46117
46118         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
46119         Include xalloc.h.
46120         Don't include <stdlib.h>.  Don't declare malloc, realloc.
46121
46122 2000-06-24  Jim Meyering  <meyering@lucent.com>
46123
46124         * m4/strerror_r.m4: Revive this file -- to try out an experimental
46125         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
46126         for which strerror does return char*, but which lacks a conveniently
46127         accessible declaration of the function.  If the compile-test says
46128         strerror_r doesn't work, then resort to a `run'-test that works on
46129         BeOS and segfaults on DEC Unix.
46130
46131 2000-06-24  Jim Meyering  <meyering@lucent.com>
46132
46133         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
46134
46135 2000-06-23  Paul Eggert  <eggert@twinsun.com>
46136
46137         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
46138         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
46139
46140 2000-06-23  Paul Eggert  <eggert@twinsun.com>
46141
46142         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
46143         (mbrtowc, mbstate_t): Define substitutes if
46144         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
46145         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
46146         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
46147
46148 2000-06-23  Jim Meyering  <meyering@lucent.com>
46149
46150         * m4/afs.m4: Add missing AC_MSG_RESULT.
46151         Reported by Bruno Haible.
46152
46153         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
46154         Suggestion from Bruno Haible.
46155
46156 2000-06-23  Jim Meyering  <meyering@lucent.com>
46157
46158         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
46159
46160 2000-06-21  Jim Meyering  <meyering@lucent.com>
46161
46162         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
46163
46164 2000-06-21  Jim Meyering  <meyering@lucent.com>
46165
46166         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
46167         (noinst_HEADERS): Add getstr.h.
46168
46169         * lib/getline.c (getstr): Move into a separate file.
46170         * lib/getstr.c (getstr): New file, extracted from getline.c, with
46171         the following changes: new parameter, delim2; both delim[12]
46172         parameters have type `int', not `char'.  The latter would lose
46173         with 8-bit delimiters.
46174         * lib/getstr.h: New file.
46175
46176 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
46177
46178         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
46179         than 1024, return a memory chunk of least possible size, instead
46180         of size PATH_MAX + 2. In the loop, increment the size proportionally.
46181         Use free/xmalloc instead of xrealloc to avoid copying for very long
46182         paths.
46183
46184 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
46185
46186         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
46187         the empty string.
46188
46189 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
46190
46191         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
46192         address, not strdup.  Include <stdlib.h> and don't declare free().
46193
46194 2000-06-19  Jim Meyering  <meyering@lucent.com>
46195
46196         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
46197
46198 2000-06-18  Jim Meyering  <meyering@lucent.com>
46199
46200         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
46201
46202         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
46203         `checking whether...' message to be consistent with that of the
46204         lstat test.
46205
46206 2000-06-18  Jim Meyering  <meyering@lucent.com>
46207
46208         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
46209         Besides, these days every porting target provides a mkdir function.
46210
46211         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
46212         needed. (this snippet comes from src/system.h).
46213
46214 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
46215
46216         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
46217
46218 2000-06-15  Paul Eggert  <eggert@twinsun.com>
46219
46220         * lib/human.c (adjust_value): New function.
46221         (human_readable_inexact): Apply rounding style even when
46222         printing approximate values.
46223
46224 2000-06-14  Paul Eggert  <eggert@twinsun.com>
46225
46226         * lib/human.c (human_readable_inexact): Allow an input block
46227         size that is not a multiple of the output block size, and vice versa.
46228         Reported by Piergiorgio Sartor.
46229
46230 2000-06-14  Paul Eggert  <eggert@twinsun.com>
46231
46232         * lib/getdate.y (get_date): Apply relative times after time
46233         zone indicator, not before.  Reported by Todd A. Jacobs.
46234
46235 2000-06-13  Jim Meyering  <meyering@lucent.com>
46236
46237         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
46238
46239         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
46240
46241 2000-06-12  Paul Eggert  <eggert@twinsun.com>
46242
46243         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
46244
46245 2000-06-12  Jim Meyering  <meyering@lucent.com>
46246
46247         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
46248         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
46249         optional argument.
46250         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
46251         the optional argument, `lib'.
46252
46253 2000-06-08  Jim Meyering  <meyering@lucent.com>
46254
46255         * m4/largefile.m4: Remove file (now that it's part of autoconf).
46256
46257 2000-06-04  Paul Eggert  <eggert@twinsun.com>
46258
46259         Rewrite largefile configuration so that we don't need to run
46260         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
46261         AC_CANONICAL_HOST in configure.in -- jmm]
46262
46263         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
46264         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
46265         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
46266         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
46267         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
46268         All uses changed.
46269         Instead of inspecting the output of getconf, try to compile the
46270         test program without and with the macro definition.
46271         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
46272         for getconf.  Instead, check for the needed flags by compiling
46273         test programs.
46274
46275 2000-06-04  Paul Eggert  <eggert@twinsun.com>
46276
46277         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
46278
46279 2000-06-04  Jim Meyering  <meyering@lucent.com>
46280
46281         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
46282         SunOS 4.1.4 for which gid_t is an unsigned type.
46283
46284 2000-06-03  Jim Meyering  <meyering@lucent.com>
46285
46286         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
46287         now that autoconf requires that.
46288
46289         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
46290         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
46291         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
46292
46293 2000-06-03  Jim Meyering  <meyering@lucent.com>
46294
46295         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
46296
46297 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
46298
46299         * m4/glibc21.m4: New file.
46300         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
46301
46302 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
46303
46304         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
46305         newer, don't install charset.alias.
46306         * lib/config.charset: Change the Linux/glibc rules so they become empty
46307         on glibc-2.1 or newer.
46308
46309 2000-06-02  Jim Meyering  <meyering@lucent.com>
46310
46311         * lib/mountlist.c: Back out last change.  Instead, do this...
46312         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
46313         me_dummy member using the same `ignore'-testing code.
46314         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
46315         fs_type strings.
46316         From Mark D. Roth.
46317
46318 2000-05-29  Jim Meyering  <meyering@lucent.com>
46319
46320         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
46321         mounts with the `ignore' attribute.  Based on a patch from
46322         Mark D. Roth.
46323
46324 2000-05-28  Jim Meyering  <meyering@lucent.com>
46325
46326         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
46327         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
46328         * m4/stat.m4: Likewise.
46329         * m4/lstat.m4: Likewise.
46330         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
46331
46332         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
46333         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
46334
46335 2000-05-26  Jim Meyering  <meyering@lucent.com>
46336
46337         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
46338
46339 2000-05-24  Jim Meyering  <meyering@lucent.com>
46340
46341         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
46342         autoconf requires that.
46343         * m4/lib-check.m4: Likewise.
46344         * m4/jm-macros.m4: Likewise.
46345         * m4/strftime.m4: Likewise.
46346
46347         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
46348         AC_CHECK_DECLS, now that autoconf requires that.
46349
46350 2000-05-22  Jim Meyering  <meyering@lucent.com>
46351
46352         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
46353         * m4/lstat.m4: Likewise.
46354
46355 2000-05-22  Jim Meyering  <meyering@lucent.com>
46356
46357         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
46358
46359 2000-05-20  Jim Meyering  <meyering@lucent.com>
46360
46361         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
46362         (jm_PREREQ): Use it.
46363
46364 2000-05-18  Jim Meyering  <meyering@lucent.com>
46365
46366         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
46367         back, too, since it may have been modified by allocate_entry.
46368         (hash_delete): Rewrite to use neither the assignment operator
46369         nor the comma operator in an if-expression.
46370
46371 2000-05-15  Paul Eggert  <eggert@twinsun.com>
46372
46373         * lib/closeout.c:
46374         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
46375         Remove; no longer needed.
46376         "quotearg.h": Add include.
46377         (file_name): Do not bother to explicitly initialize to NULL; it's less
46378         efficient on some hosts.
46379         (close_stdout_status): Remove test as to whether stdout was already
46380         closed; it breaks for the case "echo x | sort >&-".
46381         Quote file name colons.
46382         Do not assume that _("write error") lacks format strings.
46383
46384 2000-05-15  Jim Meyering  <meyering@lucent.com>
46385
46386         * lib/version-etc.c (version_etc_copyright): Update the copyright
46387         string used in all --version output.
46388
46389 2000-05-14  Jim Meyering  <meyering@lucent.com>
46390
46391         * lib/closeout.c (close_stdout_set_file_name): New function.
46392         (close_stdout_status): Use new file-scoped global.
46393         Return right away if fstat says the stdout file descriptor is invalid.
46394         * lib/closeout.h (close_stdout_set_file_name): Declare.
46395
46396 2000-05-10  Jim Meyering  <meyering@lucent.com>
46397
46398         * lib/closeout.c [default_exit_status]: New file-scoped variable.
46399         (close_stdout_set_status): New function.
46400         * lib/closeout.h (close_stdout_set_status): Declare.
46401
46402 2000-05-09  Jim Meyering  <meyering@lucent.com>
46403
46404         * m4/gettext.m4: Rename this...
46405         * m4/libintl.m4: ...to this.
46406
46407 2000-05-08  Jim Meyering  <meyering@lucent.com>
46408
46409         * lib/long-options.c: Don't include closeout.h.
46410         (parse_long_options): Don't call close_stdout for --version.
46411
46412 2000-05-06  Paul Eggert  <eggert@twinsun.com>
46413
46414         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
46415         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
46416         2.1.3 bug.  This avoids a clash when files like regex.c define
46417         _GNU_SOURCE.
46418
46419 2000-05-06  Jim Meyering  <meyering@lucent.com>
46420
46421         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
46422         (AC_REPLACE_FUNCS): Add strnlen.
46423
46424         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
46425         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
46426
46427         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
46428         AC_SEARCH_LIBS call for nanosleep.
46429         (LIB_NANOSLEEP): Set and AC_SUBST.
46430
46431 2000-05-06  Jim Meyering  <meyering@lucent.com>
46432
46433         * lib/strnlen.c: Undefine __strnlen and strnlen.
46434         [!weak_alias]: Define __strnlen to strnlen.
46435
46436         * lib/atexit.c: New file, from libiberty.
46437
46438 2000-05-06  Jim Meyering  <meyering@lucent.com>
46439
46440         * lib/closeout.c (close_stdout_status): Also check for errors on the
46441         stderr stream.
46442
46443 2000-05-05  Jim Meyering  <meyering@lucent.com>
46444
46445         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
46446         AC_SEARCH_LIBS call for clock_gettime.
46447         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
46448
46449         * m4/search-libs.m4: Update from autoconf.
46450
46451         su doesn't work on Solaris 2.6.
46452         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
46453         <shadow.h>.  Reported by Dragos Harabor.
46454
46455 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
46456
46457         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
46458         memcpy instead of xmalloc, xrealloc, path_concat.
46459         (locale_charset): Treat empty environment variables as absent.
46460         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
46461
46462 2000-05-04  Jim Meyering  <meyering@lucent.com>
46463
46464         * lib/getopt.c: Update from glibc.
46465         * lib/obstack.c: Likewise.
46466         * lib/obstack.h: Likewise.
46467         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
46468         file
46469
46470         * lib/regex.h: Likewise.
46471         * lib/strndup.c: Likewise.
46472         * lib/strnlen.c: New file, from glibc.
46473
46474 2000-05-03  Jim Meyering  <meyering@lucent.com>
46475
46476         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
46477
46478 2000-05-02  Paul Eggert  <eggert@twinsun.com>
46479
46480         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
46481         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
46482         compile-time test, rather than inspecting host and OS, to
46483         decide whether to define _LARGEFILE_SOURCE.
46484
46485 2000-05-01  Jim Meyering  <meyering@lucent.com>
46486
46487         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
46488
46489         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
46490         Based on a patch from Bruno Haible.
46491
46492 2000-05-01  Jim Meyering  <meyering@lucent.com>
46493
46494         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
46495
46496 2000-04-29  Jim Meyering  <meyering@lucent.com>
46497
46498         * lib/path-concat.c: Declare strdup only if it's not defined.
46499         * lib/canon-host.c: Likewise.
46500
46501 2000-04-28  Jim Meyering  <meyering@lucent.com>
46502
46503         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
46504         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
46505         is included first, then limits.h is included by locale.h by libintl.h.
46506         From John David Anglin.
46507
46508 2000-04-25  Jim Meyering  <meyering@lucent.com>
46509
46510         * lib/makepath.c (S_IRWXUGO): Define.
46511         (make_path): Always perform explicit chmod if MODE specifies any
46512         of the `special' permission bits.  Prompted by a bug report against
46513         install from Mate Wierdl and Joost van Baal.
46514
46515 2000-04-18  Jim Meyering  <meyering@lucent.com>
46516
46517         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
46518         (jm_PREREQ): Use it.
46519
46520 2000-04-18  Jim Meyering  <meyering@lucent.com>
46521
46522         * lib/README: New file.
46523
46524         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
46525         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
46526
46527 2000-04-17  Jim Meyering  <meyering@lucent.com>
46528
46529         Get it right :-)
46530         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
46531         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
46532         Suggestion from Akim Demaille.
46533
46534 2000-04-17  Jim Meyering  <meyering@lucent.com>
46535
46536         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
46537         the definition of it to rpl_strftime also defined-away the system's
46538         declaration.
46539
46540 2000-04-15  Jim Meyering  <meyering@lucent.com>
46541
46542         Use `C' to denote so-called `contiguous' files, the same way
46543         that tar does.
46544         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
46545         (ftypelet): Use S_ISCTG.
46546         From Michael Deutschmann.
46547
46548 2000-04-14  Jim Meyering  <meyering@lucent.com>
46549
46550         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
46551         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
46552         clobbered.
46553
46554 2000-04-14  Jim Meyering  <meyering@lucent.com>
46555
46556         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
46557
46558 2000-04-13  Jim Meyering  <meyering@lucent.com>
46559
46560         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
46561         AH_VERBATIM to insert required #ifndef into config.h.in.
46562         Suggestion from Akim Demaille.
46563
46564 2000-04-12  Jim Meyering  <meyering@lucent.com>
46565
46566         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
46567         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
46568         Christian Krackowizer.
46569
46570         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
46571         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
46572         (AC_SYS_LARGEFILE): Require.
46573         (AM_C_PROTOTYPES): Require.
46574
46575 2000-04-08  Jim Meyering  <meyering@lucent.com>
46576
46577         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
46578         names don't conflict.  Reported by Eli Zaretskii.
46579
46580 2000-04-07  Jim Meyering  <meyering@lucent.com>
46581
46582         * lib/putenv.c: Move inclusion of errno.h so it follows that of
46583         sys/types.h, to work around system header problems on AIX 3.2.5.
46584         From Bruno Haible.
46585
46586 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
46587
46588         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
46589         bug.  Deal with the different error behavior of Irix iconv.
46590
46591 2000-04-05  Paul Eggert  <eggert@twinsun.com>
46592
46593         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
46594         IRIX if the installer said otherwise.
46595
46596 2000-04-05  Jim Meyering  <meyering@lucent.com>
46597
46598         Portability tweaks required for ultrix4.3.
46599         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
46600         (jm_CHECK_DECLS): Add getutent to the list of functions.
46601         (_jm_DECL_HEADERS): Add utmpx.h.
46602         From John David Anglin.
46603
46604         * m4/strftime.m4: Back out the 2000-04-02 change.
46605         Instead of that change, simply undefine putenv in the test program.
46606
46607 2000-04-05  Jim Meyering  <meyering@lucent.com>
46608
46609         Portability tweaks required for ultrix4.3.
46610         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
46611         getutent.
46612         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
46613         * lib/canon-host.c: Declare strdup.
46614         * lib/path-concat.c: Likewise.
46615         From John David Anglin.
46616
46617 2000-04-04  Jim Meyering  <meyering@lucent.com>
46618
46619         Be more DOS 8.3-friendly.
46620         * lib/ref-add.sin: Renamed from ref-add.sed.in.
46621         * lib/ref-del.sin: Renamed from ref-del.sed.in.
46622         * lib/Makefile.am: Reflect renaming.
46623         Reported by Eli Zaretskii.
46624
46625         Use a temporary file name that won't clash with `charset.alias'
46626         in the DOS 8.3 name space.
46627         * lib/Makefile.am (charset_tmp): Define.
46628         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
46629         (uninstall-local): Likewise.
46630         Reported by Eli Zaretskii.
46631
46632 2000-04-03  Jim Meyering  <meyering@lucent.com>
46633
46634         * m4/gettext.m4: Fix typo in comment.
46635
46636         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
46637         textutils/configure.in).  Suggestion from Paul Eggert.
46638         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
46639
46640 2000-04-02  Paul Eggert  <eggert@twinsun.com>
46641
46642         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
46643         variable in the shell rather than using putenv, which isn't
46644         portable.  This avoids the configure-time inter-test dependency
46645         on the potentially-renamed putenv function.
46646
46647 2000-03-30  Paul Eggert  <eggert@twinsun.com>
46648
46649         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
46650         before checking struct stat.st_blksize, so that
46651         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
46652
46653 2000-03-29  Paul Eggert  <eggert@twinsun.com>
46654
46655         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
46656         since strftime.c uses HAVE_STRFTIME to decide whether to use
46657         the underlying strftime.
46658
46659 2000-03-29  Paul Eggert  <eggert@twinsun.com>
46660
46661         * lib/time/strftime.c (my_strftime): Make sure we call the system
46662         strftime, not ourselves, when invoking the underlying strftime.
46663
46664 2000-03-24  Jim Meyering  <meyering@lucent.com>
46665
46666         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
46667         (charset_alias): Define.
46668         (install-exec-local): Factor out common code.
46669         (uninstall-local): Split lines longer than 80.
46670         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
46671         (SUFFIXES): Define.
46672         (.sed.in.sed): New rule.  Don't redirect directly to $@.
46673         (CLEANFILES): Add ref-add.sed and ref-del.sed.
46674
46675 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
46676
46677         * lib/config.charset: Output a line containing "Packages using this
46678         file".
46679         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
46680         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
46681         ref-del.sed): New rules.
46682
46683 2000-03-17  Jim Meyering  <meyering@lucent.com>
46684
46685         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
46686         Otherwise, include <strings.h>
46687
46688 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
46689
46690         * lib/unicodeio.c (utf8_wctomb): New function.
46691         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
46692         format instead of in UCS-4 with platform dependent endianness.
46693
46694 2000-03-10  Jim Meyering  <meyering@lucent.com>
46695
46696         * m4/lib-check.m4: Look for getspnam in -lgen, too.
46697         From Marco Franzen.
46698
46699 2000-03-07  Paul Eggert  <eggert@twinsun.com>
46700
46701         * lib/savedir.c (savedir): Work even if directory size is
46702         negative; this can happen with some screwy NFS configurations.
46703
46704 2000-03-06  Jim Meyering  <meyering@lucent.com>
46705
46706         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
46707         if it's NULL (because we ran out of memory).  From Bruno Haible.
46708
46709 2000-03-05  Jim Meyering  <meyering@lucent.com>
46710
46711         * lib/localcharset.c ("path-concat.h"): Include.
46712         (get_charset_aliases): Use path_concat instead of ANSI string
46713         concatenation.
46714
46715         * lib/unicodeio.h (PARAMS): Define.
46716         Use it to guard prototype.
46717
46718 2000-03-04  Jim Meyering  <meyering@lucent.com>
46719
46720         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
46721         for lib/localcharset.c.
46722
46723 2000-03-04  Jim Meyering  <meyering@lucent.com>
46724
46725         * lib/Makefile.am (install-exec-local): Create $(libdir) before
46726         installing into it.
46727         (uninstall-local): Uncomment this rule so `make distcheck' works
46728         once again.
46729
46730         * lib/unicodeio.c (<errno.h>): Include it.
46731         (errno): Declare if not defined.
46732
46733         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
46734
46735         * lib/config.charset: New version, incorporating remarks from a linux
46736         i18n mailing list.  From Bruno Haible.
46737
46738 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
46739
46740         * m4/codeset.m4: New file.
46741         * m4/iconv.m4: New file.
46742         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
46743
46744 2000-03-03  Jim Meyering  <meyering@lucent.com>
46745
46746         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
46747
46748 2000-03-02  Jim Meyering  <meyering@lucent.com>
46749
46750         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
46751         the messages come out on separate lines.
46752
46753         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
46754         rather than jm_CHECK_DECLARATIONS.
46755         * m4/decl.m4: Remove now-unused file.
46756
46757         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
46758         geteuid.
46759
46760 2000-03-02  Jim Meyering  <meyering@lucent.com>
46761
46762         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
46763
46764 2000-03-01  Jim Meyering  <meyering@lucent.com>
46765
46766         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
46767         * lib/unicodeio.c: Likewise.
46768
46769 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
46770
46771         * lib/config.charset: New file.
46772         * lib/localcharset.c: New file.
46773         * lib/unicodeio.h, lib/unicodeio.c: New files.
46774         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
46775         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
46776         (noinst_HEADERS): Add unicodeio.h.
46777         (all-local, install-exec-local, charset.alias): New targets.
46778
46779 2000-02-28  Paul Eggert  <eggert@twinsun.com>
46780
46781         * lib/quotearg.c (ALERT_CHAR): New macro.
46782         (quotearg_buffer_restyled): Use it.
46783
46784 2000-02-27  Jim Meyering  <meyering@lucent.com>
46785
46786         * m4/check-decl.m4: Add getenv to the list.
46787
46788 2000-02-27  Jim Meyering  <meyering@lucent.com>
46789
46790         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
46791         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
46792
46793         * lib/backupfile.c: Guard inclusion of stdlib.h with
46794         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
46795         Declare malloc if needed.
46796
46797         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
46798         `#ifndef HAVE_DECL..'
46799         now that autoconf always defines the HAVE_DECL_ symbols.
46800         * lib/human.c: Likewise.
46801         * lib/same.c: Likewise.
46802         * lib/strtoumax.c: Likewise.
46803
46804         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
46805         declaration check was not run.
46806         * lib/hash.c: Likewise.
46807         * lib/human.c: Likewise.
46808         * lib/same.c: Likewise.
46809         * lib/strtoumax.c: Likewise.
46810
46811         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
46812         `.', then first look up the entire `.'-containing string as a login
46813         name.
46814
46815 2000-02-23  Jim Meyering  <meyering@lucent.com>
46816
46817         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
46818         in place of my hack.
46819
46820 2000-02-18  Paul Eggert  <eggert@twinsun.com>
46821
46822         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
46823         (textint): New typedef.
46824         (parser_control): Member year changed from int to textint.
46825         All uses changed.
46826         (YYSTYPE): Removed; replaced by %union with int and textint members.
46827         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
46828         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
46829         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
46830         (tSNUMBER, tUNUMBER): Now of type <textintval>.
46831         (date, number, to_year): Use width of number in digits, not its value,
46832         to determine whether it's a 2-digit year, or a 2-digit time.
46833         (yylex): Store number of digits of numeric tokens.
46834         Reported by John Kendall.
46835
46836         (parser_control): Changed from struct parser_control to typedef (for
46837         consistency).  All uses changed.
46838
46839         (tID): Removed; not used.
46840         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
46841
46842 2000-02-14  Paul Eggert  <eggert@twinsun.com>
46843
46844         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
46845         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
46846
46847 2000-02-12  Jim Meyering  <meyering@lucent.com>
46848
46849         * lib/userspec.c (ISDIGIT): Define it.
46850         (isdigit): Remove definition.
46851         (is_number): Use ISDIGIT, not isdigit.
46852         <libintl.h>: Include.
46853         (_ and N_): Define.
46854         (parse_user_spec): Mark translatable strings.
46855
46856 2000-02-10  Jim Meyering  <meyering@lucent.com>
46857
46858         With these changes, nanosleep.[ch] are finally enough like the other
46859         lib/* replacement files to compile on a few more losing systems.
46860
46861         * lib/nanosleep.h: Don't include config.h.
46862         Remove prototype from declaration of nanosleep.
46863         (PARAMS): Remove now-unneeded definition.
46864         * lib/nanosleep.c: #undef nanosleep.
46865         (rpl_nanosleep): Rename from nanosleep.
46866
46867 2000-02-10  Jim Meyering  <meyering@lucent.com>
46868
46869         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
46870         gnu_nanosleep to rpl_nanosleep.
46871
46872 2000-02-09  Jim Meyering  <meyering@lucent.com>
46873
46874         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
46875         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
46876
46877 2000-02-08  Akim Demaille  <akim@epita.fr>
46878
46879         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
46880         `[' and `]' and remove uses of `changequote'.
46881         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
46882         (AC_SYS_LARGEFILE): Likewise.
46883         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
46884         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
46885         of changequote.
46886         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
46887         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
46888         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
46889         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
46890
46891 2000-02-05  Jim Meyering  <meyering@lucent.com>
46892
46893         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
46894         Remove explicit use of AC_HEADER_TIME.  It is required by
46895         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
46896         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
46897         in autoconf whereby the expansion of the latter ended up preceding
46898         the expansion of its prerequisite, AC_HEADER_TIME.
46899         Reported by Volker Borchert.
46900
46901 2000-02-03  Jim Meyering  <meyering@lucent.com>
46902
46903         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
46904
46905 2000-02-03  Jim Meyering  <meyering@lucent.com>
46906
46907         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
46908         rather than with `#if HAVE_UTMPNAME'.
46909
46910 2000-02-02  Jim Meyering  <meyering@lucent.com>
46911
46912         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
46913         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
46914         Reported by Eli Zaretskii.
46915
46916 2000-02-01  Jim Meyering  <meyering@lucent.com>
46917
46918         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
46919
46920 2000-01-31  Jim Meyering  <meyering@lucent.com>
46921
46922         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
46923         functions.  Add the time.h and sys/time.h headers along with the
46924         AC_REQUIRE'ment of AC_HEADER_TIME.
46925
46926 2000-01-31  Jim Meyering  <meyering@lucent.com>
46927
46928         * lib/nanosleep.h (nanosleep): Guard declaration with
46929         `#if ! HAVE_DECL_NANOSLEEP'.
46930         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
46931         the declaration in that vendor's sys/timers.h.
46932         Reported by Christian Krackowizer.
46933
46934         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
46935         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
46936         (ISPRINT): Likewise.
46937         Reported by Tom Tromey.
46938
46939 2000-01-30  Jim Meyering  <meyering@lucent.com>
46940
46941         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
46942
46943         * m4/prereq.m4 (utmp_includes): Define.
46944         Check for ut_user and ut_name members in both struct utmpx
46945         and struct utmp.
46946
46947 2000-01-30  Jim Meyering  <meyering@lucent.com>
46948
46949         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
46950         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
46951         header files where only utmpx.ut_user is declared.
46952
46953         * lib/readutmp.h (UT_USER): Define.
46954
46955 2000-01-29  Jim Meyering  <meyering@lucent.com>
46956
46957         * m4/lib-check.m4: New file containing library-related checks from
46958         fileutils and sh-utils (textutils had none).
46959
46960 2000-01-28  Jim Meyering  <meyering@lucent.com>
46961
46962         * m4/perl.m4: Change format of warning message to look more like that
46963         from the missing script.  Suggestion from François Pinard.
46964
46965 2000-01-25  Jim Meyering  <meyering@lucent.com>
46966
46967         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
46968         well as time.h in the compile check.
46969         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
46970         Fix typo in cross-compiling case: s/yes/no/.
46971
46972 2000-01-23  Jim Meyering  <meyering@lucent.com>
46973
46974         * m4/jm-macros.m4: Move df-related tests here from
46975         fileutils/configure.in
46976
46977         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
46978         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
46979
46980         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
46981         s/space/ac_fsusage_space/.
46982         (jm_FILE_SYSTEM_USAGE): Take two parameters.
46983
46984         * m4/ftruncate.m4: New file (derived from part of
46985         fileutils/configure.in).
46986         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
46987         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
46988
46989         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
46990         AC_SUBST these here, rather than just in sh-util/configure.in, so
46991         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
46992         all the same.
46993         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
46994         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
46995         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
46996         (AC_SUBST(POW_LIBM)): Likewise.
46997         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
46998
46999 2000-01-23  Jim Meyering  <meyering@lucent.com>
47000
47001         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
47002         obstack.c.
47003
47004 2000-01-22  Jim Meyering  <meyering@lucent.com>
47005
47006         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
47007
47008         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
47009
47010         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
47011         configure.in
47012         (AC_CHECK_HEADERS): Likewise for sh-utils.
47013         (AC_CHECK_HEADERS): Likewise for textutils.
47014         Merge the three lists of headers.
47015
47016         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
47017         from fileutils' configure.in.
47018
47019         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
47020         code. Moved tests into their own function (_jm_DECL_HEADERS) in
47021         check-decl.m4.
47022
47023         * m4/check-decl.m4: Use #if rather than #ifdef.
47024         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
47025         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
47026         (_jm_DECL_HEADERS): Define new function.
47027         (jm_CHECK_DECLARATIONS): Require it.
47028
47029 2000-01-22  Jim Meyering  <meyering@lucent.com>
47030
47031         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
47032         [! HAVE_DECL_STRTOULL]: Declare strtoull.
47033         Required for some AIX systems.  Reported by Christian Krackowizer.
47034         [TESTING] (main): New function.
47035
47036         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
47037         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
47038         letters.
47039
47040         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
47041         iswprint.
47042
47043         * lib/strverscmp.c (ISDIGIT): Define.
47044         (strverscmp): Use ISDIGIT, not isdigit.
47045
47046 2000-01-19  Jim Meyering  <meyering@lucent.com>
47047
47048         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
47049         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
47050         defines `struct timespec' in <sys/time.h>
47051
47052         * m4/c-bs-a.m4: Remove uses of changequote altogether.
47053         Thanks to Akim for explaining.
47054
47055 2000-01-17  Paul Eggert  <eggert@twinsun.com>
47056
47057         * lib/nanosleep.c (nanosleep):
47058         Don't use SA_INTERRUPT to decide whether to call sigaction, as
47059         POSIX.1 doesn't require SA_INTERRUPT and some systems
47060         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
47061         it's been part of POSIX.1 since day 1 (in 1988).
47062
47063 2000-01-17  Jim Meyering  <meyering@lucent.com>
47064
47065         * lib/interlock: Remove unused file.  Reported by François Pinard.
47066
47067 2000-01-16  Paul Eggert  <eggert@twinsun.com>
47068
47069         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
47070         alert, backslash, formfeed, and vertical tab unnecessarily in
47071         shell quoting style.
47072
47073 2000-01-16  Jim Meyering  <meyering@lucent.com>
47074
47075         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
47076         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
47077         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
47078         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
47079
47080 2000-01-16  Jim Meyering  <meyering@lucent.com>
47081
47082         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
47083         because the latter didn't work.
47084
47085 2000-01-15  Jim Meyering  <meyering@lucent.com>
47086
47087         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
47088         (AC_REPLACE_FUNCS): Add memcpy and memset.
47089         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
47090         Add strpbrk.
47091         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
47092
47093 2000-01-12  Jim Meyering  <meyering@lucent.com>
47094
47095         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
47096         (jm_PREREQ): Use it.
47097         (jm_PREREQ_READUTMP): New macro.
47098         (jm_PREREQ): Use it.
47099
47100 2000-01-11  Paul Eggert  <eggert@twinsun.com>
47101
47102         Quote multibyte characters correctly.
47103         * m4/c-bs-a.m4: New file.
47104         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
47105         (jm_PREREQ): Use it.
47106
47107 2000-01-11  Paul Eggert  <eggert@twinsun.com>
47108
47109         * m4/uintmax_t.m4: Port to autoconf 2.13.
47110
47111 2000-01-08  Jim Meyering  <meyering@ascend.com>
47112
47113         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
47114         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
47115
47116 2000-01-04  Jim Meyering  <meyering@ascend.com>
47117
47118         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
47119         jm_STRUCT_DIRENT_D_TYPE.
47120         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
47121         jm_STRUCT_DIRENT_D_INO.
47122         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
47123         jm_STRUCT_UTIMBUF.
47124         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
47125         renamings.
47126         * m4/utime.m4: Likewise.
47127
47128         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
47129         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
47130
47131 2000-01-03  Paul Eggert  <eggert@twinsun.com>
47132
47133         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
47134         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
47135
47136 2000-01-02  Jim Meyering  <meyering@ascend.com>
47137
47138         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
47139         remember if this is necessary.
47140
47141 1999-12-26  Jim Meyering  <meyering@ascend.com>
47142
47143         * m4/jm-macros.m4: Use it here.
47144         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
47145
47146 1999-12-23  Jim Meyering  <meyering@ascend.com>
47147
47148         * m4/jm-macros.m4: Check for clock_gettime (moved from
47149         fileutils/configure.in)
47150         Check for gettimeofday.
47151
47152 1999-12-20  Jim Meyering  <meyering@ascend.com>
47153
47154         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
47155         autoconf-2.14a-1999-12-20.
47156
47157 1999-12-19  Jim Meyering  <meyering@ascend.com>
47158
47159         * m4/lstat-slash.m4: New file.
47160         * m4/jm-macros.m4: Use the new macro:
47161         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
47162
47163 1999-12-07  Jim Meyering  <meyering@ascend.com>
47164
47165         * m4/perl.m4: Require that File::Compare be available, too.
47166         Too many systems seem to lack it.
47167
47168         * m4/strftime.m4: Add checks for most of the cpp macros tested in
47169         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
47170
47171 1999-11-18  Paul Eggert  <eggert@twinsun.com>
47172
47173         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
47174         problem with the QNX 4.25 shell, which doesn't propagate exit
47175         status of failed commands inside shell assignments.
47176
47177 1999-11-17  Jim Meyering  <meyering@ascend.com>
47178
47179         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
47180
47181 1999-11-07  Jim Meyering  <meyering@ascend.com>
47182
47183         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
47184
47185 1999-11-06  Jim Meyering  <meyering@ascend.com>
47186
47187         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
47188         * m4/jm-macros.m4 (jm_MACROS): Use it here.
47189
47190 1999-11-05  Jim Meyering  <meyering@ascend.com>
47191
47192         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
47193         configure.in of textutils, fileutils, and sh-utils into this one
47194         (shared between those packages) file.
47195         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
47196         AC_STRUCT_ST_BLKSIZE.
47197
47198 1999-11-03  Jim Meyering  <meyering@ascend.com>
47199
47200         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
47201         of AC_CHECK_TYPE checks includes unistd.h.
47202         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
47203         Suggestion from Akim Demaille.
47204
47205 1999-10-30  Jim Meyering  <meyering@ascend.com>
47206
47207         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
47208         m4-quoted string.
47209         * m4/ls-mntd-fs.m4: Likewise.
47210         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
47211         * m4/jm-winsz1.m4: Likewise.
47212
47213         * m4/const.m4: Remove file, since the fix made it into the experimental
47214         version of autoconf.
47215         * m4/mktime.m4: Likewise.
47216
47217         * m4/check-type.m4: Remove file, now that the latest version of
47218         AC_CHECK_TYPE takes a third arg to specify additional #includes.
47219
47220         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
47221         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
47222         AC_CHECK_TYPE.
47223
47224 1999-10-04  Jim Meyering  <meyering@ascend.com>
47225
47226         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
47227
47228 1999-09-22  Paul Eggert  <eggert@twinsun.com>
47229
47230         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
47231         2.95.1 bug with HP-UX 10.20.
47232
47233 1999-09-17  Jim Meyering  <meyering@ascend.com>
47234
47235         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
47236         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
47237         due to missing strdup (against sh-utils-2.0).
47238
47239 1999-08-29  Jim Meyering  <meyering@ascend.com>
47240
47241         * m4/jm-macros.m4: Require jm_BISON.
47242         * m4/bison.m4: New file.
47243
47244 1999-08-17  Paul Eggert  <eggert@twinsun.com>
47245
47246         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
47247         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
47248
47249 1999-08-05  Jim Meyering  <meyering@ascend.com>
47250
47251         * m4/getline.m4: Rename test file from conftestdata to conftest.data
47252         to avoid conflicts with `conftest' on 8+3 filesystems.
47253         Suggestion from Eli Zaretskii.
47254
47255 1999-08-04  Jim Meyering  <meyering@ascend.com>
47256
47257         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
47258         fileutils and sh-utils (textutils's getline test was inadequate).
47259         (AM_FUNC_GETLINE): Run this test.
47260         (AC_CHECK_FUNCS): Check for getdelim.
47261         Reported by Bob Proulx.
47262
47263 1999-08-02  Jim Meyering  <meyering@ascend.com>
47264
47265         * m4/jm-macros.m4: Add a comment.
47266
47267 1999-08-01  Paul Eggert  <eggert@twinsun.com>
47268
47269         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
47270         <inttypes.h> defines strtoumax as a macro (and not as a
47271         function).
47272
47273 1999-08-01  Paul Eggert  <eggert@twinsun.com>
47274
47275         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
47276         that we can shift, multiply and divide unsigned long long
47277         values; Ultrix cc can't do it.
47278
47279 1999-08-01  Paul Eggert  <eggert@twinsun.com>
47280
47281         * m4/mktime.m4: New file, which is a preview of what should appear
47282         in the next public autoconf release.
47283
47284 1999-08-01  Paul Eggert  <eggert@twinsun.com>
47285
47286         * m4/lfs.m4: Remove this file.
47287         * m4/largefile.m4: New file.  It contains the old contents of
47288         lfs.m4, except that all names with prefix AC_LFS have been
47289         changed to use the prefix AC_SYS_LARGEFILE instead, to be
47290         compatible with future autoconf versions.  Also, some minor m4
47291         quoting problems have been fixed.
47292
47293 1999-08-01  Paul Eggert  <eggert@twinsun.com>
47294
47295         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
47296         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
47297         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
47298         and simplify the shell code.
47299
47300 1999-08-01  Jim Meyering  <meyering@ascend.com>
47301
47302         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
47303         m4.
47304
47305 1999-07-20  Jim Meyering  <meyering@ascend.com>
47306
47307         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
47308
47309 1999-07-15  Jim Meyering  <meyering@ascend.com>
47310
47311         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
47312
47313 1999-05-22  Jim Meyering  <meyering@ascend.com>
47314
47315         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
47316
47317 1999-05-20  Jim Meyering  <meyering@ascend.com>
47318
47319         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
47320         Add a colon after each `then' in case $4 is empty.
47321
47322 1999-05-16  Jim Meyering  <meyering@ascend.com>
47323
47324         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
47325
47326 1999-05-10  Jim Meyering  <meyering@ascend.com>
47327
47328         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
47329
47330         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
47331         AC_FUNC_MKTIME.
47332
47333 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
47334
47335         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
47336
47337 1999-05-04  Paul Eggert  <eggert@twinsun.com>
47338
47339         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
47340         not CPPFLAGS, so that linking works correctly in IRIX.
47341
47342 1999-04-30  Paul Eggert  <eggert@twinsun.com>
47343
47344         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
47345
47346 1999-04-20  Paul Eggert  <eggert@twinsun.com>
47347
47348         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
47349         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
47350         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
47351         jm_AC_TYPE_UNSIGNED_LONG_LONG.
47352         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
47353
47354         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
47355
47356 1999-04-20  Jim Meyering  <meyering@ascend.com>
47357
47358         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
47359         AC_REPLACE xstroull if necessary.  From Paul Eggert.
47360         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
47361
47362 1999-04-18  Jim Meyering  <meyering@ascend.com>
47363
47364         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
47365         * m4/jm-macros.m4: Use it.
47366
47367 1999-04-06  Jim Meyering  <meyering@ascend.com>
47368
47369         * m4/strftime.m4: Remove test for %f.
47370
47371 1999-03-29  Jim Meyering  <meyering@ascend.com>
47372
47373         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
47374         superset of the AC_TYPE_* checks in the textutils, fileutils,
47375         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
47376         AC_TYPE_PID_T.
47377
47378 1999-03-28  Jim Meyering  <meyering@ascend.com>
47379
47380         * m4/jm-macros.m4: Define GNU_PACKAGE here.
47381         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
47382         replaced e.g., in the *.sh files of the sh-utils.
47383
47384 1999-03-20  Jim Meyering  <meyering@ascend.com>
47385
47386         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
47387         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
47388         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
47389
47390 1999-03-19  Jim Meyering  <meyering@ascend.com>
47391
47392         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
47393
47394 1999-03-12  Jim Meyering  <meyering@ascend.com>
47395
47396         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
47397
47398 1999-03-07  Jim Meyering  <meyering@ascend.com>
47399
47400         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
47401         declared.
47402
47403 1999-02-17  Jim Meyering  <meyering@ascend.com>
47404
47405         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
47406         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
47407
47408 1999-02-07  Jim Meyering  <meyering@ascend.com>
47409
47410         * m4/group-member.m4: New file -- extracted from sh-utils'
47411         configure.in.
47412
47413         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
47414         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
47415
47416 1999-02-06  Jim Meyering  <meyering@ascend.com>
47417
47418         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
47419         * m4/fnmatch.m4: Likewise.
47420         * m4/getgroups.m4: Likewise.
47421         * m4/lstat.m4: Likewise.
47422         * m4/malloc.m4: Likewise.
47423         * m4/putenv.m4: Likewise.
47424         * m4/realloc.m4: Likewise.
47425         * m4/regex.m4: Likewise.
47426         * m4/stat.m4: Likewise.
47427         * m4/strftime.m4: Likewise.
47428         Suggestion from Alain Magloire.
47429
47430         * m4/chown.m4: Use `.$ac_objext', not `.o'.
47431         * m4/fnmatch.m4: Likewise.
47432         * m4/getgroups.m4: Likewise.
47433         * m4/getline.m4: Likewise.
47434         * m4/lstat.m4: Likewise.
47435         * m4/malloc.m4: Likewise.
47436         * m4/memcmp.m4: Likewise.
47437         * m4/putenv.m4: Likewise.
47438         * m4/realloc.m4: Likewise.
47439         * m4/regex.m4: Likewise.
47440         * m4/stat.m4: Likewise.
47441         * m4/strftime.m4: Likewise.
47442         Suggestion from Alain Magloire.
47443
47444         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
47445         an argument.
47446
47447         * m4/regex.m4: Add a run-time Test for proper operation of
47448         re_compile_pattern.
47449
47450 1999-01-31  Jim Meyering  <meyering@ascend.com>
47451
47452         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
47453
47454 1999-01-30  Jim Meyering  <meyering@ascend.com>
47455
47456         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
47457
47458         * m4/jm-mktime.m4: Make this a wrapper around the official
47459         AM_FUNC_MKTIME rather than my private copy, now that the official one
47460         is up to date.
47461         * m4/mktime.m4: Remove file.
47462
47463         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
47464         * m4/uptime.m4: Likewise.
47465         * m4/uintmax_t.m4: Likewise.
47466
47467 1999-01-28  Jim Meyering  <meyering@ascend.com>
47468
47469         * m4/jm-macros.m4: Use jm_AFS.
47470         * m4/afs.m4: New file (from fileutils' configure.in).
47471
47472         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
47473         * m4/chown.m4: Likewise.
47474         * m4/d-ino.m4: Likewise.
47475         * m4/d-type.m4: Likewise.
47476         * m4/fnmatch.m4: Likewise.
47477         * m4/getgroups.m4: Likewise.
47478         * m4/gettext.m4: Likewise.
47479         * m4/jm-mktime.m4: Likewise.
47480         * m4/jm-winsz2.m4: Likewise.
47481         * m4/lcmessage.m4: Likewise.
47482         * m4/ls-mntd-fs.m4: Likewise.
47483         * m4/malloc.m4: Likewise.
47484         * m4/memcmp.m4: Likewise.
47485         * m4/putenv.m4: Likewise.
47486         * m4/realloc.m4: Likewise.
47487         * m4/st_mtim.m4: Likewise.
47488         * m4/strftime.m4: Likewise.
47489
47490 1999-01-16  Jim Meyering  <meyering@ascend.com>
47491
47492         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
47493         (ARGMATCH_DIE_DECL): Define.
47494
47495 1999-01-12  Jim Meyering  <meyering@ascend.com>
47496
47497         * m4/Makefile.am.in: Rewrite to avoid using fmt.
47498         Reported by Lars Hecking.
47499
47500 1999-01-10  Jim Meyering  <meyering@ascend.com>
47501
47502         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
47503         gross kludge.
47504         * m4/inttypes_h.m4: Likewise.
47505         * m4/lstat.m4: Likewise.
47506         * m4/malloc.m4: Likewise.
47507         * m4/readdir.m4: Likewise.
47508         * m4/realloc.m4: Likewise.
47509         * m4/st_dm_mode.m4: Likewise.
47510         * m4/stat.m4: Likewise.
47511         * m4/utimbuf.m4: Likewise.
47512         * m4/utimes.m4: Likewise.
47513
47514         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
47515         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
47516         comments in config.h.in are meaningful.
47517
47518         * m4/jm-macros.m4: Require autoconf-2.13 here.
47519
47520         * m4/regex.m4: By default, don't use the included regex.c on systems
47521         with glibc 2.  Suggestion from Uli Drepper.
47522
47523 1999-01-02  Jim Meyering  <meyering@ascend.com>
47524
47525         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
47526
47527 1998-12-18  Jim Meyering  <meyering@ascend.com>
47528
47529         * m4/Makefile.am.in (Makefile.am): Simplify rule.
47530         Based on a suggestion from Lars Hecking.
47531
47532 1998-11-16  Paul Eggert  <eggert@twinsun.com>
47533
47534         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
47535
47536 1998-11-16  Jim Meyering  <meyering@ascend.com>
47537
47538         * m4/lfs.m4: Double-quote the `uname...` expression.
47539
47540 1998-11-14  Jim Meyering  <meyering@ascend.com>
47541
47542         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
47543         * m4/stat.m4: Likewise.
47544
47545 1998-11-03  Jim Meyering  <meyering@ascend.com>
47546
47547         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
47548         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
47549
47550 1998-10-18  Jim Meyering  <meyering@ascend.com>
47551
47552         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
47553
47554 1998-10-17  Jim Meyering  <meyering@ascend.com>
47555
47556         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
47557         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
47558         calls for those previously hard-coded headers.  Instead, take a new
47559         parameter.
47560         (jm_CHECK_DECLARATIONS): Reflect interface change.
47561         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
47562         (jm_CHECK_DECL_LOCALTIME_R): New macro.
47563
47564         * m4/mktime.m4: Test for spring-forward gap before long-running test.
47565
47566 1998-10-14  Jim Meyering  <meyering@ascend.com>
47567
47568         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
47569         instead of "TZ=America/Vancouver".  From Paul Eggert.
47570
47571 1998-10-11  Jim Meyering  <meyering@ascend.com>
47572
47573         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
47574         This adds a test for a recently added compatibility fix for mktime.c.
47575         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
47576
47577 1998-09-27  Jim Meyering  <meyering@ascend.com>
47578
47579         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
47580
47581         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
47582         ../configure.in, including a change from Gordon Matzigkeit to allow
47583         cross-compiling for the Hurd.
47584
47585         * m4/glibc.m4: New file/macro to test for the GNU C Library
47586         versions 1 and 2.  From Gordon Matzigkeit.
47587         Indent.
47588
47589 1998-09-21  Jim Meyering  <meyering@ascend.com>
47590
47591         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
47592
47593 1998-08-18  Paul Eggert  <eggert@twinsun.com>
47594
47595         Port nanosecond-resolution times to UnixWare 2.1.2 and
47596         pedantic Solaris 2.6.
47597
47598         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
47599         AC_STRUCT_ST_MTIM.
47600         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
47601         Generate name of ns member, instead of just 1 or undef.
47602         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
47603
47604 1998-08-15  Jim Meyering  <meyering@ascend.com>
47605
47606         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
47607         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
47608         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
47609         instead of jm_TYPE_SSIZE_T.
47610
47611 1998-08-12  Jim Meyering  <meyering@ascend.com>
47612
47613         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
47614
47615 1998-08-02  Jim Meyering  <meyering@ascend.com>
47616
47617         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
47618         in acconfig.h manually.
47619
47620 1998-07-31  Paul Eggert  <eggert@twinsun.com>
47621
47622         * m4/st_mtim.m4: New file.
47623
47624 1998-07-28  Jim Meyering  <meyering@ascend.com>
47625
47626         * m4/utimes.m4: Undef stat.
47627
47628 1998-07-25  Jim Meyering  <meyering@ascend.com>
47629
47630         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
47631         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
47632
47633 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
47634
47635         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
47636         uid and gid actually remain unchanged.
47637
47638 1998-07-07  Jim Meyering  <meyering@ascend.com>
47639
47640         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
47641
47642 1998-07-04  Jim Meyering  <meyering@ascend.com>
47643
47644         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
47645         to prove that this macro can be used in packages without regex.c.
47646
47647 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
47648
47649         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
47650         is to be used.
47651
47652 1998-07-03  Jim Meyering  <meyering@ascend.com>
47653
47654         * m4/gettext.m4: Add -lintl if it's found to be necessary.
47655
47656         * m4/gettext.m4: New file -- from gettext-0.10.35.
47657         * m4/lcmessage.m4: Likewise.
47658         * m4/progtest.m4: Likewise.
47659
47660         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
47661         * m4/jm-macros.m4: Require the new macro.
47662
47663 1998-06-29  Jim Meyering  <meyering@ascend.com>
47664
47665         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
47666         for the definition of NGROUPS (used in a system header included
47667         by sys/mount.h).
47668
47669 1998-06-28  Jim Meyering  <meyering@ascend.com>
47670
47671         * m4/ls-mntd-fs.m4: New file.
47672         * m4/fstypename.m4: New file.
47673
47674         * m4/jm-macros.m4: Require the new macro.
47675         * m4/jm-glibc-io.m4: New file.
47676
47677 1998-05-19  Jim Meyering  <meyering@ascend.com>
47678
47679         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
47680         * m4/lchown.m4: New file.
47681
47682         * m4/Makefile.am.in: New file.
47683         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
47684
47685 1998-05-14  Jim Meyering  <meyering@ascend.com>
47686
47687         * m4/Makefile.am (EXTRA_DIST): Add them.
47688         * m4/jm-macros.m4: New file.
47689         * m4/utimbuf.m4: New file.
47690
47691 1998-05-12  Jim Meyering  <meyering@ascend.com>
47692
47693         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
47694
47695 1998-05-11  Jim Meyering  <meyering@ascend.com>
47696
47697         * m4/isc-posix.m4: New file.
47698
47699 1998-05-10  Jim Meyering  <meyering@ascend.com>
47700
47701         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
47702
47703 1998-05-09  Jim Meyering  <meyering@ascend.com>
47704
47705         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
47706         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
47707         with automake.
47708
47709         * m4/ssize_t.m4: New file.
47710         * m4/mktime.m4: Remove file -- the new automake has this now.
47711
47712 1998-04-26  Jim Meyering  <meyering@ascend.com>
47713
47714         * m4/assert.m4: New file.
47715         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
47716
47717 1998-04-05  Jim Meyering  <meyering@ascend.com>
47718
47719         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
47720         (jm_PREREQ): Use it here.
47721
47722 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
47723
47724         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
47725         in acconfig.h.
47726
47727 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
47728
47729         * m4/prereq.m4: New file.
47730         * m4/error.m4: New file.
47731         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
47732
47733 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
47734
47735         * m4/getline.m4: Don't set am_cv_func_working_getline before the
47736         cache-check for the same variable -- that defeated the purpose of
47737         the test; the test program was never run.  This was a problem only
47738         on systems with losing getline functions -- HP-UX 10.20 is one.
47739         Reported by Bjorn Helgaas.
47740
47741 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
47742
47743         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
47744
47745 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
47746
47747         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
47748
47749         * m4/const.m4: New file.  Use an initializer in this declaration
47750         typedef int charset[2]; const charset x;
47751         Reported by Bob Glickstein.
47752
47753 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
47754
47755         * m4/chown.m4: Fix reversed types on -1 args to chown.
47756         From Kaveh Ghazi.
47757
47758 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
47759
47760         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
47761         Add lseek and memchr.
47762
47763         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
47764         T.E.Dickey <dickey@clark.net> said that some older preprocessors
47765         have a 20-character limit on names.
47766
47767 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
47768
47769         * m4/inttypes_h.m4: New file.
47770         * m4/uintmax_t.m4: New file.
47771         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
47772
47773
47774         -----
47775
47776         Local Variables:
47777         coding: utf-8
47778         End:
47779
47780         Copyright (C) 1997-2009 Free Software Foundation, Inc.
47781
47782         Copying and distribution of this file, with or without
47783         modification, are permitted provided the copyright notice
47784         and this notice are preserved.